gitea/models/token.go

87 lines
2.2 KiB
Go
Raw Normal View History

2014-11-12 22:48:50 +11:00
// Copyright 2014 The Gogs 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 models
import (
"time"
gouuid "github.com/satori/go.uuid"
"code.gitea.io/gitea/modules/base"
2014-11-12 22:48:50 +11:00
)
// AccessToken represents a personal access token.
type AccessToken struct {
ID int64 `xorm:"pk autoincr"`
UID int64 `xorm:"INDEX"`
Name string
Sha1 string `xorm:"UNIQUE VARCHAR(40)"`
Created time.Time `xorm:"-"`
CreatedUnix int64 `xorm:"INDEX created"`
Updated time.Time `xorm:"-"`
UpdatedUnix int64 `xorm:"INDEX updated"`
2017-01-07 02:14:33 +11:00
HasRecentActivity bool `xorm:"-"`
HasUsed bool `xorm:"-"`
2014-11-12 22:48:50 +11:00
}
// AfterLoad is invoked from XORM after setting the values of all fields of this object.
func (t *AccessToken) AfterLoad() {
t.Created = time.Unix(t.CreatedUnix, 0).Local()
t.Updated = time.Unix(t.UpdatedUnix, 0).Local()
t.HasUsed = t.Updated.After(t.Created)
t.HasRecentActivity = t.Updated.Add(7 * 24 * time.Hour).After(time.Now())
}
2014-11-12 22:48:50 +11:00
// NewAccessToken creates new access token.
func NewAccessToken(t *AccessToken) error {
t.Sha1 = base.EncodeSha1(gouuid.NewV4().String())
2014-11-12 22:48:50 +11:00
_, err := x.Insert(t)
return err
}
2015-08-19 08:22:33 +10:00
// GetAccessTokenBySHA returns access token by given sha1.
func GetAccessTokenBySHA(sha string) (*AccessToken, error) {
2016-06-27 19:02:39 +10:00
if sha == "" {
return nil, ErrAccessTokenEmpty{}
}
2014-11-12 22:48:50 +11:00
t := &AccessToken{Sha1: sha}
has, err := x.Get(t)
if err != nil {
return nil, err
} else if !has {
return nil, ErrAccessTokenNotExist{sha}
2014-11-12 22:48:50 +11:00
}
return t, nil
}
// ListAccessTokens returns a list of access tokens belongs to given user.
func ListAccessTokens(uid int64) ([]*AccessToken, error) {
tokens := make([]*AccessToken, 0, 5)
2016-11-11 02:16:32 +11:00
return tokens, x.
Where("uid=?", uid).
Desc("id").
Find(&tokens)
2014-11-12 22:48:50 +11:00
}
2016-01-07 06:41:42 +11:00
// UpdateAccessToken updates information of access token.
func UpdateAccessToken(t *AccessToken) error {
_, err := x.ID(t.ID).AllCols().Update(t)
2015-08-19 08:22:33 +10:00
return err
}
2015-08-19 05:36:16 +10:00
// DeleteAccessTokenByID deletes access token by given ID.
2016-12-15 19:49:06 +11:00
func DeleteAccessTokenByID(id, userID int64) error {
cnt, err := x.ID(id).Delete(&AccessToken{
2016-12-15 19:49:06 +11:00
UID: userID,
})
if err != nil {
return err
} else if cnt != 1 {
return ErrAccessTokenNotExist{}
}
return nil
2014-11-12 22:48:50 +11:00
}