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