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