local-ip.sh/certs/account.go

129 lines
3.5 KiB
Go
Raw Normal View History

package certs
import (
"crypto"
"crypto/ecdsa"
"crypto/elliptic"
"crypto/rand"
"crypto/x509"
"encoding/json"
"encoding/pem"
"os"
"path/filepath"
"strings"
"github.com/go-acme/lego/v4/lego"
"github.com/go-acme/lego/v4/registration"
2024-07-19 00:24:11 +00:00
"local-ip.sh/utils"
)
type Account struct {
Registration *registration.Resource
key *ecdsa.PrivateKey
2023-12-12 21:25:39 +00:00
Email string
}
func (u *Account) GetEmail() string {
return u.Email
}
2023-12-12 21:25:39 +00:00
func (u *Account) GetRegistration() *registration.Resource {
return u.Registration
}
2023-12-12 21:25:39 +00:00
func (u *Account) GetPrivateKey() crypto.PrivateKey {
return u.key
}
func LoadAccount() *Account {
2024-07-26 10:16:23 +00:00
config := utils.GetConfig()
jsonBytes, err := os.ReadFile(config.AccountFilePath)
if err != nil {
if strings.Contains(err.Error(), "no such file or directory") {
RegisterAccount()
return LoadAccount()
}
2024-07-19 00:24:11 +00:00
utils.Logger.Fatal().Err(err).Msg("Failed to load account from existing file")
}
2024-07-19 00:24:11 +00:00
account := &Account{}
err = json.Unmarshal(jsonBytes, account)
if err != nil {
2024-07-19 00:24:11 +00:00
utils.Logger.Fatal().Err(err).Msg("Failed to unmarshal account JSON file")
}
2024-07-26 10:16:23 +00:00
privKey, err := os.ReadFile(config.KeyFilePath)
if err != nil {
2024-07-19 00:24:11 +00:00
utils.Logger.Fatal().Err(err).Msg("Failed to read account's private key file")
}
2024-07-19 00:24:11 +00:00
account.key = decode(string(privKey))
return account
}
func RegisterAccount() {
2024-07-26 10:16:23 +00:00
config := utils.GetConfig()
privateKey, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
if err != nil {
2024-07-19 00:24:11 +00:00
utils.Logger.Fatal().Err(err).Msg("Failed to generate account key")
}
account := &Account{
2024-07-26 10:16:23 +00:00
Email: config.Email,
key: privateKey,
}
2024-07-26 10:16:23 +00:00
legoConfig := lego.NewConfig(account)
legoConfig.CADirURL = config.CADirURL
legoClient, err := lego.NewClient(legoConfig)
2023-12-12 21:25:39 +00:00
if err != nil {
2024-07-26 10:16:23 +00:00
utils.Logger.Fatal().Err(err).Str("CA Directory URL", legoConfig.CADirURL).Msg("Failed to initialize lego client")
2023-12-12 21:25:39 +00:00
}
reg, err := legoClient.Registration.Register(registration.RegisterOptions{TermsOfServiceAgreed: true})
2023-12-12 21:25:39 +00:00
if err != nil {
2024-07-26 10:16:23 +00:00
utils.Logger.Fatal().Err(err).Str("CA Directory URL", legoConfig.CADirURL).Msg("Failed to register account to ACME server")
2023-12-12 21:25:39 +00:00
}
if reg.Body.Status != "valid" {
2024-07-26 10:16:23 +00:00
utils.Logger.Fatal().Err(err).Str("CA Directory URL", legoConfig.CADirURL).Msgf("Registration failed with status %s", reg.Body.Status)
}
2024-07-19 00:24:11 +00:00
utils.Logger.Debug().
2024-07-26 10:16:23 +00:00
Str("CA Directory URL", legoConfig.CADirURL).
2024-07-19 00:24:11 +00:00
Bool("TermsOfServiceAgreed", reg.Body.TermsOfServiceAgreed).
Msg("Successfully registered account to ACME server")
account.Registration = reg
2024-07-26 10:16:23 +00:00
os.MkdirAll(filepath.Dir(config.KeyFilePath), os.ModePerm)
privKey := encode(privateKey)
2024-07-26 10:16:23 +00:00
err = os.WriteFile(config.KeyFilePath, []byte(privKey), 0o644)
if err != nil {
2024-07-26 10:16:23 +00:00
utils.Logger.Fatal().Err(err).Str("path", config.KeyFilePath).Msg("Failed to write account's private key file")
}
jsonBytes, err := json.MarshalIndent(account, "", "\t")
if err != nil {
2024-07-19 00:24:11 +00:00
utils.Logger.Fatal().Err(err).Msg("Failed to marshal account JSON file")
}
2024-07-26 10:16:23 +00:00
os.MkdirAll(filepath.Dir(config.AccountFilePath), os.ModePerm)
err = os.WriteFile(config.AccountFilePath, jsonBytes, 0o600)
if err != nil {
2024-07-26 10:16:23 +00:00
utils.Logger.Fatal().Err(err).Str("path", config.AccountFilePath).Msg("Failed to write account's JSON file")
}
}
func encode(privateKey *ecdsa.PrivateKey) string {
x509Encoded, _ := x509.MarshalECPrivateKey(privateKey)
pemEncoded := pem.EncodeToMemory(&pem.Block{Type: "PRIVATE KEY", Bytes: x509Encoded})
return string(pemEncoded)
}
func decode(pemEncoded string) *ecdsa.PrivateKey {
block, _ := pem.Decode([]byte(pemEncoded))
x509Encoded := block.Bytes
privateKey, _ := x509.ParseECPrivateKey(x509Encoded)
return privateKey
}