Change order of bits in list of tuples to return ACLS in same
authorJonathan Reed <jdreed@infinite-loop.mit.edu>
Fri, 13 Nov 2009 22:04:41 +0000 (17:04 -0500)
committerJonathan Reed <jdreed@infinite-loop.mit.edu>
Fri, 13 Nov 2009 22:08:26 +0000 (17:08 -0500)
format as AFS (rlidwka vs rwildka).  Add ability to turn a rights
string into a canonical name

Signed-off-by: Jonathan Reed <jdreed@mit.edu>

afs/acl.py

index c49f374..a5293bd 100644 (file)
@@ -11,12 +11,14 @@ _canonical = {
     "none": "",
 }
 
+_reverseCanonical = dict((y, x) for (x, y) in _canonical.iteritems())
+
 _charBitAssoc = [
     ('r', READ),
-    ('w', WRITE),
-    ('i', INSERT),
     ('l', LOOKUP),
+    ('i', INSERT),
     ('d', DELETE),
+    ('w', WRITE),
     ('k', LOCK),
     ('a', ADMINISTER),
     ('A', USR0),
@@ -32,6 +34,13 @@ _charBitAssoc = [
 _char2bit = dict(_charBitAssoc)
 
 
+def rightsToEnglish(s):
+    """Turns a rlwidwka string into a canonical name if possible"""
+    if s in _reverseCanonical:
+        return _reverseCanonical[s]
+    else:
+        return ''
+
 def readRights(s):
     """Canonicalizes string rights to bitmask"""
     if s in _canonical: s = _canonical[s]