mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 15:19:09 +01:00
cb50375e2b
Add nakedret, unconvert, wastedassign, stylecheck and nolintlint linters to improve code readability - nakedret - https://github.com/alexkohler/nakedret - nakedret is a Go static analysis tool to find naked returns in functions greater than a specified function length. - unconvert - https://github.com/mdempsky/unconvert - Remove unnecessary type conversions - wastedassign - https://github.com/sanposhiho/wastedassign - wastedassign finds wasted assignment statements. - notlintlint - Reports ill-formed or insufficient nolint directives - stylecheck - https://staticcheck.io/docs/checks/#ST - keep style consistent - excluded: [ST1003 - Poorly chosen identifier](https://staticcheck.io/docs/checks/#ST1003) and [ST1005 - Incorrectly formatted error string](https://staticcheck.io/docs/checks/#ST1005)
45 lines
1.4 KiB
Go
45 lines
1.4 KiB
Go
// Copyright 2022 The Gitea 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 activitypub
|
|
|
|
import (
|
|
user_model "code.gitea.io/gitea/models/user"
|
|
)
|
|
|
|
// GetKeyPair function returns a user's private and public keys
|
|
func GetKeyPair(user *user_model.User) (pub, priv string, err error) {
|
|
var settings map[string]*user_model.Setting
|
|
settings, err = user_model.GetUserSettings(user.ID, []string{user_model.UserActivityPubPrivPem, user_model.UserActivityPubPubPem})
|
|
if err != nil {
|
|
return
|
|
} else if len(settings) == 0 {
|
|
if priv, pub, err = GenerateKeyPair(); err != nil {
|
|
return
|
|
}
|
|
if err = user_model.SetUserSetting(user.ID, user_model.UserActivityPubPrivPem, priv); err != nil {
|
|
return
|
|
}
|
|
if err = user_model.SetUserSetting(user.ID, user_model.UserActivityPubPubPem, pub); err != nil {
|
|
return
|
|
}
|
|
return
|
|
} else {
|
|
priv = settings[user_model.UserActivityPubPrivPem].SettingValue
|
|
pub = settings[user_model.UserActivityPubPubPem].SettingValue
|
|
return
|
|
}
|
|
}
|
|
|
|
// GetPublicKey function returns a user's public key
|
|
func GetPublicKey(user *user_model.User) (pub string, err error) {
|
|
pub, _, err = GetKeyPair(user)
|
|
return pub, err
|
|
}
|
|
|
|
// GetPrivateKey function returns a user's private key
|
|
func GetPrivateKey(user *user_model.User) (priv string, err error) {
|
|
_, priv, err = GetKeyPair(user)
|
|
return priv, err
|
|
}
|