gitea/models/publickey.go

101 lines
1.9 KiB
Go
Raw Normal View History

2014-02-17 16:57:23 +01:00
package models
import (
"fmt"
"os"
2014-02-25 09:13:47 +01:00
"os/exec"
2014-02-17 16:57:23 +01:00
"path/filepath"
"time"
2014-03-02 21:25:09 +01:00
"github.com/Unknwon/com"
2014-02-17 16:57:23 +01:00
)
var (
2014-02-25 11:58:55 +01:00
//publicKeyRootPath string
sshPath string
appPath string
tmplPublicKey = "### autogenerated by gitgos, DO NOT EDIT\n" +
2014-02-25 09:13:47 +01:00
"command=\"%s serv key-%d\",no-port-forwarding," +
"no-X11-forwarding,no-agent-forwarding,no-pty %s\n"
2014-02-17 16:57:23 +01:00
)
2014-02-25 09:13:47 +01:00
func exePath() (string, error) {
file, err := exec.LookPath(os.Args[0])
if err != nil {
return "", err
}
return filepath.Abs(file)
}
2014-02-25 11:58:55 +01:00
func homeDir() string {
2014-03-02 21:25:09 +01:00
home, err := com.HomeDir()
2014-02-25 11:58:55 +01:00
if err != nil {
return "/"
}
2014-03-02 21:25:09 +01:00
return home
2014-02-25 11:58:55 +01:00
}
2014-02-25 09:13:47 +01:00
func init() {
var err error
appPath, err = exePath()
if err != nil {
println(err.Error())
os.Exit(2)
}
2014-02-25 11:58:55 +01:00
sshPath = filepath.Join(homeDir(), ".ssh")
2014-02-25 09:13:47 +01:00
}
2014-02-17 16:57:23 +01:00
type PublicKey struct {
Id int64
OwnerId int64 `xorm:"index"`
Name string `xorm:"unique not null"`
Content string `xorm:"text not null"`
Created time.Time `xorm:"created"`
Updated time.Time `xorm:"updated"`
}
2014-02-25 09:13:47 +01:00
func GenAuthorizedKey(keyId int64, key string) string {
return fmt.Sprintf(tmplPublicKey, appPath, keyId, key)
2014-02-17 16:57:23 +01:00
}
2014-02-25 11:30:48 +01:00
func AddPublicKey(key *PublicKey) error {
2014-02-17 16:57:23 +01:00
_, err := orm.Insert(key)
if err != nil {
return err
}
2014-02-25 09:13:47 +01:00
err = SaveAuthorizedKeyFile(key)
2014-02-17 16:57:23 +01:00
if err != nil {
_, err2 := orm.Delete(key)
if err2 != nil {
2014-03-02 21:25:09 +01:00
// TODO: log the error
2014-02-17 16:57:23 +01:00
}
return err
}
return nil
}
2014-03-10 10:15:02 +01:00
func DeletePublicKey(key *PublicKey) error {
_, err := orm.Delete(key)
return err
}
2014-03-07 04:34:41 +01:00
func ListPublicKey(userId int64) ([]PublicKey, error) {
keys := make([]PublicKey, 0)
err := orm.Find(&keys, &PublicKey{OwnerId: userId})
return keys, err
}
2014-02-25 09:13:47 +01:00
func SaveAuthorizedKeyFile(key *PublicKey) error {
p := filepath.Join(sshPath, "authorized_keys")
2014-02-25 11:30:48 +01:00
f, err := os.OpenFile(p, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0600)
2014-02-17 16:57:23 +01:00
if err != nil {
return err
}
2014-02-25 11:30:48 +01:00
//os.Chmod(p, 0600)
2014-02-25 09:13:47 +01:00
_, err = f.WriteString(GenAuthorizedKey(key.Id, key.Content))
2014-02-17 16:57:23 +01:00
return err
}