aboutsummaryrefslogtreecommitdiff
path: root/routers/repo/repo.go
blob: 8b9c9cef5de8f27e4810d0e7d3845dea215cf0b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Copyright 2014 The Gogs 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 repo

import (
	"fmt"
	"net/http"
	"strconv"

	"github.com/martini-contrib/render"

	"github.com/gogits/gogs/models"
)

func Create(req *http.Request, r render.Render) {
	if req.Method == "GET" {
		r.HTML(200, "repo/create", map[string]interface{}{
			"Title": "Create repository",
		})
		return
	}

	// TODO: access check
	//fmt.Println(req.FormValue("userId"), req.FormValue("name"))

	id, err := strconv.ParseInt(req.FormValue("userId"), 10, 64)
	if err == nil {
		var user *models.User
		user, err = models.GetUserById(id)
		if user == nil {
			err = models.ErrUserNotExist
		}
		if err == nil {
			_, err = models.CreateRepository(user, req.FormValue("name"))
		}
		if err == nil {
			r.HTML(200, "repo/created", map[string]interface{}{
				"RepoName": user.Name + "/" + req.FormValue("name"),
			})
			return
		}
	}

	if err != nil {
		r.HTML(403, "status/403", map[string]interface{}{
			"Title": fmt.Sprintf("%v", err),
		})
	}
}

func Delete(req *http.Request, r render.Render) {
	if req.Method == "GET" {
		r.HTML(200, "repo/delete", map[string]interface{}{
			"Title": "Delete repository",
		})
		return
	}

	u := &models.User{}
	err := models.DeleteRepository(u, "")
	r.HTML(403, "status/403", map[string]interface{}{
		"Title": fmt.Sprintf("%v", err),
	})
}