2014-02-18 03:38:50 +04: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 19:57:23 +04:00
package models
import (
"strings"
"time"
2014-04-05 02:55:17 +04:00
"github.com/lunny/xorm"
2014-02-17 19:57:23 +04:00
)
2014-03-17 22:03:58 +04:00
// Access types.
2014-02-17 19:57:23 +04:00
const (
2014-02-18 03:38:50 +04:00
AU_READABLE = iota + 1
AU_WRITABLE
2014-02-17 19:57:23 +04:00
)
2014-03-27 19:37:33 +04:00
// Access represents the accessibility of user to repository.
2014-02-17 19:57:23 +04: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" `
}
2014-03-17 22:03:58 +04:00
// AddAccess adds new access record.
2014-02-17 19:57:23 +04:00
func AddAccess ( access * Access ) error {
2014-03-31 00:01:50 +04:00
access . UserName = strings . ToLower ( access . UserName )
access . RepoName = strings . ToLower ( access . RepoName )
2014-02-17 19:57:23 +04:00
_ , err := orm . Insert ( access )
return err
}
2014-04-03 23:50:55 +04: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 02:55:17 +04: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 19:37:33 +04:00
// HasAccess returns true if someone can read or write to given repository.
2014-02-18 03:38:50 +04:00
func HasAccess ( userName , repoName string , mode int ) ( bool , error ) {
2014-04-12 05:47:39 +04:00
access := & Access {
2014-02-18 03:38:50 +04:00
UserName : strings . ToLower ( userName ) ,
RepoName : strings . ToLower ( repoName ) ,
2014-04-12 05:47:39 +04:00
}
has , err := orm . Get ( access )
if err != nil {
return false , err
} else if ! has {
return false , nil
} else if mode > access . Mode {
return false , nil
}
return true , nil
2014-02-17 19:57:23 +04:00
}