2014-11-12 11:48:50 +00: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"
|
|
|
|
|
2016-02-20 23:13:12 +00:00
|
|
|
gouuid "github.com/satori/go.uuid"
|
|
|
|
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
2017-12-11 04:37:04 +00:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2014-11-12 11:48:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// AccessToken represents a personal access token.
|
|
|
|
type AccessToken struct {
|
2016-03-10 00:53:30 +00:00
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
UID int64 `xorm:"INDEX"`
|
|
|
|
Name string
|
|
|
|
Sha1 string `xorm:"UNIQUE VARCHAR(40)"`
|
|
|
|
|
2017-12-11 04:37:04 +00:00
|
|
|
CreatedUnix util.TimeStamp `xorm:"INDEX created"`
|
|
|
|
UpdatedUnix util.TimeStamp `xorm:"INDEX updated"`
|
|
|
|
HasRecentActivity bool `xorm:"-"`
|
|
|
|
HasUsed bool `xorm:"-"`
|
2014-11-12 11:48:50 +00:00
|
|
|
}
|
|
|
|
|
2017-10-01 16:52:35 +00:00
|
|
|
// AfterLoad is invoked from XORM after setting the values of all fields of this object.
|
|
|
|
func (t *AccessToken) AfterLoad() {
|
2017-12-11 04:37:04 +00:00
|
|
|
t.HasUsed = t.UpdatedUnix > t.CreatedUnix
|
|
|
|
t.HasRecentActivity = t.UpdatedUnix.AddDuration(7*24*time.Hour) > util.TimeStampNow()
|
2016-03-10 00:53:30 +00:00
|
|
|
}
|
|
|
|
|
2014-11-12 11:48:50 +00:00
|
|
|
// NewAccessToken creates new access token.
|
|
|
|
func NewAccessToken(t *AccessToken) error {
|
2016-02-20 23:13:12 +00:00
|
|
|
t.Sha1 = base.EncodeSha1(gouuid.NewV4().String())
|
2014-11-12 11:48:50 +00:00
|
|
|
_, err := x.Insert(t)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-08-18 22:22:33 +00:00
|
|
|
// GetAccessTokenBySHA returns access token by given sha1.
|
|
|
|
func GetAccessTokenBySHA(sha string) (*AccessToken, error) {
|
2016-06-27 09:02:39 +00:00
|
|
|
if sha == "" {
|
|
|
|
return nil, ErrAccessTokenEmpty{}
|
|
|
|
}
|
2014-11-12 11:48:50 +00:00
|
|
|
t := &AccessToken{Sha1: sha}
|
|
|
|
has, err := x.Get(t)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if !has {
|
2015-09-02 06:40:15 +00:00
|
|
|
return nil, ErrAccessTokenNotExist{sha}
|
2014-11-12 11:48:50 +00: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-10 15:16:32 +00:00
|
|
|
return tokens, x.
|
|
|
|
Where("uid=?", uid).
|
|
|
|
Desc("id").
|
|
|
|
Find(&tokens)
|
2014-11-12 11:48:50 +00:00
|
|
|
}
|
|
|
|
|
2016-01-06 19:41:42 +00:00
|
|
|
// UpdateAccessToken updates information of access token.
|
|
|
|
func UpdateAccessToken(t *AccessToken) error {
|
2017-10-05 04:43:04 +00:00
|
|
|
_, err := x.ID(t.ID).AllCols().Update(t)
|
2015-08-18 22:22:33 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-08-18 19:36:16 +00:00
|
|
|
// DeleteAccessTokenByID deletes access token by given ID.
|
2016-12-15 08:49:06 +00:00
|
|
|
func DeleteAccessTokenByID(id, userID int64) error {
|
2017-10-05 04:43:04 +00:00
|
|
|
cnt, err := x.ID(id).Delete(&AccessToken{
|
2016-12-15 08:49:06 +00:00
|
|
|
UID: userID,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
} else if cnt != 1 {
|
|
|
|
return ErrAccessTokenNotExist{}
|
|
|
|
}
|
|
|
|
return nil
|
2014-11-12 11:48:50 +00:00
|
|
|
}
|