-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebform.fs
141 lines (118 loc) · 4.21 KB
/
webform.fs
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
\ Webform and CGI handling
\
\ Copyright (C) 2011,2012 Free Software Foundation, Inc.
\ This file is part of Gforth.
\ Gforth is free software; you can redistribute it and/or
\ modify it under the terms of the GNU 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 General Public License for more details.
\ You should have received a copy of the GNU General Public License
\ along with this program. If not, see http://www.gnu.org/licenses/.
wordlist constant form-fields
: cut-string ( c-addr1 u1 c -- c-addr2 u2 c-addr3 u3 )
\ cut c-addr1 u1 using separator c; c-addr3 u3 is the part before
\ the first separator, c-addr2 u2 the rest.
>r 2dup r> scan over >r dup if
1 /string \ skip c
endif
2swap drop r> over - ;
: hex>u ( c-addr u -- u2 f )
\ convert hex string c-addr u into u2; f is true if the conversion
\ worked, otherwise it is false and u2 is anything
0. 2swap ['] >number $10 base-execute nip nip 0= ;
\ basic CGI handling
: type-cgi ( c-addr u -- )
begin
dup while
over c@ case
'% of
dup 3 >= if
over 1+ 2 hex>u if
emit 3
else
drop 1
then
else
1
then
endof
'+ of
space 1 endof
dup emit 1 swap
endcase
/string
repeat
2drop ;
\ s" q=bla%26foo%25%23&test=field2%3Dxy&review=line1%0D%0Aline2%0D%0A" type-cgi
: cgi-field ( c-addr u -- )
\ process a cgi field
get-current >r form-fields set-current
'= cut-string 2>r ['] type-cgi >string-execute 2r> nextname 2constant
r> set-current ;
: cgi-input ( c-addr u -- )
\ process gci input: split into fields, and make the fields words
begin
'& cut-string dup while
cgi-field
repeat
2drop 2drop ;
s" EOF while scanning HTML" exception constant eof-on-scanning
: sh-nextline ( u1 -- 0 )
\ print the current line, starting at char u1, then switch to next line
source rot /string type
refill 0= eof-on-scannin throw
0 ;
: scan-html ( -- )
\ print the input until a "<forth>" is seen; Comments from <!-- to
\ --> are skipped.
0 { html-comment? }
>in @ begin
parse-name dup 0= if \ end-of-line
sh-nextline
else 2dup s" <forth>" str= html-comment? 0= and if
2drop source drop >in @ 7 - rot /string type exit
else 2dup s" <!--" str= if
2drop true to html-comment
else s" -->" str= if
false to html-comment
then
then
then
then
again ;
: </forth> ( u1 -- xt u2 )
['] scan-html >string-execute ( c-addr u )
2>r :noname 2r> ]] 2literal type ; [[ swap 1+ ;
: >html> ( -- x1 1 )
0 </forth> ;
: <html< ( x1 ... xu u -- )
>r :noname
r@ dup 0 +do
dup 5 + i - pick . compile,
loop
drop ]] ; [[
r> 0 +do
nip
loop
execute ;
: field-contents ( c-addr1 u1 -- c-addr2 u2 )
\ c-addr2 u2 is the CGI input string for field named c-addr1 u1
\ c-addr2 u2 is an empty string if the CGI input did not contain the field
form-fields search-wordlist if
execute
else
0 0
then ;
variable input-acceptable? \ true if all the fields are acceptable
: do-textfield { uwidth xt d: name -- }
\ print an html text input field with width uwidth and name c-addr u
\ check whether the input is satisfactory with xt ( c-addr u -- f )
.\" <input type=\"text\" name=\"" string type .\" \" size=\""
uwidth 0 .r ." >" name field-contents 2dup type ." </input> "
xt execute 0= if input-acceptable? off then ;
: textfield ( uwidth xt1 "name" -- xt2 )
2>r :noname parse-name 2r> ]] 2literal sliteral do-textfield; [[ ;