From 5f8a4d25ea9034cadc8ae19a2ffab788f62cc56c Mon Sep 17 00:00:00 2001 From: RaNaN Date: Tue, 27 Sep 2011 16:24:03 +0200 Subject: reworked authorization, now works on api level --- module/database/UserDatabase.py | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) (limited to 'module/database') diff --git a/module/database/UserDatabase.py b/module/database/UserDatabase.py index f888e219e..e74399c11 100644 --- a/module/database/UserDatabase.py +++ b/module/database/UserDatabase.py @@ -16,29 +16,11 @@ @author: mkaay """ -from DatabaseBackend import DatabaseBackend -from DatabaseBackend import style - from hashlib import sha1 import random -class PERMS: - ALL = 0 # requires no permission, but login - ADD = 1 # can add packages - DELETE = 2 # can delete packages - STATUS = 4 # see and change server status - SEE_DOWNLOADS = 16 # see queue and collector / modify downloads - DOWNLOAD = 32 # can download from webinterface - SETTINGS = 64 # can access settings - ACCOUNTS = 128 # can access accounts - -class ROLE: - ADMIN = 0 #admin has all permissions implicit - USER = 1 - -def has_permission(current, perms): - # bytewise or perms before if needed - return perms == (current & perms) +from DatabaseBackend import DatabaseBackend +from DatabaseBackend import style class UserMethods(): @style.queue -- cgit v1.2.3