gitea/routers/user/ssh.go

58 lines
1.5 KiB
Go
Raw Normal View History

2014-02-20 22:51:03 +01:00
// 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 (
"fmt"
"net/http"
"github.com/martini-contrib/render"
"github.com/martini-contrib/sessions"
2014-02-20 22:51:03 +01:00
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/auth"
2014-02-20 22:51:03 +01:00
)
2014-03-07 04:34:41 +01:00
func AddPublicKey(req *http.Request, r render.Render, session sessions.Session) {
2014-02-20 22:51:03 +01:00
if req.Method == "GET" {
r.HTML(200, "user/publickey_add", map[string]interface{}{
2014-03-07 04:34:41 +01:00
"Title": "Add Public Key",
"IsSigned": auth.IsSignedIn(session),
2014-02-20 22:51:03 +01:00
})
return
}
k := &models.PublicKey{OwnerId: auth.SignedInId(session),
2014-02-25 11:30:48 +01:00
Name: req.FormValue("keyname"),
Content: req.FormValue("key_content"),
}
err := models.AddPublicKey(k)
if err != nil {
r.HTML(403, "status/403", map[string]interface{}{
2014-03-07 04:34:41 +01:00
"Title": fmt.Sprintf("%v", err),
"IsSigned": auth.IsSignedIn(session),
2014-02-25 11:30:48 +01:00
})
} else {
r.HTML(200, "user/publickey_added", map[string]interface{}{})
}
2014-02-20 22:51:03 +01:00
}
2014-03-07 04:34:41 +01:00
func ListPublicKey(req *http.Request, r render.Render, session sessions.Session) {
keys, err := models.ListPublicKey(auth.SignedInId(session))
2014-03-07 04:34:41 +01:00
if err != nil {
r.HTML(200, "base/error", map[string]interface{}{
"Error": fmt.Sprintf("%v", err),
"IsSigned": auth.IsSignedIn(session),
2014-03-07 04:34:41 +01:00
})
return
}
r.HTML(200, "user/publickey_list", map[string]interface{}{
"Title": "repositories",
"Keys": keys,
"IsSigned": auth.IsSignedIn(session),
2014-03-07 04:34:41 +01:00
})
}