* Make modules/context.Context a context.Context Signed-off-by: Andrew Thornton <art27@cantab.net> * Simplify context calls Signed-off-by: Andrew Thornton <art27@cantab.net> * Set the base context for requests to the HammerContext Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
		
			
				
	
	
		
			51 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			51 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/ioutil"
 | |
| 
 | |
| 	myCtx "code.gitea.io/gitea/modules/context"
 | |
| 	"code.gitea.io/gitea/modules/migrations"
 | |
| 	jsoniter "github.com/json-iterator/go"
 | |
| )
 | |
| 
 | |
| // RestoreRepo restore a repository from data
 | |
| func RestoreRepo(ctx *myCtx.PrivateContext) {
 | |
| 	json := jsoniter.ConfigCompatibleWithStandardLibrary
 | |
| 	bs, err := ioutil.ReadAll(ctx.Req.Body)
 | |
| 	if err != nil {
 | |
| 		ctx.JSON(500, map[string]string{
 | |
| 			"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(500, map[string]string{
 | |
| 			"err": err.Error(),
 | |
| 		})
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if err := migrations.RestoreRepository(
 | |
| 		ctx,
 | |
| 		params.RepoDir,
 | |
| 		params.OwnerName,
 | |
| 		params.RepoName,
 | |
| 		params.Units,
 | |
| 	); err != nil {
 | |
| 		ctx.JSON(500, map[string]string{
 | |
| 			"err": err.Error(),
 | |
| 		})
 | |
| 	} else {
 | |
| 		ctx.Status(200)
 | |
| 	}
 | |
| }
 |