
**Backport:** https://codeberg.org/forgejo/forgejo/pulls/7337 - Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Co-authored-by: Gusted <postmaster@gusted.xyz> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7354 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org> Co-committed-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org>
53 lines
1.1 KiB
Go
53 lines
1.1 KiB
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package private
|
|
|
|
import (
|
|
"io"
|
|
"net/http"
|
|
|
|
"forgejo.org/modules/json"
|
|
"forgejo.org/modules/private"
|
|
myCtx "forgejo.org/services/context"
|
|
"forgejo.org/services/migrations"
|
|
)
|
|
|
|
// RestoreRepo restore a repository from data
|
|
func RestoreRepo(ctx *myCtx.PrivateContext) {
|
|
bs, err := io.ReadAll(ctx.Req.Body)
|
|
if err != nil {
|
|
ctx.JSON(http.StatusInternalServerError, private.Response{
|
|
Err: err.Error(),
|
|
})
|
|
return
|
|
}
|
|
params := struct {
|
|
RepoDir string
|
|
OwnerName string
|
|
RepoName string
|
|
Units []string
|
|
Validation bool
|
|
}{}
|
|
if err = json.Unmarshal(bs, ¶ms); err != nil {
|
|
ctx.JSON(http.StatusInternalServerError, private.Response{
|
|
Err: err.Error(),
|
|
})
|
|
return
|
|
}
|
|
|
|
if err := migrations.RestoreRepository(
|
|
ctx,
|
|
params.RepoDir,
|
|
params.OwnerName,
|
|
params.RepoName,
|
|
params.Units,
|
|
params.Validation,
|
|
); err != nil {
|
|
ctx.JSON(http.StatusInternalServerError, private.Response{
|
|
Err: err.Error(),
|
|
})
|
|
} else {
|
|
ctx.PlainText(http.StatusOK, "success")
|
|
}
|
|
}
|