mirror of
https://github.com/snowykami/neo-blog.git
synced 2025-09-26 11:06:23 +00:00
- Introduced new CSS files for rose, violet, and yellow themes with custom color variables. - Implemented dark mode styles for each theme. - Created a color data structure to manage theme colors in the console settings. feat: implement image cropper component - Added an image cropper component for user profile picture editing. - Integrated the image cropper into the user profile page. feat: enhance console sidebar with user permissions - Defined sidebar items with permission checks for admin and editor roles. - Updated user center navigation to reflect user permissions. feat: add user profile and security settings - Developed user profile page with avatar upload and editing functionality. - Implemented user security settings for password and email verification. feat: create reusable dialog and OTP input components - Built a dialog component for modal interactions. - Developed an OTP input component for email verification. fix: improve file handling utilities - Added utility functions for file URI generation. - Implemented permission checks for user roles in the common utilities.
53 lines
1.6 KiB
Go
53 lines
1.6 KiB
Go
package filedriver
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"io"
|
|
"os"
|
|
|
|
"github.com/cloudwego/hertz/pkg/app"
|
|
"github.com/snowykami/neo-blog/pkg/constant"
|
|
"github.com/snowykami/neo-blog/pkg/utils"
|
|
)
|
|
|
|
type FileDriver interface {
|
|
Save(ctx *app.RequestContext, path string, r io.Reader) error
|
|
Open(ctx *app.RequestContext, path string) (io.ReadCloser, error)
|
|
Delete(ctx *app.RequestContext, path string) error
|
|
Stat(ctx *app.RequestContext, path string) (os.FileInfo, error)
|
|
Get(ctx *app.RequestContext, path string)
|
|
ListDir(ctx *app.RequestContext, path string) ([]os.FileInfo, error)
|
|
}
|
|
|
|
type DriverConfig struct {
|
|
Type string
|
|
BasePath string
|
|
WebDavUrl string
|
|
WebDavUser string
|
|
WebDavPassword string
|
|
WebDavPolicy string
|
|
}
|
|
|
|
func GetWebdavDriverConfig() *DriverConfig {
|
|
return &DriverConfig{
|
|
Type: utils.Env.Get(constant.EnvKeyFileDriverType, constant.FileDriverTypeLocal),
|
|
BasePath: utils.Env.Get(constant.EnvKeyFileBasepath, constant.DefaultFileBasePath),
|
|
WebDavUrl: utils.Env.Get(constant.EnvKeyFileWebdavUrl),
|
|
WebDavUser: utils.Env.Get(constant.EnvKeyFileWebdavUser),
|
|
WebDavPassword: utils.Env.Get(constant.EnvKeyFileWebdavPassword),
|
|
WebDavPolicy: utils.Env.Get(constant.EnvKeyFileWebdavPolicy),
|
|
}
|
|
}
|
|
|
|
func GetFileDriver(driverConfig *DriverConfig) (FileDriver, error) {
|
|
switch driverConfig.Type {
|
|
case constant.FileDriverTypeLocal:
|
|
return NewLocalDriver(driverConfig), nil
|
|
case constant.FileDriverTypeWebdav:
|
|
return NewWebDAVClientDriver(driverConfig), nil
|
|
default:
|
|
return nil, fmt.Errorf("unsupported file driver type: %s", driverConfig.Type)
|
|
}
|
|
}
|