aboutsummaryrefslogtreecommitdiffstats
path: root/WebApp.st
blob: 694b5392aa0dd3c5487877758617eed6651a677b (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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
"
 (C) 2010 by Holger Hans Peter Freyther
 All Rights Reserved

 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU Affero General Public License as
 published by the Free Software Foundation, either version 3 of the
 License, or (at your option) any later version.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU Affero General Public License for more details.

 You should have received a copy of the GNU Affero General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
"

PackageLoader fileInPackage: 'Iliad-Core'.
PackageLoader fileInPackage: 'Iliad-More-Comet'.
PackageLoader fileInPackage: 'Iliad-More-Formula'.
PackageLoader fileInPackage: 'Iliad-Swazoo'.

PackageLoader fileInPackage: 'OsmoGSM'.
FileStream fileIn: 'GSMDriver.st'.
FileStream fileIn: 'TestPhone.st'.

Iliad.ILWidget subclass: ServerConfigWidget [
    initialize [
        super initialize.
    ]

    contents [
        ^ [:e |
            self application gsmServer isConnected
                ifTrue: [
                    e text: 'The A link is connected to the MSC'.
                ]
                ifFalse: [
                    e text: 'The A link is not connected: '.
                    e a
                        text: 'Connect';
                        action: [self connectServer]
                ].
        ]
    ]

    connectServer [
        (self application gsmServer)
            connect;
            serve.
    ]

]

Iliad.ILWidget subclass: PhoneConfigWidget [
    configFormOn: anItem [
        | form |

        form := ILFormula on: anItem.
        (form inputOn: #imsi)
            labelContents: [:e | e span text: 'IMSI' ].
        (form inputOn: #auKey)
            labelContents: [:e | e span text: 'AuKey' ].
        ^ form
    ]

    configurePhone [
        self lightbox: ((self configFormOn: self session gsmConfig)
            addMessage: [:e | e h2: 'Configure Test Phone'];
            yourself)
    ]

    contents [
        ^ [:e | e a text: 'Configure phone'; action: [self configurePhone]].
    ]
]

Iliad.ILWidget subclass: ErrorWidget [
    | reason |

    ErrorWidget class >> initWith: anError [
        ^ self new
            reason: anError;
            yourself
    ]

    reason: aReason [
        reason := aReason.
    ]

    contents [
        ^ [:e | e text: reason ]
    ]
]

Iliad.ILWidget subclass: ProcedureWidget [
    runProcedure: aBlock name: aName[
        | conn |
        [
            conn := aBlock value.
            conn openConnection.
            self session procedures add: conn.
            self application procedures markDirty.
        ] on: Exception do: [:e |
            self lightbox: (ErrorWidget initWith: aName, ' could not be started.')
        ]
    ]

    showStatus: item on: form [
        | status |
        status := item isComplete
                    ifTrue: [
                        item mainProc success
                            ifTrue:  [item mainProc name, ' completed with success']
                            ifFalse: [item mainProc name, ' completed with failure'].
                    ]
                    ifFalse: [
                        item mainProc name, ' in-progress'
                    ].

        form text: status.
        form button
                text: 'Remove';
                action: [self markDirty.
                         item isComplete
                                ifFalse: [
                                    item sendClearRequest.
                                ].
                         self session procedures remove: item.].
    ]

    contents [
        ^ [:e | | procs |
            e a
                action: [self markDirty];
                text: 'Refresh Procedures'.

            procs := self session procedures.
            procs do: [:each |
                e form build: [:form |
                    self showStatus: each on: form.]
            ]
        ]
    ]
]


ProcedureWidget subclass: LUWidget [
    contents [
        ^ [:e |
            e a
                text: 'Start LU';
                action: [self doLU]
        ]
    ]

    doLU [
        self runProcedure: [self application gsmServer doLU: self session gsmConfig] name: 'LU'
    ]
]

ProcedureWidget subclass: CallWidget [
    contents [
        ^[:e |
            e form build: [:form |
                form input action: [:val | self placeCall: val].
                form button text: 'Call']
        ]
    ]

    placeCall: aNumber [
        self runProcedure: [self application gsmServer doCallNumber: self session gsmConfig nr: aNumber] name: 'Call'
    ]
]

ProcedureWidget subclass: USSDWidget [
    contents [
        ^[:e |
            e form build: [:form |
                form input action: [:val | self doUSSD: val].
                form button text: 'USSD']
        ]
    ]

    doUSSD: aNumber [
        self runProcedure: [self application gsmServer doUSSD: self session gsmConfig nr: aNumber] name: 'USSD'.
    ]
]

Iliad.ILSession subclass: GSMTestphoneSession [
    | user gsmConfig procedures |

    isAuthenticated [
        ^ user = 'toto-user'
    ]

    username: aUser [
        user := aUser.
    ]

    gsmConfig [ ^ gsmConfig ifNil: [gsmConfig := PhoneConfig new.  ]]
    procedures [ ^ procedures ifNil: [procedures := OrderedCollection new]]
]

Iliad.ILApplication subclass: GSMTestphoneApp [
    | config call lu serverConfig gsmServer  procedureWidget ussd |
    GSMTestphoneApp class >> path [ ^ 'testphone' ]

    GSMTestphoneApp class >> initialize [
        Iliad.ILSessionManager current sessionClass: GSMTestphoneSession.
    ]

    gsmServer [
        ^ gsmServer ifNil: [gsmServer := IPAConfig new]
    ]

    phoneConfig [
        ^ config ifNil: [config := PhoneConfigWidget new]
    ]

    serverConfig [
        ^ serverConfig ifNil: [serverConfig := ServerConfigWidget new]
    ]

    procedures [
        ^ procedureWidget ifNil: [procedureWidget := ProcedureWidget new]
    ]

    call [
        ^ call ifNil: [call := CallWidget new]
    ]

    lu [
        ^ lu ifNil: [lu := LUWidget new]
    ]

    ussd [
        ^ ussd ifNil: [ussd := USSDWidget new]
    ]

    index [
        <category: 'controllers'>
        ^ [:e |
            e
                build: self cometConnection;
                build: self serverConfig;
                build: self phoneConfig;
                build: self lu;
                build: self call;
                build: self ussd;
                build: self procedures.
        ].
    ]

    loginContents [
        <category: 'building'>
        ^[:e |
            e form build: [:form |
                form input action: [:val | self login: val].
                form button text: 'Login']]
    ]

    login: aString [
        <category: 'actions'>
        self session username: aString.
        self redirectToCurrentController
    ]

    dispatchOverride [
        <category: 'dispatching'>
        ^self session isAuthenticated
            ifFalse: [self loginContents]
            ifTrue:  [super dispatchOverride]
    ]
]

Eval [
    GSMTestphoneApp initialize.
    Iliad.SwazooIliad startOn: 8080.

    stdin next.
]