aboutsummaryrefslogtreecommitdiff
path: root/models/access.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/access.go')
-rw-r--r--models/access.go41
1 files changed, 41 insertions, 0 deletions
diff --git a/models/access.go b/models/access.go
new file mode 100644
index 00000000..36d9405f
--- /dev/null
+++ b/models/access.go
@@ -0,0 +1,41 @@
+// 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 (
+ "strings"
+ "time"
+)
+
+// Access types.
+const (
+ AU_READABLE = iota + 1
+ AU_WRITABLE
+)
+
+// Access represents the accessibility of user and repository.
+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.
+func AddAccess(access *Access) error {
+ _, err := orm.Insert(access)
+ return err
+}
+
+// HasAccess returns true if someone can read or write given repository.
+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,
+ })
+}