2023-03-14 15:22:52 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
type SSHKey struct {
|
2023-03-17 13:56:39 +00:00
|
|
|
ID uint `gorm:"primaryKey"`
|
|
|
|
Title string
|
|
|
|
Content string
|
2023-03-14 15:22:52 +00:00
|
|
|
SHA string
|
|
|
|
CreatedAt int64
|
|
|
|
LastUsedAt int64
|
|
|
|
UserID uint
|
|
|
|
User User `validate:"-" `
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetSSHKeysByUserID(userId uint) ([]*SSHKey, error) {
|
|
|
|
var sshKeys []*SSHKey
|
|
|
|
err := db.
|
|
|
|
Where("user_id = ?", userId).
|
|
|
|
Order("created_at asc").
|
|
|
|
Find(&sshKeys).Error
|
|
|
|
|
|
|
|
return sshKeys, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetSSHKeyByID(sshKeyId uint) (*SSHKey, error) {
|
|
|
|
sshKey := new(SSHKey)
|
|
|
|
err := db.
|
|
|
|
Where("id = ?", sshKeyId).
|
|
|
|
First(&sshKey).Error
|
|
|
|
|
|
|
|
return sshKey, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetSSHKeyByContent(sshKeyContent string) (*SSHKey, error) {
|
|
|
|
sshKey := new(SSHKey)
|
|
|
|
err := db.
|
|
|
|
Where("content like ?", sshKeyContent+"%").
|
|
|
|
First(&sshKey).Error
|
|
|
|
|
|
|
|
return sshKey, err
|
|
|
|
}
|
|
|
|
|
2023-03-17 13:56:39 +00:00
|
|
|
func (sshKey *SSHKey) Create() error {
|
2023-03-14 15:22:52 +00:00
|
|
|
return db.Create(&sshKey).Error
|
|
|
|
}
|
|
|
|
|
2023-03-17 13:56:39 +00:00
|
|
|
func (sshKey *SSHKey) Delete() error {
|
2023-03-14 15:22:52 +00:00
|
|
|
return db.Delete(&sshKey).Error
|
|
|
|
}
|
|
|
|
|
|
|
|
func SSHKeyLastUsedNow(sshKeyID uint) error {
|
|
|
|
return db.Model(&SSHKey{}).
|
|
|
|
Where("id = ?", sshKeyID).
|
|
|
|
Update("last_used_at", time.Now().Unix()).Error
|
|
|
|
}
|
2023-03-17 13:56:39 +00:00
|
|
|
|
|
|
|
// -- DTO -- //
|
|
|
|
|
|
|
|
type SSHKeyDTO struct {
|
|
|
|
Title string `form:"title" validate:"required,max=50"`
|
|
|
|
Content string `form:"content" validate:"required"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dto *SSHKeyDTO) ToSSHKey() *SSHKey {
|
|
|
|
return &SSHKey{
|
|
|
|
Title: dto.Title,
|
|
|
|
Content: dto.Content,
|
|
|
|
}
|
|
|
|
}
|