File: client.py

package info (click to toggle)
mongrel2 1.12.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,976 kB
  • sloc: ansic: 39,083; python: 2,833; sql: 1,555; sh: 467; makefile: 360; asm: 189; yacc: 145; php: 73; awk: 28; sed: 5
file content (56 lines) | stat: -rw-r--r-- 1,033 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python

import sys
import socket
import json
from base64 import b64decode

try:
    import json
except:
    import simplejson as json

import getpass

host = sys.argv[1]
port = int(sys.argv[2])

def read_msg():
    reply = ""

    ch = CONN.recv(1)
    while ch != '\0':
        reply += ch
        ch = CONN.recv(1)

    return json.loads(b64decode(reply))

def post_msg(data):
    msg = '@bbs %s\x00' % (json.dumps({'type': 'msg', 'msg': data}))
    CONN.send(msg)

print "Connecting to %s:%d" % (host, port)
CONN = socket.socket()
CONN.connect((host, port))
USER = getpass.getuser()

post_msg("connect")

while True:
    try:
        reply = read_msg()

        if 'msg' in reply and reply['msg']:
            print reply['msg']

        if reply['type'] == "prompt":
            msg = raw_input(reply['pchar'])
            post_msg(msg)

        if reply['type'] == 'exit':
            sys.exit(0)

    except EOFError:
        print "\nBye."
        break