summaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-03-10 20:53:30 -0400
committerUnknown <joe2010xtmf@163.com>2014-03-10 20:53:30 -0400
commit52837e3d36658cd58076ee0b9d9d99800b5ade88 (patch)
tree71fdea58d3a81888effa93519abe7183160a4787 /routers
parent897329a64416dd46b9e4f5a81c3c7a1666fc1173 (diff)
downloadgitea-52837e3d36658cd58076ee0b9d9d99800b5ade88.tar.gz
gitea-52837e3d36658cd58076ee0b9d9d99800b5ade88.zip
Clean code
Diffstat (limited to 'routers')
-rw-r--r--routers/user/ssh.go58
1 files changed, 0 insertions, 58 deletions
diff --git a/routers/user/ssh.go b/routers/user/ssh.go
deleted file mode 100644
index 1a5837dc88..0000000000
--- a/routers/user/ssh.go
+++ /dev/null
@@ -1,58 +0,0 @@
-// 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 user
-
-import (
- "net/http"
- "strconv"
-
- "github.com/martini-contrib/render"
- "github.com/martini-contrib/sessions"
-
- "github.com/gogits/gogs/models"
- "github.com/gogits/gogs/modules/auth"
- "github.com/gogits/gogs/modules/base"
- "github.com/gogits/gogs/modules/log"
-)
-
-func DelPublicKey(req *http.Request, data base.TmplData, r render.Render, session sessions.Session) {
- data["Title"] = "Del Public Key"
-
- if req.Method == "GET" {
- r.HTML(200, "user/publickey_add", data)
- return
- }
-
- if req.Method == "DELETE" {
- id, err := strconv.ParseInt(req.FormValue("id"), 10, 64)
- if err != nil {
- data["ErrorMsg"] = err
- log.Error("ssh.DelPublicKey: %v", err)
- r.JSON(200, map[string]interface{}{
- "ok": false,
- "err": err.Error(),
- })
- return
- }
-
- k := &models.PublicKey{
- Id: id,
- OwnerId: auth.SignedInId(session),
- }
- err = models.DeletePublicKey(k)
- if err != nil {
- data["ErrorMsg"] = err
- log.Error("ssh.DelPublicKey: %v", err)
- r.JSON(200, map[string]interface{}{
- "ok": false,
- "err": err.Error(),
- })
- } else {
- r.JSON(200, map[string]interface{}{
- "ok": true,
- })
- }
- }
-}