aboutsummaryrefslogtreecommitdiff
path: root/internal/db/token.go
diff options
context:
space:
mode:
authorᴜɴᴋɴᴡᴏɴ <u@gogs.io>2020-04-11 01:25:19 +0800
committerGitHub <noreply@github.com>2020-04-11 01:25:19 +0800
commit62dda96159055ff9d485078f257445b964eb5220 (patch)
treea8bd161dc92c368bee0e6b58797e23278565cd8b /internal/db/token.go
parent5753d4cb87388c247e91eaf3ce641d309a45e760 (diff)
access_token: migrate to GORM and add tests (#6086)
* access_token: migrate to GORM * Add tests * Fix tests * Fix test clock
Diffstat (limited to 'internal/db/token.go')
-rw-r--r--internal/db/token.go81
1 files changed, 0 insertions, 81 deletions
diff --git a/internal/db/token.go b/internal/db/token.go
deleted file mode 100644
index afe747e0..00000000
--- a/internal/db/token.go
+++ /dev/null
@@ -1,81 +0,0 @@
-// 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 db
-
-import (
- "time"
-
- gouuid "github.com/satori/go.uuid"
- "xorm.io/xorm"
-
- "gogs.io/gogs/internal/db/errors"
- "gogs.io/gogs/internal/tool"
-)
-
-// AccessToken represents a personal access token.
-type AccessToken struct {
- ID int64
- UserID int64 `xorm:"uid INDEX" gorm:"COLUMN:uid"`
- Name string
- Sha1 string `xorm:"UNIQUE VARCHAR(40)"`
-
- Created time.Time `xorm:"-" gorm:"-" json:"-"`
- CreatedUnix int64
- Updated time.Time `xorm:"-" gorm:"-" json:"-"` // Note: Updated must below Created for AfterSet.
- UpdatedUnix int64
- HasRecentActivity bool `xorm:"-" gorm:"-" json:"-"`
- HasUsed bool `xorm:"-" gorm:"-" json:"-"`
-}
-
-func (t *AccessToken) BeforeInsert() {
- t.CreatedUnix = time.Now().Unix()
-}
-
-func (t *AccessToken) BeforeUpdate() {
- t.UpdatedUnix = time.Now().Unix()
-}
-
-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())
- }
-}
-
-// NewAccessToken creates new access token.
-func NewAccessToken(t *AccessToken) error {
- t.Sha1 = tool.SHA1(gouuid.NewV4().String())
- has, err := x.Get(&AccessToken{
- UserID: t.UserID,
- Name: t.Name,
- })
- if err != nil {
- return err
- } else if has {
- return errors.AccessTokenNameAlreadyExist{Name: t.Name}
- }
-
- _, err = x.Insert(t)
- return err
-}
-
-// ListAccessTokens returns a list of access tokens belongs to given user.
-func ListAccessTokens(uid int64) ([]*AccessToken, error) {
- tokens := make([]*AccessToken, 0, 5)
- return tokens, x.Where("uid=?", uid).Desc("id").Find(&tokens)
-}
-
-// DeleteAccessTokenOfUserByID deletes access token by given ID.
-func DeleteAccessTokenOfUserByID(userID, id int64) error {
- _, err := x.Delete(&AccessToken{
- ID: id,
- UserID: userID,
- })
- return err
-}