2021-05-10 01:57:45 -06:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-05-10 01:57:45 -06:00
|
|
|
|
|
|
|
package private
|
|
|
|
|
|
|
|
import (
|
2021-09-21 23:38:34 -06:00
|
|
|
"io"
|
2021-06-23 13:38:19 -06:00
|
|
|
"net/http"
|
2021-05-10 01:57:45 -06:00
|
|
|
|
|
|
|
myCtx "code.gitea.io/gitea/modules/context"
|
2021-07-24 10:03:58 -06:00
|
|
|
"code.gitea.io/gitea/modules/json"
|
2021-06-23 13:38:19 -06:00
|
|
|
"code.gitea.io/gitea/modules/private"
|
2021-11-16 08:25:33 -07:00
|
|
|
"code.gitea.io/gitea/services/migrations"
|
2021-05-10 01:57:45 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
// RestoreRepo restore a repository from data
|
|
|
|
func RestoreRepo(ctx *myCtx.PrivateContext) {
|
2021-09-21 23:38:34 -06:00
|
|
|
bs, err := io.ReadAll(ctx.Req.Body)
|
2021-05-10 01:57:45 -06:00
|
|
|
if err != nil {
|
2021-06-23 13:38:19 -06:00
|
|
|
ctx.JSON(http.StatusInternalServerError, private.Response{
|
|
|
|
Err: err.Error(),
|
2021-05-10 01:57:45 -06:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2022-01-20 10:46:10 -07:00
|
|
|
params := struct {
|
2022-01-26 02:45:51 -07:00
|
|
|
RepoDir string
|
|
|
|
OwnerName string
|
|
|
|
RepoName string
|
|
|
|
Units []string
|
|
|
|
Validation bool
|
2021-05-10 01:57:45 -06:00
|
|
|
}{}
|
|
|
|
if err = json.Unmarshal(bs, ¶ms); err != nil {
|
2021-06-23 13:38:19 -06:00
|
|
|
ctx.JSON(http.StatusInternalServerError, private.Response{
|
|
|
|
Err: err.Error(),
|
2021-05-10 01:57:45 -06:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := migrations.RestoreRepository(
|
2021-05-31 00:18:11 -06:00
|
|
|
ctx,
|
2021-05-10 01:57:45 -06:00
|
|
|
params.RepoDir,
|
|
|
|
params.OwnerName,
|
|
|
|
params.RepoName,
|
|
|
|
params.Units,
|
2022-01-26 02:45:51 -07:00
|
|
|
params.Validation,
|
2021-05-10 01:57:45 -06:00
|
|
|
); err != nil {
|
2021-06-23 13:38:19 -06:00
|
|
|
ctx.JSON(http.StatusInternalServerError, private.Response{
|
|
|
|
Err: err.Error(),
|
2021-05-10 01:57:45 -06:00
|
|
|
})
|
|
|
|
} else {
|
2023-05-21 19:38:38 -06:00
|
|
|
ctx.PlainText(http.StatusOK, "success")
|
2021-05-10 01:57:45 -06:00
|
|
|
}
|
|
|
|
}
|