Annotation of rat/lonratsrv.pm, revision 1.13
1.1 www 1: # The LearningOnline Network with CAPA
2: # Server for RAT Maps
3: #
4: # (Edit Handler for RAT Maps
5: # (TeX Content Handler
6: #
7: # 05/29/00,05/30 Gerd Kortemeyer)
8: # 7/1 Gerd Kortemeyer)
1.7 www 9: # 7/1,7/3,7/4,7/7,7/8,7/10,7/26,10/2 Gerd Kortemeyer
1.8 harris41 10: # 4/30/2001 Scott Harrison
1.13 ! www 11: # 5/3,06/25,07/03 Gerd Kortemeyer
1.1 www 12:
13: package Apache::lonratsrv;
14:
15: use strict;
16: use Apache::Constants qw(:common);
1.2 www 17: use Apache::File;
18: use HTML::TokeParser;
19:
20:
1.4 www 21: # ------------------------------------------------------------- From RAT to XML
1.2 www 22:
23: sub qtescape {
24: my $str=shift;
1.4 www 25: $str=~s/\&\#58\;/\:/g;
26: $str=~s/\&\#39\;/\'/g;
27: $str=~s/\&\#44\;/\,/g;
28: $str=~s/\"/\&\#34\;/g;
1.2 www 29: return $str;
30: }
31:
1.4 www 32: # ------------------------------------------------------------- From XML to RAT
1.2 www 33:
1.4 www 34: sub qtunescape {
1.2 www 35: my $str=shift;
1.4 www 36: $str=~s/\:/\&\#58\;/g;
37: $str=~s/\'/\&\#39\;/g;
38: $str=~s/\,/\&\#44\;/g;
39: $str=~s/\"/\&\#34\;/g;
1.2 www 40: return $str;
41: }
42:
43: # --------------------------------------------------------- Loads map from disk
44:
45: sub loadmap {
46: my ($fn,$errtext)=@_;
47: my $outstr='';
48: my @content=();
49: my @obj=();
50: my @links=();
51: if (-e $fn) {
52: {
53: my $fh=Apache::File->new($fn);
54: @content=<$fh>;
55: }
56: my $instr=join('',@content);
57: my $parser = HTML::TokeParser->new(\$instr);
58: my $token;
59: my $graphmode=0;
60:
61: $fn=~/\.(\w+)$/;
62: $outstr="mode<:>$1";
63:
64: while ($token = $parser->get_token) {
65: if ($token->[0] eq 'S') {
66: if ($token->[1] eq 'map') {
67: $graphmode=($token->[2]->{'mode'} eq 'rat/graphical');
68: } elsif ($token->[1] eq 'resource') {
1.3 www 69: # -------------------------------------------------------------------- Resource
70: $outstr.='<&>objcont';
71: if ($token->[2]->{'id'}) {
72: $outstr.='<:>'.$token->[2]->{'id'};
73: if ($obj[$token->[2]->{'id'}]==1) {
74: $errtext.='Error: multiple use of ID '.
75: $token->[2]->{'id'}.'. ';
76: }
77: $obj[$token->[2]->{'id'}]=1;
78: } else {
79: my $i=1;
80: while (($i<=$#obj) && ($obj[$i]!=0)) { $i++; }
81: $outstr.='<:>'.$i;
82: $obj[$i]=1;
83: }
84: $outstr.='<:>';
1.4 www 85: $outstr.=qtunescape($token->[2]->{'title'}).":";
86: $outstr.=qtunescape($token->[2]->{'src'}).":";
87: if ($token->[2]->{'src'}=~/\/\//) {
88: $outstr.='true:';
89: } else {
90: $outstr.='false:';
91: }
92: if ($token->[2]->{'type'}) {
93: $outstr.=$token->[2]->{'type'}.':';
94: } else {
95: $outstr.='normal:';
96: }
97: $outstr.='res';
1.2 www 98: } elsif ($token->[1] eq 'condition') {
1.3 www 99: # ------------------------------------------------------------------- Condition
100: $outstr.='<&>objcont';
101: if ($token->[2]->{'id'}) {
102: $outstr.='<:>'.$token->[2]->{'id'};
103: if ($obj[$token->[2]->{'id'}]==1) {
104: $errtext.='Error: multiple use of ID '.
105: $token->[2]->{'id'}.'. ';
106: }
107: $obj[$token->[2]->{'id'}]=1;
108: } else {
109: my $i=1;
110: while (($i<=$#obj) && ($obj[$i]!=0)) { $i++; }
111: $outstr.='<:>'.$i;
112: $obj[$i]=1;
113: }
114: $outstr.='<:>';
1.4 www 115: $outstr.=qtunescape($token->[2]->{'value'}).':';
116: if ($token->[2]->{'type'}) {
117: $outstr.=$token->[2]->{'type'}.':';
118: } else {
119: $outstr.='normal:';
120: }
121: $outstr.='cond';
1.2 www 122: } elsif ($token->[1] eq 'link') {
1.3 www 123: # ----------------------------------------------------------------------- Links
1.2 www 124: $outstr.='<&>objlinks';
1.7 www 125:
1.3 www 126: if ($token->[2]->{'index'}) {
1.4 www 127: if ($links[$token->[2]->{'index'}]) {
128: $errtext.='Error: multiple use of link index '.
1.3 www 129: $token->[2]->{'index'}.'. ';
1.4 www 130: }
131: $outstr.='<:>'.$token->[2]->{'index'};
132: $links[$token->[2]->{'index'}]=1;
133: } else {
134: my $i=1;
135: while (($i<=$#links) && ($links[$i]==1)) { $i++; }
136: $outstr.='<:>'.$i;
137: $links[$i]=1;
138: }
1.7 www 139:
1.2 www 140: $outstr.='<:>'.$token->[2]->{'from'}.
1.5 www 141: ':'.$token->[2]->{'to'};
1.2 www 142: if ($token->[2]->{'condition'}) {
1.5 www 143: $outstr.=':'.$token->[2]->{'condition'};
1.2 www 144: } else {
1.5 www 145: $outstr.=':0';
1.4 www 146: }
1.11 www 147: # ------------------------------------------------------------------- Parameter
148: } elsif ($token->[1] eq 'param') {
149: $outstr.='<&>objparms<:>'.$token->[2]->{'to'}.'<:>'.
1.13 ! www 150: $token->[2]->{'type'}.'___'.$token->[2]->{'name'}
1.11 www 151: .'___'.$token->[2]->{'value'};
1.2 www 152: } elsif ($graphmode) {
1.3 www 153: # --------------------------------------------- All other tags (graphical only)
154: $outstr.='<&>'.$token->[1];
1.4 www 155: if (defined($token->[2]->{'index'})) {
1.3 www 156: $outstr.='<:>'.$token->[2]->{'index'};
157: if ($token->[1] eq 'obj') {
158: $obj[$token->[2]->{'index'}]=2;
159: }
160: }
161: $outstr.='<:>'.$token->[2]->{'value'};
1.2 www 162: }
163: }
164: }
165:
166: } else {
1.3 www 167: $errtext.='Map not loaded: The file does not exist. ';
1.2 www 168: }
169: return($outstr,$errtext);
170: }
171:
172:
173: # ----------------------------------------------------------- Saves map to disk
174:
175: sub savemap {
176: my ($fn,$errtext)=@_;
1.13 ! www 177: my %alltypes;
! 178: my %allvalues;
1.7 www 179: if (($fn=~/\.sequence$/) ||
1.2 www 180: ($fn=~/\.page$/)) {
1.4 www 181:
1.2 www 182: # ------------------------------------------------------------- Deal with input
183: my @tags=split(/<&>/,$ENV{'form.output'});
184: my $outstr='';
185: my $graphdef=0;
186: if ($tags[0] eq 'graphdef<:>yes') {
187: $outstr='<map mode="rat/graphical">'."\n";
188: $graphdef=1;
189: } else {
190: $outstr="<map>\n";
191: }
192: map {
193: my @parts=split(/<:>/,$_);
194: if ($parts[0] eq 'objcont') {
195: my @comp=split(/:/,$parts[$#parts]);
196: # --------------------------------------------------------------- Logical input
197: if ($comp[$#comp] eq 'res') {
1.4 www 198: $comp[0]=qtescape($comp[0]);
199: $comp[1]=qtescape($comp[1]);
1.2 www 200: if ($comp[2] eq 'true') {
201: if ($comp[1]!~/^http\:\/\//) {
202: $comp[1]='http://'.$comp[1];
203: }
204: } else {
205: if ($comp[1]=~/^http\:\/\//) {
206: $comp[1]=~s/^http\:\/\/[^\/]*\//\//;
207: }
208: }
209: $outstr.='<resource id="'.$parts[1].'" src="'
1.4 www 210: .$comp[1].'"';
1.2 www 211:
212: if (($comp[3] ne '') && ($comp[3] ne 'normal')) {
213: $outstr.=' type="'.$comp[3].'"';
214: }
215: if ($comp[0] ne '') {
1.4 www 216: $outstr.=' title="'.$comp[0].'"';
1.2 www 217: }
218: $outstr.="></resource>\n";
219: } elsif ($comp[$#comp] eq 'cond') {
220: $outstr.='<condition id="'.$parts[1].'"';
221: if (($comp[1] ne '') && ($comp[1] ne 'normal')) {
222: $outstr.=' type="'.$comp[1].'"';
223: }
224: $outstr.=' value="'.qtescape($comp[0]).'"';
225: $outstr.="></condition>\n";
226: }
227: } elsif ($parts[0] eq 'objlinks') {
228: my @comp=split(/:/,$parts[$#parts]);
229: $outstr.='<link';
230: $outstr.=' from="'.$comp[0].'"';
231: $outstr.=' to="'.$comp[1].'"';
232: if (($comp[2] ne '') && ($comp[2]!=0)) {
233: $outstr.=' condition="'.$comp[2].'"';
234: }
235: $outstr.=' index="'.$parts[1].'"';
236: $outstr.="></link>\n";
1.11 www 237: } elsif ($parts[0] eq 'objparms') {
1.13 ! www 238: undef %alltypes;
! 239: undef %allvalues;
1.11 www 240: map {
241: my ($type,$name,$value)=split(/\_\_\_/,$_);
1.13 ! www 242: $alltypes{$name}=$type;
! 243: $allvalues{$name}=$value;
! 244: } split(/:/,$parts[$#parts]);
! 245: map {
! 246: $outstr.='<param to="'.$parts[1].'" type="'
! 247: .$alltypes{$_}.'" name="'.$_
! 248: .'" value="'.$allvalues{$_}.'">'
1.12 www 249: ."</param>\n";
1.13 ! www 250: } keys %allvalues;
1.2 www 251: } elsif (($parts[0] ne '') && ($graphdef)) {
252: # ------------------------------------------------------------- Graphical input
253: $outstr.='<'.$parts[0];
254: if ($#parts==2) {
255: $outstr.=' index="'.$parts[1].'"';
256: }
257: $outstr.=' value="'.qtescape($parts[$#parts]).'"></'.
258: $parts[0].">\n";
259: }
260: } @tags;
261: $outstr.="</map>\n";
262: {
263: my $fh;
264: if ($fh=Apache::File->new(">$fn")) {
265: print $fh $outstr;
1.3 www 266: $errtext.="Map saved as $fn. ";
1.2 www 267: } else {
1.3 www 268: $errtext.='Could not write file $fn. Map not saved. ';
1.2 www 269: }
270: }
271: } else {
272: # -------------------------------------------- Cannot write to that file, error
1.3 www 273: $errtext.='Map not saved: The specified path does not exist. ';
1.2 www 274: }
275: return $errtext;
276: }
1.1 www 277:
278: # ================================================================ Main Handler
279:
280: sub handler {
281: my $r=shift;
282: $r->content_type('text/html');
283: $r->send_http_header;
284:
285: return OK if $r->header_only;
286:
287: my $url=$r->uri;
1.2 www 288: $url=~/\/(\w+)\/ratserver$/;
289: my $mode=$1;
290:
291: $url=~s/\/loadonly\/ratserver$/\/save\/ratserver/;
292:
293: my $fn=$r->filename;
294: my $errtext='';
295: my $outtext='';
296:
297: if ($mode ne 'loadonly') {
298: $errtext=&savemap($fn,$errtext);
299: }
300: ($outtext,$errtext)=&loadmap($fn,$errtext);
1.1 www 301:
302: $r->print(<<ENDDOCUMENT);
303: <html>
1.8 harris41 304: <body bgcolor="#FFFFFF">
1.2 www 305: <form name=storage method=post action="$url">
306: <input type=hidden name=output value="$outtext">
1.1 www 307: </form>
1.8 harris41 308: <script>
1.9 harris41 309: parent.flag=1;
1.8 harris41 310: </script>
1.2 www 311: ENDDOCUMENT
312: if ($errtext ne '') {
313: $r->print(<<ENDSCRIPT);
314: <script>
315: alert("$errtext");
316: </script>
317: ENDSCRIPT
318: }
319: $r->print("</body>\n</html>\n");
1.1 www 320:
321: return OK;
322: }
323:
324: 1;
325: __END__
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>