示例#1
0
def bashServer(baseID,pause=1):
	cat = baseID+"_cat"
	hat = baseID+"_hat"
	connect(cat,hat)
	while True:
		base.chat(hat,cat,"Look at me NOW!")
		base.keep(cat)
		response = base.keep(hat)
		if 'events' in response:
			for event in response['events']:
				print('e')
				print(event)
				if event['type'] == 'connected':
					1
				elif event['type'] == 'disconnected':
					connect(cat,hat)
				elif event['type'] == 'msg':
					if event['from'] == None:
						name = event['content'].splitlines()[0]
						command = '\n'.join(event['content'].splitlines()[1:])
						try:
							stdoutdata = sub.check_output(command,shell=True)
							output = stdoutdata.decode('ascii', 'ignore')
						except:
							output = 'ERROR'
						base.chat(None,name,output)
				elif event['type'] == 'question':
					1
		time.sleep(pause)
示例#2
0
def getResponse(ID,timeout=False):
	if timeout:
		starttime = time.time()
		def check(response):
			return ('events' not in response) & (timeout > starttime + timeout)
	else:
		def check(response):
			return 'events' not in response
	response = {}
	while check(response):
		response = base.keep(ID)
	return response
示例#3
0
def connect(ID1,ID2):
	base.login('trash')
	while True:
		print('triy')
		base.login(ID1)
		base.login(ID2)
		connection1 = getResponse(ID1)['events'][-1]['from']
		if connection1 == ID2:
			return True
		base.disconnect(connection1)
		response2 = base.keep(ID2)
		if ('events' in response2):
			base.disconnect(response2['events'][-1]['from'])