mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
569 B
29 lines
569 B
package models |
|
|
|
import ( |
|
"strings" |
|
"time" |
|
) |
|
|
|
const ( |
|
Readable = iota + 1 |
|
Writable |
|
) |
|
|
|
type Access struct { |
|
Id int64 |
|
UserName string `xorm:"unique(s)"` |
|
RepoName string `xorm:"unique(s)"` |
|
Mode int `xorm:"unique(s)"` |
|
Created time.Time `xorm:"created"` |
|
} |
|
|
|
func AddAccess(access *Access) error { |
|
_, err := orm.Insert(access) |
|
return err |
|
} |
|
|
|
// if one user can read or write one repository |
|
func HasAccess(userName, repoName, mode string) (bool, error) { |
|
return orm.Get(&Access{0, strings.ToLower(userName), strings.ToLower(repoName), mode}) |
|
}
|
|
|