/[pub]/suikawiki/script/lib/suikawiki.pl
Suika

Contents of /suikawiki/script/lib/suikawiki.pl

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.17 - (show annotations) (download)
Sat Oct 25 06:38:18 2003 UTC (21 years, 8 months ago) by wakaba
Branch: MAIN
Changes since 1.16: +5 -157 lines
File MIME type: text/plain
Some functions removed

1 use strict;
2
3 package wiki;
4 our $VERSION = do{my @r=(q$Revision: 1.16 $=~/\d+/g);sprintf "%d."."%02d" x $#r,@r};
5 package main;
6 binmode STDOUT; binmode STDIN;
7
8 require SuikaWiki::Plugin;
9 our %embed_command = (
10 form => qr/\[\[\#form(?:\(([A-Za-z0-9-]+)\))?:'((?:[^'\\]|\\.)*)':'((?:[^'\\]|\\.)*)'(?::'((?:[^'\\]|\\.)*)')?\]\]/,
11 );
12 our $database = bless {}, 'wiki::dummy';
13 $| = 1;
14 require SuikaWiki::Name::Space;
15 my $NS_XHTML1 = 'http://www.w3.org/1999/xhtml';
16 our $WIKI;
17 require Message::Markup::XML;
18
19 sub _do_view_msg (%) {
20 require SuikaWiki::View;
21 my %option = @_;
22 my $o = $option{-o} || bless {param => \%main::form, page => $option{-page},
23 }, 'SuikaWiki::Plugin';
24 $o->{toc} = [];
25 $o->{condition} = \%option; ## This parameter really used??
26 my $view_def = SuikaWiki::View->definition ($option{-view});
27 unless ($view_def->check ($o)) {
28 print "Status: 406 Unsupported Media Type\n";
29 $option{-view} = '-UnsupportedMediaType';
30 $view_def = SuikaWiki::View->definition ($option{-view});
31 }
32 my $prop = $view_def->properties;
33 my $media = $prop->{media};
34 if ($prop->{xmedia} && $main::UA =~ /Gecko/) {
35 $media = $prop->{xmedia};
36 $o->{media} = $media;
37 }
38 &print_header($option{-page}, -media => $media, -view => $view_def, o => $o, -goto => $option{-goto});
39 print "\n";
40 ## Output HTTP message body
41 my $fmt = SuikaWiki::Plugin->formatter ('view');
42 my $s = $fmt->replace ($view_def->as_string => $o, {formatter => $fmt});
43 print $s;
44 }
45
46 # temp
47 sub valid_password ($) { 0 }
48 sub is_editable { 1 }
49
50 # [move to SuikaWiki::WikiDB]
51 sub frozen_reject {
52 my ($isfrozen) = $main::database->meta (IsFrozen => $main::form{mypage});
53 my ($willbefrozen) = $main::form{myfrozen};
54 if (not $isfrozen and not $willbefrozen) {
55 # You need no check.
56 return 0;
57 } elsif (valid_password($main::form{mypassword})) {
58 # You are admin.
59 return 0;
60 } else {
61 &_do_view_msg (-view => '-error', -page => $main::form{mypage},
62 error_message => SuikaWiki::Plugin->resource ('Error:PasswordIsIncorrect'));
63 exit;
64 }
65 }
66
67 # [move to SuikaWiki::WikiDB]
68 sub is_frozen ($) { SuikaWiki::Plugin->_database->meta (IsFrozen => $_[0]) ? 1 : 0 }
69
70 # [to be obsolete]
71 sub do_comment {
72 my ($content) = $main::database{$main::form{mypage}};
73 my $default_name; ## this code is not strict.
74 $default_name = $1 if $content =~ /default-name="([^"]+)"/;
75 my @time = gmtime (time);
76 my $datestr = sprintf '[WEAK[%04d-%02d-%02d %02d:%02d:%02d +00:00]]', $time[5]+1900,$time[4]+1,@time[3,2,1,0];
77 my $namestr = $main::form{myname} || $default_name || &Resource('WikiForm:WikiComment:DefaultName');
78 ($namestr = '', $datestr = '') if $main::form{myname} eq 'nodate';
79 if ($namestr =~ /^(?:>>)?[0-9]/) {
80 $namestr = qq( ''$namestr'': );
81 } elsif (length $namestr) {
82 $namestr = qq( ''[[$namestr]]'': );
83 }
84 my $anchor = &get_new_anchor_index ($content);
85 my $i = 1; my $o = 0;
86 $content =~ s{(\[\[\#r?comment\]\])}{
87 my $embed = $1;
88 if ($i == $main::form{comment_index}) {
89 if ($embed ne '[[#rcomment]]') {
90 $embed = "- [$anchor] $datestr$namestr$main::form{mymsg}\n$embed"; $o = 1;
91 } else {
92 $embed .= "\n- [$anchor] $datestr$namestr$main::form{mymsg}"; $o = 1;
93 }
94 }
95 $i++; $embed;
96 }ge;
97 unless ($o) {
98 $content = "#?SuikaWiki/0.9\n\n" unless $content;
99 $content .= "\n" unless $content =~ /\n$/s;
100 $content .= "- [$anchor] $datestr$namestr$main::form{mymsg}\n";
101 }
102 $main::form{__comment_anchor_index} = $anchor;
103 if ($main::form{mymsg} || $main::form{myname}) {
104 $main::form{mymsg} = $content;
105 $main::form{mytouch} = 'on';
106 &do_write;
107 } else { ## Don't write
108 #$main::form{mycmd} = 'default';
109 #&do_view;
110 die "No comment specified";
111 }
112 }
113
114 # [move to SuikaWiki::Plugin::WikiForm]
115 sub get_new_anchor_index ($) {
116 my $content = shift;
117 my $anchor = 0;
118 $content =~ s/^(?:[-=]+\s*)?\[([0-9]+)\]/$anchor = $1 if $1 > $anchor; $&/mge;
119 $anchor + 1;
120 }
121
122 # [move to SuikaWiki::Plugin::WikiForm]
123 sub do_wikiform {
124 my $content = $main::database{$main::form{mypage}};
125 my $anchor = &get_new_anchor_index ($content);
126 my $write = 0;
127 my $i = 1;
128 $content =~ s{$embed_command{form}}{
129 my ($embed, $wfname, $template, $option) = ($&, $1, $3, $4);
130 if (($wfname && $wfname eq $main::form{wikiform_targetform})
131 || $i == $main::form{wikiform_index}) {
132 $template =~ s/\\([\\'])/$1/g;
133 $option =~ s/\\([\\'])/$1/g;
134 my $param = bless {depth=>10}, 'SuikaWiki::Plugin';
135 $param->{page} = $main::form{mypage};
136 $param->{form_index} = $i;
137 $param->{form_name} = $wfname;
138 $param->{anchor_index} = $anchor;
139 $param->{argv} = \%main::form;
140 $param->{default_name} = $1 if $content =~ /default-name="([^"]+)"/;
141 $param->{default_name} ||= &Resource('WikiForm:WikiComment:DefaultName');
142 SuikaWiki::Plugin->formatter ('form_option')->replace ($option, $param);
143 my $t = 1;
144 for (keys %{$param->{require}||{}}) {
145 (undef $t, last) unless length $param->{argv}->{'wikiform__'.$_};
146 }
147 $t = SuikaWiki::Plugin->formatter ('form_template')->replace ($template, $param) if $t;
148 if (length $t) {
149 if ($param->{output}->{reverse}) {
150 $embed .= "\n" . $t;
151 } else {
152 $embed = $t . "\n" . $embed;
153 }
154 $write = 1;
155 $main::form{__comment_anchor_index} = $anchor
156 if $param->{anchor_index_}; ## $anchor is used!
157 }
158 $main::form{__wikiform_anchor_index} = $i;
159 undef $main::form{wikiform_targetform}; ## Make sure never to match
160 undef $main::form{wikiform_index}; ## with WikiForm in rest of page!
161 }
162 $i++; $embed;
163 }ge;
164 unless ($write) {
165 #$content = "#?SuikaWiki/0.9\n\n" unless $content;
166 #$content .= "\n" unless $content =~ /\n$/s;
167 #
168 }
169 if ($write) {
170 $main::form{mymsg} = $content;
171 $main::form{mytouch} = 'on';
172 &do_write;
173 } else { ## Don't write!
174 #$main::form{mycmd} = 'default';
175 #&do_view;
176 die "No content specified";
177 }
178 }
179
180 # [to be obsolete] ->Message::MIME::Charset
181 sub code_convert {
182 require Jcode;
183 my ($contentref, $code, $srccode) = @_;
184 $code ||= $WIKI->{config}->{charset}->{internal};
185 for ($code, $srccode) {
186 if ($_ eq 'euc-jp') { $_ = 'euc' }
187 elsif ($_ eq 'iso-2022-jp') { $_ = 'jis' }
188 elsif ($_ eq 'utf-8') { $_ = 'utf8' }
189 elsif ($_ eq 'shift_jis') { $_ = 'sjis' }
190 }
191 $$contentref = Jcode->new ($contentref, $srccode)
192 ## Normalize FULLWIDTH characters and IDEOGRAPHIC SPACE
193 ->tr ("\xA3\xB0-\xA3\xB9\xA3\xC1-\xA3\xDA\xA3\xE1-\xA3\xFA\xA1\xF5\xA1\xA4\xA1\xA5\xA1\xA7\xA1\xA8\xA1\xA9\xA1\xAA\xA1\xAE\xA1\xB0\xA1\xB2\xA1\xBF\xA1\xC3\xA1\xCA\xA1\xCB\xA1\xCE\xA1\xCF\xA1\xD0\xA1\xD1\xA1\xDC\xA1\xF0\xA1\xF3\xA1\xF4\xA1\xF6\xA1\xF7\xA1\xE1\xA1\xE4\xA1\xE3\xA1\xA1\xA2\xAF\xA2\xB0\xA2\xB2\xA2\xB1\xA1\xA1\xC0" => q(0-9A-Za-z&,.:;?!`^_/|()[]{}+$%#*@=>< '"~-))
194 ->tr (qq(\x8E\xDE\x8E\xDF) => qq(\xA1\xAB\xA1\xAC))
195 ->h2z
196 ->$code;
197 return $$contentref;
198 }
199
200 # [to be obsolete] ->Message::Field::Date
201 sub _rfc3339_date ($) {
202 my @time = gmtime (shift);
203 sprintf '%04d-%02d-%02dT%02d:%02d:%02d+00:00', $time[5]+1900,$time[4]+1,@time[3,2,1,0];
204 }
205
206 # [obsolete] ->SuikaWiki::SrcFormat : SuikaWiki09 plugin
207 sub convert_format ($$$;%) {
208 my ($content, $d => $t, %option) = @_;
209 my $f = SuikaWiki::Plugin->format_converter ($d => $t);
210 if (ref $f) {
211 $option{content} = $content;
212 $option{from} = $d;
213 $option{to} = $t;
214 &$f ({}, bless (\%option, 'SuikaWiki::Plugin'));
215 } elsif ($option{-error_no_return}) {
216 return undef;
217 } elsif ($t =~ /HTML|xml/) {
218 if (length $content) {
219 my $r = SuikaWiki::Markup::XML->new (namespace_uri => $NS_XHTML1, local_name => 'pre');
220 $r->append_text ($content);
221 return $r;
222 } else {
223 return '';
224 }
225 } else {
226 $content;
227 }
228 }
229
230 package wiki::transitional::uri_param;
231 require Tie::Hash;
232 our @ISA = 'Tie::Hash';
233
234 sub TIEHASH ($@) {
235 bless {http => $_[1]}, $_[0];
236 }
237
238 sub FETCH ($$) {
239 my ($self, $key) = @_;
240 exists $self->{val}->{$key} ?
241 $self->{val}->{$key}:
242 $self->{http}->parameter ($key);
243 }
244
245 sub STORE ($$$) {
246 my ($self, $key, $val) = @_;
247 $self->{val}->{$key} = $val;
248 }
249
250 sub DELETE ($$) {
251 my ($self, $key) = @_;
252 $self->{val}->{$key} = undef;
253 }
254
255 sub EXISTS ($$) {
256 my ($self, $key) = @_;
257 exists $self->{val}->{$key} ?
258 1:
259 defined $self->{http}->parameter ($key);
260 }
261
262 package main;
263 push @{$WIKI->{event}->{setting_initial_variables}}, sub {
264 my $wiki = shift;
265 $wiki->{implementation_version} = 'sw'.$VERSION;
266
267 ## Error output
268 require SuikaWiki::Output::CGICarp;
269 $SuikaWiki::Output::CGICarp::CUSTOM_REASON_TEXT
270 = 'Internal WikiEngine Error';
271 CGI::Carp::set_message (sub {
272 my $msg = shift;
273 #$msg =~ s/&/&amp;/g;
274 #$msg =~ s/</&lt;/g;
275 my $wiki_name_version = $wiki->{implementation_name} .'/'. $wiki->version;
276 for ($wiki_name_version) { s/&/&amp;/g; s/</&lt;/g;
277 s/([^\x20-\x7E])/sprintf '&#x%02X;',
278 ord $1/g; };
279 print STDOUT <<EOH
280 <!DOCTYPE html SYSTEM>
281 <title>500 Internal WikiEngine Error</title>
282 <h1>Internal WikiEngine Error</h1>
283 <p>$msg</p>
284 <address>$wiki_name_version</address>
285 EOH
286 });
287
288 $wiki->{var}->{db}->{read_only}->{'#default'} = 1;
289
290 require SuikaWiki::Input::HTTP;
291 $wiki->{input} = SuikaWiki::Input::HTTP->new;
292 $wiki->{input}->{decoder}->{'#default'} = sub {
293 my ($http, $s, $temp_params) = @_;
294 return main::code_convert (\$s, undef, # internal code
295 @{$temp_params->{ie}||[]}[0]
296 || $wiki->{config}->{charset}->{uri_param});
297 };
298 $wiki->{var}->{client}->{user_agent_name}
299 = $wiki->{input}->meta_variable ('HTTP_USER_AGENT');
300 $wiki->{var}->{client}->{used_for_negotiate} = ['User-Agent'];
301
302 ## TODO: PATH_INFO support
303 my $page = $wiki->{input}->meta_variable ('QUERY_STRING');
304 if ($page && !(index ($page, '=') > -1)) {
305 $page =~ tr/+/ /;
306 $page =~ s/%([0-9A-Fa-f][0-9A-Fa-f])/pack 'C', hex $1/ge;
307 $page = main::code_convert
308 (\$page, undef, # internal code
309 $wiki->{config}->{charset}->{uri_query});
310 } else {
311 $page = $wiki->{input}->parameter ('mypage');
312 }
313
314
315 ## TODO: SuikaWiki 3 WikiName
316 $page =~ tr/\x00-\x20\x7F//d;
317 $page = SuikaWiki::Name::Space::normalize_name ($page);
318 if ($page) {
319 $wiki->{var}->{page} = [split '//', $page];
320 } else {
321 $wiki->{var}->{page} = $wiki->{config}->{page}->{Default};
322 }
323
324 ## Mode
325 my $mode = $wiki->{input}->parameter ('mode')
326 || $wiki->{input}->parameter ('mycmd') ## for compatibility with
327 || 'default'; ## YukiWiki and SuikaWiki 2
328 $mode =~ tr/-/_/;
329 if ($mode eq 'default' || $mode =~ /[^0-9A-Za-z_]/) {
330 ## BUG: this code is not strict
331 my $cookie = $wiki->{input}->meta_variable ('HTTP_COOKIE');
332 if ($cookie =~ /SelectedMode=([0-9A-Za-z_-]+)/) {
333 $mode = $1; $mode =~ tr/-/_/;
334 } else {
335 $mode = 'read';
336 }
337 push @{$wiki->{var}->{client}->{used_for_negotiate}}, 'Cookie';
338 }
339 $wiki->{var}->{mode} = $mode;
340
341 ## Transitional variables
342 tie %main::form, 'wiki::transitional::uri_param', $wiki->{input};
343 $main::UA = $wiki->{var}->{client}->{user_agent_name};
344 $main::form{mypage} = join '//', @{$wiki->{var}->{page}};
345 $main::form{mycmd} = $mode;
346 };
347
348 $WIKI->init_variables;
349
350 $WIKI->init_plugin;
351 $WIKI->init_view;
352 $WIKI->{plugin}->use_type ('view-definition');
353 $WIKI->{view}->register_common_modes;
354 my $opt = {condition => {mode => $WIKI->{var}->{mode}, output => 'http-cgi',
355 http_method => $main::ENV{REQUEST_METHOD}}};
356 my $viewobj = $WIKI->{view}->instantiate ($WIKI->{var}->{mode}, $opt);
357 $viewobj->main ($opt); ## TODO: or unsupported mode
358
359 exit;
360 END {
361 $WIKI->exit;
362 }
363
364 =head1 NAME
365
366 lib/suikawiki.pl --- SuikaWiki transitional library
367
368 =head1 AUTHOR
369
370 Hiroshi Yuki <hyuki@hyuki.com> <http://www.hyuki.com/yukiwiki/> (YukiWiki)
371
372 Makio Tsukamoto <http://digit.que.ne.jp/> (WalWiki)
373
374 Wakaba <w@suika.fam.cx>
375
376 =head1 LICENSE
377
378 Copyright AUTHORS 2000-2003
379
380 This program is free software; you can redistribute it and/or
381 modify it under the same terms as Perl itself.
382
383 =cut
384
385 1; # $Date: 2003/10/25 02:22:06 $

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24