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