mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-06-16 05:55:33 +00:00
fix: cloud storage (#2096)
This commit is contained in:
parent
958a483385
commit
c26cf4dbec
@ -1,6 +1,8 @@
|
|||||||
package v1
|
package v1
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
|
"net/http"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
@ -15,49 +17,47 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func GetRecoverStorage(ctx echo.Context) error {
|
func GetRecoverStorage(ctx echo.Context) error {
|
||||||
ctx.Request().Header.Add("Content-Type", "text/html; charset=utf-8")
|
|
||||||
t := ctx.Param("type")
|
t := ctx.Param("type")
|
||||||
currentTime := time.Now().UTC()
|
currentTime := time.Now().UTC()
|
||||||
currentDate := time.Now().UTC().Format("2006-01-02")
|
currentDate := time.Now().UTC().Format("2006-01-02")
|
||||||
notify := make(map[string]interface{})
|
notify := make(map[string]interface{})
|
||||||
|
event := "casaos:file:recover"
|
||||||
if t == "GoogleDrive" {
|
if t == "GoogleDrive" {
|
||||||
google_drive := google_drive.GetConfig()
|
google_drive := google_drive.GetConfig()
|
||||||
google_drive.Code = ctx.QueryParam("code")
|
google_drive.Code = ctx.QueryParam("code")
|
||||||
if len(google_drive.Code) == 0 {
|
if len(google_drive.Code) == 0 {
|
||||||
ctx.String(200, `<p>Code cannot be empty</p><script>window.close()</script>`)
|
|
||||||
notify["status"] = "fail"
|
notify["status"] = "fail"
|
||||||
notify["message"] = "Code cannot be empty"
|
notify["message"] = "Code cannot be empty"
|
||||||
logger.Error("Then code is empty: ", zap.String("code", google_drive.Code), zap.Any("name", "google_drive"))
|
logger.Error("Then code is empty: ", zap.String("code", google_drive.Code), zap.Any("name", "google_drive"))
|
||||||
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
||||||
|
return ctx.HTML(http.StatusOK, `<p>Code cannot be empty</p><script>window.close()</script>`)
|
||||||
}
|
}
|
||||||
|
err := google_drive.Init(context.Background())
|
||||||
err := google_drive.Init(ctx.Request().Context())
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.String(200, `<p>Initialization failure:`+err.Error()+`</p><script>window.close()</script>`)
|
|
||||||
notify["status"] = "fail"
|
notify["status"] = "fail"
|
||||||
notify["message"] = "Initialization failure"
|
notify["message"] = "Initialization failure"
|
||||||
logger.Error("Then init error: ", zap.Error(err), zap.Any("name", "google_drive"))
|
logger.Error("Then init error: ", zap.Error(err), zap.Any("name", "google_drive"))
|
||||||
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
service.MyService.Notify().SendNotify(event, notify)
|
||||||
|
return ctx.HTML(http.StatusOK, `<p>Initialization failure:`+err.Error()+`</p><script>window.close()</script>`)
|
||||||
}
|
}
|
||||||
|
|
||||||
username, err := google_drive.GetUserInfo(ctx.Request().Context())
|
username, err := google_drive.GetUserInfo(context.Background())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.String(200, `<p>Failed to get user information:`+err.Error()+`</p><script>window.close()</script>`)
|
|
||||||
notify["status"] = "fail"
|
notify["status"] = "fail"
|
||||||
notify["message"] = "Failed to get user information"
|
notify["message"] = "Failed to get user information"
|
||||||
logger.Error("Then get user info error: ", zap.Error(err), zap.Any("name", "google_drive"))
|
logger.Error("Then get user info error: ", zap.Error(err), zap.Any("name", "google_drive"))
|
||||||
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
service.MyService.Notify().SendNotify(event, notify)
|
||||||
|
return ctx.HTML(http.StatusOK, `<p>Failed to get user information:`+err.Error()+`</p><script>window.close()</script>`)
|
||||||
}
|
}
|
||||||
dmap := make(map[string]string)
|
dmap := make(map[string]string)
|
||||||
dmap["username"] = username
|
dmap["username"] = username
|
||||||
configs, err := service.MyService.Storage().GetConfig()
|
configs, err := service.MyService.Storage().GetConfig()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.String(200, `<p>Failed to get rclone config:`+err.Error()+`</p><script>window.close()</script>`)
|
|
||||||
notify["status"] = "fail"
|
notify["status"] = "fail"
|
||||||
notify["message"] = "Failed to get rclone config"
|
notify["message"] = "Failed to get rclone config"
|
||||||
logger.Error("Then get config error: ", zap.Error(err), zap.Any("name", "google_drive"))
|
logger.Error("Then get config error: ", zap.Error(err), zap.Any("name", "google_drive"))
|
||||||
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
service.MyService.Notify().SendNotify(event, notify)
|
||||||
|
return ctx.HTML(http.StatusOK, `<p>Failed to get rclone config:`+err.Error()+`</p><script>window.close()</script>`)
|
||||||
}
|
}
|
||||||
for _, v := range configs.Remotes {
|
for _, v := range configs.Remotes {
|
||||||
cf, err := service.MyService.Storage().GetConfigByName(v)
|
cf, err := service.MyService.Storage().GetConfigByName(v)
|
||||||
@ -66,14 +66,14 @@ func GetRecoverStorage(ctx echo.Context) error {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if cf["type"] == "drive" && cf["username"] == dmap["username"] {
|
if cf["type"] == "drive" && cf["username"] == dmap["username"] {
|
||||||
ctx.String(200, `<p>The same configuration has been added</p><script>window.close()</script>`)
|
|
||||||
err := service.MyService.Storage().CheckAndMountByName(v)
|
err := service.MyService.Storage().CheckAndMountByName(v)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logger.Error("check and mount by name error: ", zap.Error(err), zap.Any("name", cf["username"]))
|
logger.Error("check and mount by name error: ", zap.Error(err), zap.Any("name", cf["username"]))
|
||||||
}
|
}
|
||||||
notify["status"] = "warn"
|
notify["status"] = "warn"
|
||||||
notify["message"] = "The same configuration has been added"
|
notify["message"] = "The same configuration has been added"
|
||||||
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
service.MyService.Notify().SendNotify(event, notify)
|
||||||
|
return ctx.HTML(http.StatusOK, `<p>The same configuration has been added</p><script>window.close()</script>`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(username) > 0 {
|
if len(username) > 0 {
|
||||||
@ -81,7 +81,6 @@ func GetRecoverStorage(ctx echo.Context) error {
|
|||||||
username = a[0]
|
username = a[0]
|
||||||
}
|
}
|
||||||
|
|
||||||
// username = fileutil.NameAccumulation(username, "/mnt")
|
|
||||||
username += "_google_drive_" + strconv.FormatInt(time.Now().Unix(), 10)
|
username += "_google_drive_" + strconv.FormatInt(time.Now().Unix(), 10)
|
||||||
|
|
||||||
dmap["client_id"] = google_drive.ClientID
|
dmap["client_id"] = google_drive.ClientID
|
||||||
@ -95,44 +94,45 @@ func GetRecoverStorage(ctx echo.Context) error {
|
|||||||
notify["status"] = "success"
|
notify["status"] = "success"
|
||||||
notify["message"] = "Success"
|
notify["message"] = "Success"
|
||||||
notify["driver"] = "GoogleDrive"
|
notify["driver"] = "GoogleDrive"
|
||||||
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
service.MyService.Notify().SendNotify(event, notify)
|
||||||
} else if t == "Dropbox" {
|
} else if t == "Dropbox" {
|
||||||
dropbox := dropbox.GetConfig()
|
dropbox := dropbox.GetConfig()
|
||||||
|
|
||||||
dropbox.Code = ctx.QueryParam("code")
|
dropbox.Code = ctx.QueryParam("code")
|
||||||
if len(dropbox.Code) == 0 {
|
if len(dropbox.Code) == 0 {
|
||||||
ctx.String(200, `<p>Code cannot be empty</p><script>window.close()</script>`)
|
|
||||||
notify["status"] = "fail"
|
notify["status"] = "fail"
|
||||||
notify["message"] = "Code cannot be empty"
|
notify["message"] = "Code cannot be empty"
|
||||||
logger.Error("Then code is empty error: ", zap.String("code", dropbox.Code), zap.Any("name", "dropbox"))
|
logger.Error("Then code is empty error: ", zap.String("code", dropbox.Code), zap.Any("name", "dropbox"))
|
||||||
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
service.MyService.Notify().SendNotify(event, notify)
|
||||||
|
return ctx.HTML(http.StatusOK, `<p>Code cannot be empty</p><script>window.close()</script>`)
|
||||||
}
|
}
|
||||||
|
err := dropbox.Init(context.Background())
|
||||||
err := dropbox.Init(ctx.Request().Context())
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.String(200, `<p>Initialization failure:`+err.Error()+`</p><script>window.close()</script>`)
|
|
||||||
notify["status"] = "fail"
|
notify["status"] = "fail"
|
||||||
notify["message"] = "Initialization failure"
|
notify["message"] = "Initialization failure"
|
||||||
logger.Error("Then init error: ", zap.Error(err), zap.Any("name", "dropbox"))
|
logger.Error("Then init error: ", zap.Error(err), zap.Any("name", "dropbox"))
|
||||||
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
service.MyService.Notify().SendNotify(event, notify)
|
||||||
|
return ctx.HTML(http.StatusOK, `<p>Initialization failure:`+err.Error()+`</p><script>window.close()</script>`)
|
||||||
}
|
}
|
||||||
username, err := dropbox.GetUserInfo(ctx.Request().Context())
|
username, err := dropbox.GetUserInfo(context.Background())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.String(200, `<p>Failed to get user information:`+err.Error()+`</p><script>window.close()</script>`)
|
|
||||||
notify["status"] = "fail"
|
notify["status"] = "fail"
|
||||||
notify["message"] = "Failed to get user information"
|
notify["message"] = "Failed to get user information"
|
||||||
logger.Error("Then get user information: ", zap.Error(err), zap.Any("name", "dropbox"))
|
logger.Error("Then get user information: ", zap.Error(err), zap.Any("name", "dropbox"))
|
||||||
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
service.MyService.Notify().SendNotify(event, notify)
|
||||||
|
return ctx.HTML(http.StatusOK, `<p>Failed to get user information:`+err.Error()+`</p><script>window.close()</script>`)
|
||||||
}
|
}
|
||||||
dmap := make(map[string]string)
|
dmap := make(map[string]string)
|
||||||
dmap["username"] = username
|
dmap["username"] = username
|
||||||
|
|
||||||
configs, err := service.MyService.Storage().GetConfig()
|
configs, err := service.MyService.Storage().GetConfig()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.String(200, `<p>Failed to get rclone config:`+err.Error()+`</p><script>window.close()</script>`)
|
|
||||||
notify["status"] = "fail"
|
notify["status"] = "fail"
|
||||||
notify["message"] = "Failed to get rclone config"
|
notify["message"] = "Failed to get rclone config"
|
||||||
logger.Error("Then get config error: ", zap.Error(err), zap.Any("name", "dropbox"))
|
logger.Error("Then get config error: ", zap.Error(err), zap.Any("name", "dropbox"))
|
||||||
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
service.MyService.Notify().SendNotify(event, notify)
|
||||||
|
return ctx.HTML(http.StatusOK, `<p>Failed to get rclone config:`+err.Error()+`</p><script>window.close()</script>`)
|
||||||
}
|
}
|
||||||
for _, v := range configs.Remotes {
|
for _, v := range configs.Remotes {
|
||||||
cf, err := service.MyService.Storage().GetConfigByName(v)
|
cf, err := service.MyService.Storage().GetConfigByName(v)
|
||||||
@ -141,15 +141,14 @@ func GetRecoverStorage(ctx echo.Context) error {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if cf["type"] == "dropbox" && cf["username"] == dmap["username"] {
|
if cf["type"] == "dropbox" && cf["username"] == dmap["username"] {
|
||||||
ctx.String(200, `<p>The same configuration has been added</p><script>window.close()</script>`)
|
if err := service.MyService.Storage().CheckAndMountByName(v); err != nil {
|
||||||
err := service.MyService.Storage().CheckAndMountByName(v)
|
|
||||||
if err != nil {
|
|
||||||
logger.Error("check and mount by name error: ", zap.Error(err), zap.Any("name", cf["username"]))
|
logger.Error("check and mount by name error: ", zap.Error(err), zap.Any("name", cf["username"]))
|
||||||
}
|
}
|
||||||
|
|
||||||
notify["status"] = "warn"
|
notify["status"] = "warn"
|
||||||
notify["message"] = "The same configuration has been added"
|
notify["message"] = "The same configuration has been added"
|
||||||
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
service.MyService.Notify().SendNotify(event, notify)
|
||||||
|
return ctx.HTML(http.StatusOK, `<p>The same configuration has been added</p><script>window.close()</script>`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(username) > 0 {
|
if len(username) > 0 {
|
||||||
@ -162,62 +161,49 @@ func GetRecoverStorage(ctx echo.Context) error {
|
|||||||
dmap["client_secret"] = dropbox.AppSecret
|
dmap["client_secret"] = dropbox.AppSecret
|
||||||
dmap["token"] = `{"access_token":"` + dropbox.AccessToken + `","token_type":"bearer","refresh_token":"` + dropbox.Addition.RefreshToken + `","expiry":"` + currentDate + `T` + currentTime.Add(time.Hour*3).Add(time.Minute*50).Format("15:04:05") + `.780385354Z"}`
|
dmap["token"] = `{"access_token":"` + dropbox.AccessToken + `","token_type":"bearer","refresh_token":"` + dropbox.Addition.RefreshToken + `","expiry":"` + currentDate + `T` + currentTime.Add(time.Hour*3).Add(time.Minute*50).Format("15:04:05") + `.780385354Z"}`
|
||||||
dmap["mount_point"] = "/mnt/" + username
|
dmap["mount_point"] = "/mnt/" + username
|
||||||
// data.SetValue(username, "type", "dropbox")
|
|
||||||
// data.SetValue(username, "client_id", add.AppKey)
|
|
||||||
// data.SetValue(username, "client_secret", add.AppSecret)
|
|
||||||
// data.SetValue(username, "mount_point", "/mnt/"+username)
|
|
||||||
|
|
||||||
// data.SetValue(username, "token", `{"access_token":"`+dropbox.AccessToken+`","token_type":"bearer","refresh_token":"`+dropbox.Addition.RefreshToken+`","expiry":"`+currentDate+`T`+currentTime.Add(time.Hour*3).Format("15:04:05")+`.780385354Z"}`)
|
|
||||||
// e = data.Save()
|
|
||||||
// if e != nil {
|
|
||||||
// return ctx.String(200, `<p>保存配置失败:`+e.Error()+`</p>`)
|
|
||||||
|
|
||||||
// return
|
|
||||||
// }
|
|
||||||
service.MyService.Storage().CreateConfig(dmap, username, "dropbox")
|
service.MyService.Storage().CreateConfig(dmap, username, "dropbox")
|
||||||
service.MyService.Storage().MountStorage("/mnt/"+username, username+":")
|
service.MyService.Storage().MountStorage("/mnt/"+username, username+":")
|
||||||
|
|
||||||
notify["status"] = "success"
|
notify["status"] = "success"
|
||||||
notify["message"] = "Success"
|
notify["message"] = "Success"
|
||||||
notify["driver"] = "Dropbox"
|
notify["driver"] = "Dropbox"
|
||||||
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
service.MyService.Notify().SendNotify(event, notify)
|
||||||
} else if t == "Onedrive" {
|
} else if t == "Onedrive" {
|
||||||
onedrive := onedrive.GetConfig()
|
onedrive := onedrive.GetConfig()
|
||||||
onedrive.Code = ctx.QueryParam("code")
|
onedrive.Code = ctx.QueryParam("code")
|
||||||
if len(onedrive.Code) == 0 {
|
if len(onedrive.Code) == 0 {
|
||||||
ctx.String(200, `<p>Code cannot be empty</p><script>window.close()</script>`)
|
|
||||||
notify["status"] = "fail"
|
notify["status"] = "fail"
|
||||||
notify["message"] = "Code cannot be empty"
|
notify["message"] = "Code cannot be empty"
|
||||||
logger.Error("Then code is empty error: ", zap.String("code", onedrive.Code), zap.Any("name", "onedrive"))
|
logger.Error("Then code is empty error: ", zap.String("code", onedrive.Code), zap.Any("name", "onedrive"))
|
||||||
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
service.MyService.Notify().SendNotify(event, notify)
|
||||||
|
return ctx.HTML(http.StatusOK, `<p>Code cannot be empty</p><script>window.close()</script>`)
|
||||||
}
|
}
|
||||||
|
err := onedrive.Init(context.Background())
|
||||||
err := onedrive.Init(ctx.Request().Context())
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.String(200, `<p>Initialization failure:`+err.Error()+`</p><script>window.close()</script>`)
|
|
||||||
notify["status"] = "fail"
|
notify["status"] = "fail"
|
||||||
notify["message"] = "Initialization failure"
|
notify["message"] = "Initialization failure"
|
||||||
logger.Error("Then init error: ", zap.Error(err), zap.Any("name", "onedrive"))
|
logger.Error("Then init error: ", zap.Error(err), zap.Any("name", "onedrive"))
|
||||||
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
service.MyService.Notify().SendNotify(event, notify)
|
||||||
|
return ctx.HTML(http.StatusOK, `<p>Initialization failure:`+err.Error()+`</p><script>window.close()</script>`)
|
||||||
}
|
}
|
||||||
username, driveId, driveType, err := onedrive.GetInfo(ctx.Request().Context())
|
username, driveId, driveType, err := onedrive.GetInfo(context.Background())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.String(200, `<p>Failed to get user information:`+err.Error()+`</p><script>window.close()</script>`)
|
|
||||||
notify["status"] = "fail"
|
notify["status"] = "fail"
|
||||||
notify["message"] = "Failed to get user information"
|
notify["message"] = "Failed to get user information"
|
||||||
logger.Error("Then get user information: ", zap.Error(err), zap.Any("name", "onedrive"))
|
logger.Error("Then get user information: ", zap.Error(err), zap.Any("name", "onedrive"))
|
||||||
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
service.MyService.Notify().SendNotify(event, notify)
|
||||||
|
return ctx.HTML(http.StatusOK, `<p>Failed to get user information:`+err.Error()+`</p><script>window.close()</script>`)
|
||||||
}
|
}
|
||||||
dmap := make(map[string]string)
|
dmap := make(map[string]string)
|
||||||
dmap["username"] = username
|
dmap["username"] = username
|
||||||
|
|
||||||
configs, err := service.MyService.Storage().GetConfig()
|
configs, err := service.MyService.Storage().GetConfig()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.String(200, `<p>Failed to get rclone config:`+err.Error()+`</p><script>window.close()</script>`)
|
|
||||||
notify["status"] = "fail"
|
notify["status"] = "fail"
|
||||||
notify["message"] = "Failed to get rclone config"
|
notify["message"] = "Failed to get rclone config"
|
||||||
logger.Error("Then get config error: ", zap.Error(err), zap.Any("name", "onedrive"))
|
logger.Error("Then get config error: ", zap.Error(err), zap.Any("name", "onedrive"))
|
||||||
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
service.MyService.Notify().SendNotify(event, notify)
|
||||||
|
return ctx.HTML(http.StatusOK, `<p>Failed to get rclone config:`+err.Error()+`</p><script>window.close()</script>`)
|
||||||
}
|
}
|
||||||
for _, v := range configs.Remotes {
|
for _, v := range configs.Remotes {
|
||||||
cf, err := service.MyService.Storage().GetConfigByName(v)
|
cf, err := service.MyService.Storage().GetConfigByName(v)
|
||||||
@ -226,15 +212,14 @@ func GetRecoverStorage(ctx echo.Context) error {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if cf["type"] == "onedrive" && cf["username"] == dmap["username"] {
|
if cf["type"] == "onedrive" && cf["username"] == dmap["username"] {
|
||||||
ctx.String(200, `<p>The same configuration has been added</p><script>window.close()</script>`)
|
if err := service.MyService.Storage().CheckAndMountByName(v); err != nil {
|
||||||
err := service.MyService.Storage().CheckAndMountByName(v)
|
|
||||||
if err != nil {
|
|
||||||
logger.Error("check and mount by name error: ", zap.Error(err), zap.Any("name", cf["username"]))
|
logger.Error("check and mount by name error: ", zap.Error(err), zap.Any("name", cf["username"]))
|
||||||
}
|
}
|
||||||
|
|
||||||
notify["status"] = "warn"
|
notify["status"] = "warn"
|
||||||
notify["message"] = "The same configuration has been added"
|
notify["message"] = "The same configuration has been added"
|
||||||
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
service.MyService.Notify().SendNotify(event, notify)
|
||||||
|
return ctx.HTML(http.StatusOK, `<p>The same configuration has been added</p><script>window.close()</script>`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(username) > 0 {
|
if len(username) > 0 {
|
||||||
@ -249,26 +234,14 @@ func GetRecoverStorage(ctx echo.Context) error {
|
|||||||
dmap["mount_point"] = "/mnt/" + username
|
dmap["mount_point"] = "/mnt/" + username
|
||||||
dmap["drive_id"] = driveId
|
dmap["drive_id"] = driveId
|
||||||
dmap["drive_type"] = driveType
|
dmap["drive_type"] = driveType
|
||||||
// data.SetValue(username, "type", "dropbox")
|
|
||||||
// data.SetValue(username, "client_id", add.AppKey)
|
|
||||||
// data.SetValue(username, "client_secret", add.AppSecret)
|
|
||||||
// data.SetValue(username, "mount_point", "/mnt/"+username)
|
|
||||||
|
|
||||||
// data.SetValue(username, "token", `{"access_token":"`+dropbox.AccessToken+`","token_type":"bearer","refresh_token":"`+dropbox.Addition.RefreshToken+`","expiry":"`+currentDate+`T`+currentTime.Add(time.Hour*3).Format("15:04:05")+`.780385354Z"}`)
|
|
||||||
// e = data.Save()
|
|
||||||
// if e != nil {
|
|
||||||
// return ctx.String(200, `<p>保存配置失败:`+e.Error()+`</p>`)
|
|
||||||
|
|
||||||
// return
|
|
||||||
// }
|
|
||||||
service.MyService.Storage().CreateConfig(dmap, username, "onedrive")
|
service.MyService.Storage().CreateConfig(dmap, username, "onedrive")
|
||||||
service.MyService.Storage().MountStorage("/mnt/"+username, username+":")
|
service.MyService.Storage().MountStorage("/mnt/"+username, username+":")
|
||||||
|
|
||||||
notify["status"] = "success"
|
notify["status"] = "success"
|
||||||
notify["message"] = "Success"
|
notify["message"] = "Success"
|
||||||
notify["driver"] = "Onedrive"
|
notify["driver"] = "Onedrive"
|
||||||
service.MyService.Notify().SendNotify("casaos:file:recover", notify)
|
service.MyService.Notify().SendNotify(event, notify)
|
||||||
}
|
}
|
||||||
|
|
||||||
return ctx.String(200, `<p>Just close the page</p><script>window.close()</script>`)
|
return ctx.HTML(200, `<p>Just close the page</p><script>window.close()</script>`)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user