本文整理汇总了Python中Auth.have_manage_auth方法的典型用法代码示例。如果您正苦于以下问题:Python Auth.have_manage_auth方法的具体用法?Python Auth.have_manage_auth怎么用?Python Auth.have_manage_auth使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Auth
的用法示例。
在下文中一共展示了Auth.have_manage_auth方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: tcp_link
# 需要导入模块: import Auth [as 别名]
# 或者: from Auth import have_manage_auth [as 别名]
#.........这里部分代码省略.........
break
elif query == 'create':
filename = msg['filename']
error = Files.create_file(filename)
reply['error'] = error
if error == 0:
Auth.change(filename, name_list[skt], 2, name_list[skt])
send(skt, json.dumps(reply))
elif query == 'edit':
filename = msg['filename']
if not Files.exist(filename):
reply['error'] = 1
send(skt, json.dumps(reply))
continue
if not Auth.have_edit_auth(filename, name_list[skt]):
reply['error'] = 2
send(skt, json.dumps(reply))
continue
reply['error'] = 0
send(skt, json.dumps(reply))
reply.clear()
reply['type'] = 'edit_content'
reply['filename'] = 'filename'
reply['isend'] = 1
content = dict()
content['oldRange'] = {'start': {'row': 0, 'column': 0}, 'end': {'row': 0, 'column': 0}}
content['oldText'] = ''
(file_content, r, c) = Files.edit_file(filename)
content['newText'] = file_content
content['newRange'] = {'start': {'row': 0, 'column': 0}, 'end': {'row': r, 'column': c}}
reply['content'] = content
send(skt, json.dump(reply))
Files.add_editor(filename, skt)
elif query == 'upload':
filename = msg['filename']
error = Files.create_file(filename)
reply['error'] = error
send(skt, json.dumps(reply))
if error == 1:
continue
upload_filename = filename
Auth.change(filename, name_list[sock], 2, name_list[skt])
elif query == 'upload_content':
if upload_filename == '':
continue
Files.up_file(upload_filename, msg['content']['newText'])
upload_filename = ''
pass
elif query == 'change_auth':
filename = msg['filename']
other_name = msg['other_name']
if not Files.exist(filename):
reply['error'] = 1
send(skt, json.dumps(reply))
continue
if not Auth.have_manage_auth(filename, other_name):
reply['error'] = 2
send(skt, json.dumps(reply))
continue
reply['error'] = 0
Auth.change(filename, other_name, msg['auth'])
send(skt, json.dumps(reply))
pass
elif query == 'rm':
filename = msg['filename']
if not Files.exist(filename):
reply['error'] = 1
send(skt, json.dumps(reply))
continue
if not Auth.have_manage_auth(filename, name_list[skt]):
reply['error'] = 2
send(skt, json.dumps(reply))
continue
reply['error'] = 0
Files.delete_file(filename)
send(skt, json.dumps(reply))
elif query == 'ls':
reply['list'] = Auth.get_edit_list(name_list[skt])
send(skt, json.dumps(reply))
pass
elif query == 'close':
Files.del_editor(msg['filename'], skt)
elif query == 'modify':
modify = msg['content']
filename = msg['filename']
send_to_all(skt, json.dumps(modify), filename)
Files.change_file(filename, modify)
skt.close()
print('Connection from %s:%s closed.' % addr)