2014-11-12 17:18:50 +05:30
|
|
|
// 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-03-10 06:23:30 +05:30
|
|
|
"github.com/go-xorm/xorm"
|
2016-02-21 04:43:12 +05:30
|
|
|
gouuid "github.com/satori/go.uuid"
|
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/base"
|
2014-11-12 17:18:50 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
// AccessToken represents a personal access token.
|
|
|
|
type AccessToken struct {
|
2016-03-10 06:23:30 +05:30
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
UID int64 `xorm:"INDEX"`
|
|
|
|
Name string
|
|
|
|
Sha1 string `xorm:"UNIQUE VARCHAR(40)"`
|
|
|
|
|
|
|
|
Created time.Time `xorm:"-"`
|
2017-09-13 10:48:22 +05:30
|
|
|
CreatedUnix int64 `xorm:"INDEX created"`
|
2016-03-10 06:23:30 +05:30
|
|
|
Updated time.Time `xorm:"-"` // Note: Updated must below Created for AfterSet.
|
2017-09-13 10:48:22 +05:30
|
|
|
UpdatedUnix int64 `xorm:"INDEX updated"`
|
2017-01-06 20:44:33 +05:30
|
|
|
HasRecentActivity bool `xorm:"-"`
|
|
|
|
HasUsed bool `xorm:"-"`
|
2014-11-12 17:18:50 +05:30
|
|
|
}
|
|
|
|
|
2016-11-25 13:33:52 +05:30
|
|
|
// AfterSet is invoked from XORM after setting the value of a field of this object.
|
2016-03-10 06:23:30 +05:30
|
|
|
func (t *AccessToken) AfterSet(colName string, _ xorm.Cell) {
|
|
|
|
switch colName {
|
|
|
|
case "created_unix":
|
|
|
|
t.Created = time.Unix(t.CreatedUnix, 0).Local()
|
|
|
|
case "updated_unix":
|
|
|
|
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 17:18:50 +05:30
|
|
|
// NewAccessToken creates new access token.
|
|
|
|
func NewAccessToken(t *AccessToken) error {
|
2016-02-21 04:43:12 +05:30
|
|
|
t.Sha1 = base.EncodeSha1(gouuid.NewV4().String())
|
2014-11-12 17:18:50 +05:30
|
|
|
_, err := x.Insert(t)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-08-19 03:52:33 +05:30
|
|
|
// GetAccessTokenBySHA returns access token by given sha1.
|
|
|
|
func GetAccessTokenBySHA(sha string) (*AccessToken, error) {
|
2016-06-27 14:32:39 +05:30
|
|
|
if sha == "" {
|
|
|
|
return nil, ErrAccessTokenEmpty{}
|
|
|
|
}
|
2014-11-12 17:18:50 +05:30
|
|
|
t := &AccessToken{Sha1: sha}
|
|
|
|
has, err := x.Get(t)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if !has {
|
2015-09-02 12:10:15 +05:30
|
|
|
return nil, ErrAccessTokenNotExist{sha}
|
2014-11-12 17:18:50 +05:30
|
|
|
}
|
|
|
|
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 20:46:32 +05:30
|
|
|
return tokens, x.
|
|
|
|
Where("uid=?", uid).
|
|
|
|
Desc("id").
|
|
|
|
Find(&tokens)
|
2014-11-12 17:18:50 +05:30
|
|
|
}
|
|
|
|
|
2016-01-07 01:11:42 +05:30
|
|
|
// UpdateAccessToken updates information of access token.
|
|
|
|
func UpdateAccessToken(t *AccessToken) error {
|
2015-08-19 03:52:33 +05:30
|
|
|
_, err := x.Id(t.ID).AllCols().Update(t)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-08-19 01:06:16 +05:30
|
|
|
// DeleteAccessTokenByID deletes access token by given ID.
|
2016-12-15 14:19:06 +05:30
|
|
|
func DeleteAccessTokenByID(id, userID int64) error {
|
|
|
|
cnt, err := x.Id(id).Delete(&AccessToken{
|
|
|
|
UID: userID,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
} else if cnt != 1 {
|
|
|
|
return ErrAccessTokenNotExist{}
|
|
|
|
}
|
|
|
|
return nil
|
2014-11-12 17:18:50 +05:30
|
|
|
}
|