2014-11-12 14:48:50 +03: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-03-10 03:53:30 +03:00
"github.com/go-xorm/xorm"
2016-02-21 02:13:12 +03:00
gouuid "github.com/satori/go.uuid"
2014-11-12 14:48:50 +03:00
"github.com/gogits/gogs/modules/base"
)
// AccessToken represents a personal access token.
type AccessToken struct {
2016-03-10 03:53:30 +03:00
ID int64 ` xorm:"pk autoincr" `
UID int64 ` xorm:"INDEX" `
Name string
Sha1 string ` xorm:"UNIQUE VARCHAR(40)" `
Created time . Time ` xorm:"-" `
CreatedUnix int64
Updated time . Time ` xorm:"-" ` // Note: Updated must below Created for AfterSet.
UpdatedUnix int64
2014-11-12 14:48:50 +03:00
HasRecentActivity bool ` xorm:"-" `
HasUsed bool ` xorm:"-" `
}
2016-03-10 03:53:30 +03:00
func ( t * AccessToken ) BeforeInsert ( ) {
t . CreatedUnix = time . Now ( ) . UTC ( ) . Unix ( )
}
func ( t * AccessToken ) BeforeUpdate ( ) {
t . UpdatedUnix = time . Now ( ) . UTC ( ) . 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 ( ) )
}
}
2014-11-12 14:48:50 +03:00
// NewAccessToken creates new access token.
func NewAccessToken ( t * AccessToken ) error {
2016-02-21 02:13:12 +03:00
t . Sha1 = base . EncodeSha1 ( gouuid . NewV4 ( ) . String ( ) )
2014-11-12 14:48:50 +03:00
_ , err := x . Insert ( t )
return err
}
2015-08-19 01:22:33 +03:00
// GetAccessTokenBySHA returns access token by given sha1.
func GetAccessTokenBySHA ( sha string ) ( * AccessToken , error ) {
2014-11-12 14:48:50 +03:00
t := & AccessToken { Sha1 : sha }
has , err := x . Get ( t )
if err != nil {
return nil , err
} else if ! has {
2015-09-02 09:40:15 +03:00
return nil , ErrAccessTokenNotExist { sha }
2014-11-12 14:48:50 +03: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-03-10 03:53:30 +03:00
return tokens , x . Where ( "uid=?" , uid ) . Desc ( "id" ) . Find ( & tokens )
2014-11-12 14:48:50 +03:00
}
2016-01-06 22:41:42 +03:00
// UpdateAccessToken updates information of access token.
func UpdateAccessToken ( t * AccessToken ) error {
2015-08-19 01:22:33 +03:00
_ , err := x . Id ( t . ID ) . AllCols ( ) . Update ( t )
return err
}
2015-08-18 22:36:16 +03:00
// DeleteAccessTokenByID deletes access token by given ID.
func DeleteAccessTokenByID ( id int64 ) error {
2014-11-12 14:48:50 +03:00
_ , err := x . Id ( id ) . Delete ( new ( AccessToken ) )
return err
}