summaryrefslogtreecommitdiff
path: root/web-static/socket.html
blob: af7376321ade71ef5bb9636dc763ab6a497084d1 (plain)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE HTML>
<html>
  <head>
    <title>rhimportd Websocket Testclient</title>
    <meta charset="utf-8">
    <style type="text/css">
      body {
        background-color: #555;
      }

      div.data {
        background-color: white;
        border: 1px solid;
        padding: 1em;
        font-family: monospace;
        margin-top: 1em;
        margin-bottom: 1em;
      }

      td {
        text-align: right;
      }
    </style>
    <script src="jquery.min.js"></script>
    <script type="text/javascript">
      function SessionList(req) {
        this.req = req
        this.sock = new WebSocket("ws://localhost:4080/public/socket");
        this.sock_onmessage = function (event) {
          $('#listmsg').text(event.data);
          this.sock.close();
        }
        this.sock.onmessage = this.sock_onmessage.bind(this);

        this.sock_onopen = function() {
          this.sock.send(JSON.stringify(this.req));
        }
        this.sock.onopen = this.sock_onopen.bind(this);
      }

      var sl;

      function list() {
        req = { COMMAND: "list",
                LOGIN_NAME: $('#username').val(),
	              PASSWORD: $('#token').val()};
        sl = new SessionList(req);
      }


      function Session(req) {
        this.req = req
        $('#rawmsg').text("");
        this.sock = new WebSocket("ws://localhost:4080/public/socket");
        this.sock_onmessage = function (event) {
          $('#rawmsg').append(event.data + "\n");
          msg = $.parseJSON(event.data)
          switch (msg.TYPE) {
            case "ack":
               $('#sessionid').val(msg.ID);
               buttonsRunning();
               break;
            case "done":
            case "error":
               this.sock.close();
               init();
               break;
          }
        }
        this.sock.onmessage = this.sock_onmessage.bind(this);

        this.sock_onopen = function() {
          this.sock.send(JSON.stringify(this.req));
        }
        this.sock.onopen = this.sock_onopen.bind(this);

        this.sendbinmsg = function(data) {
          this.sock.send(data);
        }

        this.cancel = function() {
          this.sock.send(JSON.stringify({COMMAND: "cancel"}));
        }
      }

      var s;

      function run() {
        req = { COMMAND: "new",
                TIMEOUT: 200,
                REFERENCE_ID: $('#refid').val(),
                LOGIN_NAME: $('#username').val(),
	              PASSWORD: $('#token').val(),
	              SHOW_ID: 10002,
	              CLEAR_SHOW_CARTS: true,
	              SOURCE_URI: $('#source').val() };
        s = new Session(req);
      }

      function reconnect() {
        req = { COMMAND: "reconnect",
                LOGIN_NAME: $('#username').val(),
	              ID: $('#sessionid').val() };
        s = new Session(req);
      }

      function sendbinmsg() {
        var byteArray = new Uint8Array(40*1024);
        for (var x = 0; x < byteArray.length; x++){
          byteArray[x] = x
        }
        s.sendbinmsg(new Blob([byteArray], {type: "application/octet-stream"}));
      }

      function cancel() {
        s.cancel();
      }

      function detach() {
        s.sock.close();
        buttonsIdle();
      }

      function buttonsIdle() {
        $('#buttonrun').removeAttr('disabled')
        $('#buttonreconnect').removeAttr('disabled')
        $('#buttonbinmsg').attr('disabled','disabled')
        $('#buttondetach').attr('disabled','disabled')
        $('#buttoncancel').attr('disabled','disabled')
      }

      function buttonsRunning() {
        $('#buttonrun').attr('disabled','disabled')
        $('#buttonreconnect').attr('disabled','disabled')
        $('#buttonbinmsg').removeAttr('disabled')
        $('#buttondetach').removeAttr('disabled')
        $('#buttoncancel').removeAttr('disabled')
      }

      function init() {
        $('#sessionid').val("");
        buttonsIdle();
      }
    </script>
  </head>
  <body onload="init()">

    <h1>rhimportd Websocket Testclient</h1>

    <div>
      <table>
        <tr><td>Username</td><td><input id="username" type="text" size="20" value="heslinki" /></td></tr>
        <tr><td>Token</td><td><input id="token" type="text" size="20" /></td></tr>
      </table>
    </div>

    <div>
      <button id="buttonlist" onclick="list()">list</button>
      <div id="listmsg" class="data"></div>
    </div>

    <div>
      <input id="source" type="text" size="30" value="fake://10000">
      <input id="refid" type="text" size="15" value="test-reference-id">
      <button id="buttonrun" onclick="run()">start</button>
      <button id="buttonbinmsg" onclick="sendbinmsg()">send binary message</button>
      <button id="buttondetach" onclick="detach()">detach</button>
      <input id="sessionid" type="text" size="45">
      <button id="buttonreconnect" onclick="reconnect()">reconnect</button>
      <button id="buttoncancel" onclick="cancel()">cancel</button>
      <div id="rawmsg" class="data"></div>
    </div>
  </body>
</html>