summaryrefslogtreecommitdiff
path: root/src/local/server-tools/rz-user
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2015-04-10 18:00:26 +0200
committerAlon Levy <alon@pobox.com>2015-04-10 18:14:47 +0200
commit30bf7c4e6ab0e8521d3acdfceb3f4f37cee44abf (patch)
tree0c8a9f7944cded35bdc8769c3d072c961187a7b0 /src/local/server-tools/rz-user
parent5ecd636b8104cbc7c20c68afedaaba68d0298d68 (diff)
server tools: move to separate dir, rename, add helper rz.py to hide ugly import details
Diffstat (limited to 'src/local/server-tools/rz-user')
-rwxr-xr-xsrc/local/server-tools/rz-user105
1 files changed, 105 insertions, 0 deletions
diff --git a/src/local/server-tools/rz-user b/src/local/server-tools/rz-user
new file mode 100755
index 00000000..ebdcd9f8
--- /dev/null
+++ b/src/local/server-tools/rz-user
@@ -0,0 +1,105 @@
+#!/bin/env python
+
+import argparse
+import os
+import pickle
+import re
+import sys
+
+# must be before any rhizi import
+import rz
+
+from crypt_util import hash_pw
+from rz_server import init_config
+from rz_user_db import User_Account, User_DB
+
+def init_pw_db(cfg, user_pw_list_file, user_db_path):
+
+ def add_user_login(first_name, last_name,
+ rz_username, email_address, pw_plaintext):
+ pw_hash = hash_pw(str(pw_plaintext), salt)
+ u_account = User_Account(first_name=first_name,
+ last_name=last_name,
+ rz_username=rz_username,
+ email_address=email_address,
+ pw_hash=pw_hash,
+ role_set=['user'])
+
+ print('user_db: added entry: user: %s, pw: %s...' % (u, pw_db[u][:5]))
+
+ if os.path.exists(user_db_path):
+ print('user_db_path already exists, aborting: ' + user_db_path)
+ return
+
+ user_db = User_DB(db_path=db_path)
+ user_db.init(mode='c')
+
+ salt = cfg.secret_key
+ assert len(salt) > 8, 'server-key not found or too short'
+ print('using config secret_key for salt generation: ' + salt[:3] + '...')
+
+ u_count = 0
+ with open(user_pw_list_file, 'r') as f:
+ for line in f:
+ if re.match('(^#)|(\s+$)', line):
+ continue
+
+ kv_arr = line.split(',')
+ if 5 != len(kv_arr):
+ raise Exception('failed to parse first-name,last-name,email,user,pw line: ' + line)
+
+ first_name, last_name, rz_username, email_address, pw_plaintext = map(
+ str.strip, kv_arr)
+ add_user_login(first_name=first_name,
+ last_name=last_name,
+ rz_username=rz_username,
+ email_address=email_address,
+ pw_plaintext=pw_plaintext)
+ print('added user: u: ' + rz_username)
+ u_count = u_count + 1
+ print('user_db generated: path: %s, user-count: %d' % (user_db_path, u_count))
+
+def open_existing_user_db(user_db_path):
+ user_db = User_DB(db_path=user_db_path)
+ user_db.init(mode='w')
+ return user_db
+
+def role_add(user_db_path, user_email, role):
+ user_db = open_existing_user_db(user_db_path)
+ uid, u = user_db.lookup_user__by_email_address(user_email)
+ user_db.user_add_role(uid, role)
+
+def role_rm(user_db_path, user_email, role):
+ user_db = open_existing_user_db(user_db_path)
+ uid, u = user_db.lookup_user__by_email_address(user_email)
+ user_db.user_rm_role(uid, role)
+
+def main():
+ p = argparse.ArgumentParser(description='rz-cli tool')
+ p.add_argument('--config-dir', help='path to Rhizi config dir', default='res/etc')
+ p.add_argument('--user-db-path', help='path to user_db (ignore config)')
+ p.add_argument('--init-user-db', help='init user db', action='store_const', const=True)
+ p.add_argument('--user-db-init-file', help='user_db db initialization file in \'user,pw\' format')
+ p.add_argument('--email', help='email of user to operate on')
+ p.add_argument('--role-add', help='role to add to user, i.e. admin or user')
+ p.add_argument('--role-rm', help='role to remove from user')
+
+ args = p.parse_args()
+ if None == args.user_db_path:
+ cfg = init_config(args.config_dir)
+ user_db_path = cfg.user_db_path
+ else:
+ user_db_path = args.user_db_path
+
+ if args.init_user_db:
+ init_pw_db(cfg, args.user_db_init_file, user_db_path)
+ exit(0)
+
+ if args.email:
+ if args.role_add:
+ role_add(user_db_path, args.email, args.role_add)
+ if args.role_rm:
+ role_rm(user_db_path, args.email, args.role_rm)
+
+if __name__ == '__main__':
+ main()