1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-26 05:05:51 +00:00
gitea/models/publickey.go

78 lines
1.5 KiB
Go
Raw Normal View History

2014-02-17 15:57:23 +00:00
package models
import (
"fmt"
"os"
2014-02-25 08:13:47 +00:00
"os/exec"
2014-02-17 15:57:23 +00:00
"path/filepath"
"time"
)
var (
publicKeyRootPath string
2014-02-25 08:13:47 +00:00
sshPath string = "/Users/lunny/.ssh"
appPath string
2014-02-17 15:57:23 +00:00
tmplPublicKey = "### autogenerated by gitgos, DO NOT EDIT\n" +
2014-02-25 08:13:47 +00:00
"command=\"%s serv key-%d\",no-port-forwarding," +
"no-X11-forwarding,no-agent-forwarding,no-pty %s\n"
2014-02-17 15:57:23 +00:00
)
2014-02-25 08:13:47 +00:00
func exePath() (string, error) {
file, err := exec.LookPath(os.Args[0])
if err != nil {
return "", err
}
return filepath.Abs(file)
}
func init() {
var err error
appPath, err = exePath()
if err != nil {
println(err.Error())
os.Exit(2)
}
}
2014-02-17 15:57:23 +00: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 08:13:47 +00:00
func GenAuthorizedKey(keyId int64, key string) string {
return fmt.Sprintf(tmplPublicKey, appPath, keyId, key)
2014-02-17 15:57:23 +00:00
}
func AddPublicKey(key *PublicKey, user string) error {
_, err := orm.Insert(key)
if err != nil {
return err
}
2014-02-25 08:13:47 +00:00
err = SaveAuthorizedKeyFile(key)
2014-02-17 15:57:23 +00:00
if err != nil {
_, err2 := orm.Delete(key)
if err2 != nil {
// TODO: logo the error
}
return err
}
return nil
}
2014-02-25 08:13:47 +00:00
func SaveAuthorizedKeyFile(key *PublicKey) error {
p := filepath.Join(sshPath, "authorized_keys")
f, err := os.Create(p)
2014-02-17 15:57:23 +00:00
if err != nil {
return err
}
2014-02-25 08:13:47 +00:00
os.Chmod(p, 0600)
_, err = f.WriteString(GenAuthorizedKey(key.Id, key.Content))
2014-02-17 15:57:23 +00:00
return err
}