mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	The io/ioutil package has been deprecated as of Go 1.16, see https://golang.org/doc/go1.16#ioutil. This commit replaces the existing io/ioutil functions with their new definitions in io and os packages. Signed-off-by: Eng Zer Jun <engzerjun@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2021 The Gitea Authors. All rights reserved.
 | 
						|
// Use of this source code is governed by a MIT-style
 | 
						|
// license that can be found in the LICENSE file.
 | 
						|
 | 
						|
package private
 | 
						|
 | 
						|
import (
 | 
						|
	"io"
 | 
						|
	"net/http"
 | 
						|
 | 
						|
	myCtx "code.gitea.io/gitea/modules/context"
 | 
						|
	"code.gitea.io/gitea/modules/json"
 | 
						|
	"code.gitea.io/gitea/modules/migrations"
 | 
						|
	"code.gitea.io/gitea/modules/private"
 | 
						|
)
 | 
						|
 | 
						|
// 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
 | 
						|
	}
 | 
						|
	var params = struct {
 | 
						|
		RepoDir   string
 | 
						|
		OwnerName string
 | 
						|
		RepoName  string
 | 
						|
		Units     []string
 | 
						|
	}{}
 | 
						|
	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,
 | 
						|
	); err != nil {
 | 
						|
		ctx.JSON(http.StatusInternalServerError, private.Response{
 | 
						|
			Err: err.Error(),
 | 
						|
		})
 | 
						|
	} else {
 | 
						|
		ctx.Status(http.StatusOK)
 | 
						|
	}
 | 
						|
}
 |