| local frame = require'websocket.frame' |
| local handshake = require'websocket.handshake' |
| local tools = require'websocket.tools' |
| local ssl = require'ssl' |
| local tinsert = table.insert |
| local tconcat = table.concat |
|
|
| local receive = function(self) |
| if self.state ~= 'OPEN' and not self.is_closing then |
| return nil,nil,false,1006,'wrong state' |
| end |
| local first_opcode |
| local frames |
| local bytes = 3 |
| local encoded = '' |
| local clean = function(was_clean,code,reason) |
| self.state = 'CLOSED' |
| self:sock_close() |
| if self.on_close then |
| self:on_close() |
| end |
| return nil,nil,was_clean,code,reason or 'closed' |
| end |
| while true do |
| local chunk,err = self:sock_receive(bytes) |
| if err then |
| return clean(false,1006,err) |
| end |
| encoded = encoded..chunk |
| local decoded,fin,opcode,_,masked = frame.decode(encoded) |
| if not self.is_server and masked then |
| return clean(false,1006,'Websocket receive failed: frame was not masked') |
| end |
| if decoded then |
| if opcode == frame.CLOSE then |
| if not self.is_closing then |
| local code,reason = frame.decode_close(decoded) |
| |
| local msg = frame.encode_close(code) |
| local encoded = frame.encode(msg,frame.CLOSE,not self.is_server) |
| local n,err = self:sock_send(encoded) |
| if n == #encoded then |
| return clean(true,code,reason) |
| else |
| return clean(false,code,err) |
| end |
| else |
| return decoded,opcode |
| end |
| end |
| if not first_opcode then |
| first_opcode = opcode |
| end |
| if not fin then |
| if not frames then |
| frames = {} |
| elseif opcode ~= frame.CONTINUATION then |
| return clean(false,1002,'protocol error') |
| end |
| bytes = 3 |
| encoded = '' |
| tinsert(frames,decoded) |
| elseif not frames then |
| return decoded,first_opcode |
| else |
| tinsert(frames,decoded) |
| return tconcat(frames),first_opcode |
| end |
| else |
| assert(type(fin) == 'number' and fin > 0) |
| bytes = fin |
| end |
| end |
| assert(false,'never reach here') |
| end |
|
|
| local send = function(self,data,opcode) |
| if self.state ~= 'OPEN' then |
| return nil,false,1006,'wrong state' |
| end |
| local encoded = frame.encode(data,opcode or frame.TEXT,not self.is_server) |
| local n,err = self:sock_send(encoded) |
| if n ~= #encoded then |
| return nil,self:close(1006,err) |
| end |
| return true |
| end |
|
|
| local close = function(self,code,reason) |
| if self.state ~= 'OPEN' then |
| return false,1006,'wrong state' |
| end |
| if self.state == 'CLOSED' then |
| return false,1006,'wrong state' |
| end |
| local msg = frame.encode_close(code or 1000,reason) |
| local encoded = frame.encode(msg,frame.CLOSE,not self.is_server) |
| local n,err = self:sock_send(encoded) |
| local was_clean = false |
| local code = 1005 |
| local reason = '' |
| if n == #encoded then |
| self.is_closing = true |
| local rmsg,opcode = self:receive() |
| if rmsg and opcode == frame.CLOSE then |
| code,reason = frame.decode_close(rmsg) |
| was_clean = true |
| end |
| else |
| reason = err |
| end |
| self:sock_close() |
| if self.on_close then |
| self:on_close() |
| end |
| self.state = 'CLOSED' |
| return was_clean,code,reason or '' |
| end |
|
|
| local connect = function(self,ws_url,ws_protocol,ssl_params) |
| if self.state ~= 'CLOSED' then |
| return nil,'wrong state',nil |
| end |
| local protocol,host,port,uri = tools.parse_url(ws_url) |
| |
| local _,err = self:sock_connect(host,port) |
| if err then |
| return nil,err,nil |
| end |
| if protocol == 'wss' then |
| self.sock = ssl.wrap(self.sock, ssl_params) |
| self.sock:dohandshake() |
| elseif protocol ~= "ws" then |
| return nil, 'bad protocol' |
| end |
| local ws_protocols_tbl = {''} |
| if type(ws_protocol) == 'string' then |
| ws_protocols_tbl = {ws_protocol} |
| elseif type(ws_protocol) == 'table' then |
| ws_protocols_tbl = ws_protocol |
| end |
| local key = tools.generate_key() |
| local req = handshake.upgrade_request |
| { |
| key = key, |
| host = host, |
| port = port, |
| protocols = ws_protocols_tbl, |
| uri = uri |
| } |
| local n,err = self:sock_send(req) |
| if n ~= #req then |
| return nil,err,nil |
| end |
| local resp = {} |
| repeat |
| local line,err = self:sock_receive('*l') |
| resp[#resp+1] = line |
| if err then |
| return nil,err,nil |
| end |
| until line == '' |
| local response = table.concat(resp,'\r\n') |
| local headers = handshake.http_headers(response) |
| local expected_accept = handshake.sec_websocket_accept(key) |
| if headers['sec-websocket-accept'] ~= expected_accept then |
| local msg = 'Websocket Handshake failed: Invalid Sec-Websocket-Accept (expected %s got %s)' |
| return nil,msg:format(expected_accept,headers['sec-websocket-accept'] or 'nil'),headers |
| end |
| self.state = 'OPEN' |
| return true,headers['sec-websocket-protocol'],headers |
| end |
|
|
| local extend = function(obj) |
| assert(obj.sock_send) |
| assert(obj.sock_receive) |
| assert(obj.sock_close) |
|
|
| assert(obj.is_closing == nil) |
| assert(obj.receive == nil) |
| assert(obj.send == nil) |
| assert(obj.close == nil) |
| assert(obj.connect == nil) |
|
|
| if not obj.is_server then |
| assert(obj.sock_connect) |
| end |
|
|
| if not obj.state then |
| obj.state = 'CLOSED' |
| end |
|
|
| obj.receive = receive |
| obj.send = send |
| obj.close = close |
| obj.connect = connect |
|
|
| return obj |
| end |
|
|
| return { |
| extend = extend |
| } |
|
|