user upadate: add/revoke project access
[osm/LW-UI.git] / lib / osm / osmclient / clientv2.py
index fa4117e..414019e 100644 (file)
@@ -24,10 +24,13 @@ import StringIO
 from lib.util import Util
 import hashlib
 import os
+from requests.packages.urllib3.exceptions import InsecureRequestWarning
 
-logging.basicConfig(level=logging.DEBUG)
-log = logging.getLogger('helper.py')
+requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
 
+logging.basicConfig(level=logging.INFO)
+log = logging.getLogger('helper.py')
+logging.getLogger("urllib3").setLevel(logging.INFO)
 
 class Client(object):
     def __init__(self):
@@ -113,17 +116,16 @@ class Client(object):
                    'Authorization': 'Bearer {}'.format(token['id'])}
 
         _url = "{0}/admin/v1/users/{1}".format(self._base_path, id)
-        print _url
-        print user_data
         try:
-            r = requests.post(_url, json=user_data, verify=False, headers=headers)
+            r = requests.patch(_url, json=user_data, verify=False, headers=headers)
         except Exception as e:
             log.exception(e)
             result['data'] = str(e)
             return result
-        if r.status_code == requests.codes.created:
+        if r.status_code == requests.codes.no_content:
             result['error'] = False
-        result['data'] = Util.json_loads_byteified(r.text)
+        else:
+            result['data'] = Util.json_loads_byteified(r.text)
         return result
 
     def user_delete(self, token, id):