gitea/models/access.go

63 lines
1.5 KiB
Go
Raw Normal View History

2014-02-18 00:38: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.
2014-02-17 16:57:23 +01:00
package models
import (
"strings"
"time"
2014-04-05 00:55:17 +02:00
"github.com/lunny/xorm"
2014-02-17 16:57:23 +01:00
)
// Access types.
2014-02-17 16:57:23 +01:00
const (
2014-02-18 00:38:50 +01:00
AU_READABLE = iota + 1
AU_WRITABLE
2014-02-17 16:57:23 +01:00
)
2014-03-27 16:37:33 +01:00
// Access represents the accessibility of user to repository.
2014-02-17 16:57:23 +01:00
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"`
}
// AddAccess adds new access record.
2014-02-17 16:57:23 +01:00
func AddAccess(access *Access) error {
2014-03-30 22:01:50 +02:00
access.UserName = strings.ToLower(access.UserName)
access.RepoName = strings.ToLower(access.RepoName)
2014-02-17 16:57:23 +01:00
_, err := orm.Insert(access)
return err
}
2014-04-03 21:50:55 +02:00
// UpdateAccess updates access information.
func UpdateAccess(access *Access) error {
access.UserName = strings.ToLower(access.UserName)
access.RepoName = strings.ToLower(access.RepoName)
_, err := orm.Id(access.Id).Update(access)
return err
}
2014-04-05 00:55:17 +02:00
// UpdateAccess updates access information with session for rolling back.
func UpdateAccessWithSession(sess *xorm.Session, access *Access) error {
if _, err := sess.Id(access.Id).Update(access); err != nil {
sess.Rollback()
return err
}
return nil
}
2014-03-27 16:37:33 +01:00
// HasAccess returns true if someone can read or write to given repository.
2014-02-18 00:38:50 +01:00
func HasAccess(userName, repoName string, mode int) (bool, error) {
return orm.Get(&Access{
Id: 0,
UserName: strings.ToLower(userName),
RepoName: strings.ToLower(repoName),
Mode: mode,
})
2014-02-17 16:57:23 +01:00
}