annotate Lib/IMPL/Web/Handler/TTView.pm @ 281:a8dbddf491dd

refactoring *IMPL::declare reset abstractProps static property after implementing these props *IMPL::Serialization: fixed bug with multiple text parts inside one node *IMPL::Web::Handler::TTView: removed obsolete property 'location' from 'view' template variable
author cin
date Mon, 11 Feb 2013 00:58:22 +0400
parents 89179bb8c388
children 546957c50a36
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
199
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
1 package IMPL::Web::Handler::TTView;
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
2 use strict;
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
3
204
d63f9a92d6d4 +IMPL::Config::Include - simple way to include external config
sergey
parents: 203
diff changeset
4 use List::Util qw(first);
233
3cebcf6fdb9b refactoring, cleaning code
sergey
parents: 229
diff changeset
5 use IMPL::Const qw(:prop);
199
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
6 use IMPL::declare {
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
7 require => {
240
abc7c26bf615 +Added ObjectFactory for templates with static members support
sergey
parents: 235
diff changeset
8 Factory => 'IMPL::Web::View::ObjectFactory',
241
f48a1a9f4fa2 +Added ViewResult to allow implementation of the view environment.
sergey
parents: 240
diff changeset
9 HttpResponse => 'IMPL::Web::HttpResponse',
f48a1a9f4fa2 +Added ViewResult to allow implementation of the view environment.
sergey
parents: 240
diff changeset
10 Loader => 'IMPL::Code::Loader',
f48a1a9f4fa2 +Added ViewResult to allow implementation of the view environment.
sergey
parents: 240
diff changeset
11 ViewResult => '-IMPL::Web::ViewResult'
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
12 },
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
13 base => [
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
14 'IMPL::Object' => undef,
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
15 'IMPL::Object::Autofill' => '@_',
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
16 'IMPL::Object::Serializable' => undef
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
17 ],
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
18
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
19 props => [
233
3cebcf6fdb9b refactoring, cleaning code
sergey
parents: 229
diff changeset
20 contentType => PROP_RO,
3cebcf6fdb9b refactoring, cleaning code
sergey
parents: 229
diff changeset
21 contentCharset => PROP_RO,
3cebcf6fdb9b refactoring, cleaning code
sergey
parents: 229
diff changeset
22 loader => PROP_RO,
3cebcf6fdb9b refactoring, cleaning code
sergey
parents: 229
diff changeset
23 selectors => PROP_RO | PROP_LIST,
3cebcf6fdb9b refactoring, cleaning code
sergey
parents: 229
diff changeset
24 defaultDocument => PROP_RW,
3cebcf6fdb9b refactoring, cleaning code
sergey
parents: 229
diff changeset
25 indexResource => PROP_RW,
3cebcf6fdb9b refactoring, cleaning code
sergey
parents: 229
diff changeset
26 _selectorsCache => PROP_RW,
3cebcf6fdb9b refactoring, cleaning code
sergey
parents: 229
diff changeset
27 _classTemplates => PROP_RW
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
28 ]
199
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
29 };
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
30
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
31 sub CTOR {
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
32 my ($this) = @_;
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
33
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
34 $this->indexResource('index') unless $this->indexResource;
199
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
35 }
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
36
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
37 sub Invoke {
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
38 my ( $this, $action, $next ) = @_;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
39
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
40 my $result = $next ? $next->($action) : undef;
241
f48a1a9f4fa2 +Added ViewResult to allow implementation of the view environment.
sergey
parents: 240
diff changeset
41
f48a1a9f4fa2 +Added ViewResult to allow implementation of the view environment.
sergey
parents: 240
diff changeset
42 my ($model,$view);
f48a1a9f4fa2 +Added ViewResult to allow implementation of the view environment.
sergey
parents: 240
diff changeset
43 if( ref $result and eval { $result->isa(ViewResult) } ) {
f48a1a9f4fa2 +Added ViewResult to allow implementation of the view environment.
sergey
parents: 240
diff changeset
44 $model = $result->model;
f48a1a9f4fa2 +Added ViewResult to allow implementation of the view environment.
sergey
parents: 240
diff changeset
45 $view = $result;
f48a1a9f4fa2 +Added ViewResult to allow implementation of the view environment.
sergey
parents: 240
diff changeset
46 } else {
f48a1a9f4fa2 +Added ViewResult to allow implementation of the view environment.
sergey
parents: 240
diff changeset
47 $model = $result;
f48a1a9f4fa2 +Added ViewResult to allow implementation of the view environment.
sergey
parents: 240
diff changeset
48 $view = ViewResult->new(model => $model);
f48a1a9f4fa2 +Added ViewResult to allow implementation of the view environment.
sergey
parents: 240
diff changeset
49 }
f48a1a9f4fa2 +Added ViewResult to allow implementation of the view environment.
sergey
parents: 240
diff changeset
50
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
51 my $vars = {
241
f48a1a9f4fa2 +Added ViewResult to allow implementation of the view environment.
sergey
parents: 240
diff changeset
52 view => $view,
f48a1a9f4fa2 +Added ViewResult to allow implementation of the view environment.
sergey
parents: 240
diff changeset
53 model => $model,
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
54 action => $action,
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
55 app => $action->application,
235
a4d9126edcbb code cleaning
sergey
parents: 233
diff changeset
56 ImportClass => sub {
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
57 my $class = shift;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
58
241
f48a1a9f4fa2 +Added ViewResult to allow implementation of the view environment.
sergey
parents: 240
diff changeset
59 $class = Loader->safe->Require($class);
f48a1a9f4fa2 +Added ViewResult to allow implementation of the view environment.
sergey
parents: 240
diff changeset
60
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
61 return Factory->new($class);
205
891c04080658 IMPL::Web::View fixed template selection, release candidate
sergey
parents: 204
diff changeset
62 }
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
63 };
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
64
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
65 my $doc =
256
32aceba4ee6d corrected ViewHandlers to handle cookies and headers.
sergey
parents: 244
diff changeset
66 $this->loader->document( eval { $view->template } || $this->SelectView( $action, ref $model ),
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
67 $vars );
256
32aceba4ee6d corrected ViewHandlers to handle cookies and headers.
sergey
parents: 244
diff changeset
68
266
89179bb8c388 *corrected TTView to handle plain (and undefined) values
cin
parents: 256
diff changeset
69 $doc->location($action->context->{resourceLocation});
256
32aceba4ee6d corrected ViewHandlers to handle cookies and headers.
sergey
parents: 244
diff changeset
70
32aceba4ee6d corrected ViewHandlers to handle cookies and headers.
sergey
parents: 244
diff changeset
71 my %responseParams = (
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
72 type => $this->contentType,
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
73 charset => $this->contentCharset,
241
f48a1a9f4fa2 +Added ViewResult to allow implementation of the view environment.
sergey
parents: 240
diff changeset
74 body => $doc->Render()
199
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
75 );
256
32aceba4ee6d corrected ViewHandlers to handle cookies and headers.
sergey
parents: 244
diff changeset
76
32aceba4ee6d corrected ViewHandlers to handle cookies and headers.
sergey
parents: 244
diff changeset
77 $responseParams{status} = $view->status if $view->status;
32aceba4ee6d corrected ViewHandlers to handle cookies and headers.
sergey
parents: 244
diff changeset
78 $responseParams{cookies} = $view->cookies if ref $view->cookies eq 'HASH';
32aceba4ee6d corrected ViewHandlers to handle cookies and headers.
sergey
parents: 244
diff changeset
79 $responseParams{headers} = $view->headers if ref $view->headers eq 'HASH';
32aceba4ee6d corrected ViewHandlers to handle cookies and headers.
sergey
parents: 244
diff changeset
80
32aceba4ee6d corrected ViewHandlers to handle cookies and headers.
sergey
parents: 244
diff changeset
81 return HttpResponse->new(
32aceba4ee6d corrected ViewHandlers to handle cookies and headers.
sergey
parents: 244
diff changeset
82 %responseParams
32aceba4ee6d corrected ViewHandlers to handle cookies and headers.
sergey
parents: 244
diff changeset
83 );
199
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
84 }
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
85
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
86 sub SelectView {
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
87 my ( $this, $action, $class ) = @_;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
88
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
89 my @path = split /\//, $action->query->path_info(), -1;
266
89179bb8c388 *corrected TTView to handle plain (and undefined) values
cin
parents: 256
diff changeset
90
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
91 shift @path; # remove always empty leading segment
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
92
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
93 $this->BuildCache unless $this->_selectorsCache;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
94 my $cache = $this->_selectorsCache;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
95
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
96 @path = reverse @path;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
97
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
98 foreach
266
89179bb8c388 *corrected TTView to handle plain (and undefined) values
cin
parents: 256
diff changeset
99 my $subclass ( $class ? ( _GetHierarchy($class), '-default' ) : '-default' )
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
100 {
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
101 my @results;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
102 push @results,
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
103 { result => $this->_classTemplates->{$subclass}, level => 0 }
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
104 if $this->_classTemplates->{$subclass};
266
89179bb8c388 *corrected TTView to handle plain (and undefined) values
cin
parents: 256
diff changeset
105
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
106 if ( $cache->{$subclass} ) {
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
107 my $alternatives =
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
108 [ { selector => $cache->{$subclass}, immediate => 1 } ];
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
109 $alternatives =
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
110 $this->MatchAlternatives( $_, $alternatives, \@results )
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
111 foreach @path;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
112 }
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
113
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
114 if (@results) {
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
115 @results = sort { $b->{level} <=> $a->{level} } @results;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
116 return ( shift @results )->{result};
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
117 }
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
118 }
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
119
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
120 return $this->defaultDocument;
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
121 }
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
122
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
123 sub _GetHierarchy {
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
124 my ($class) = @_;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
125 return unless $class;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
126
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
127 no strict 'refs';
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
128
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
129 return $class, map { _GetHierarchy($_) } @{"${class}::ISA"};
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
130 }
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
131
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
132 sub BuildCache {
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
133 my ($this) = @_;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
134
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
135 my @selectors;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
136
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
137 my $cache = $this->_selectorsCache( {} );
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
138 $this->_classTemplates( {} );
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
139
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
140 foreach my $selector ( $this->selectors ) {
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
141 if ( not ref $selector ) {
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
142
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
143 my ( $path, $data ) = split( /\s*=>\s*/, $selector );
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
144
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
145 my @path = split( /\s+/, $path );
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
146
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
147 my $class;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
148
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
149 # if this selector has a class part
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
150 if ( $path[$#path] =~ m/^\@(.*)/ ) {
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
151 $class = $1;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
152 pop @path;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
153 }
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
154 else {
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
155 $class = '-default';
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
156 }
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
157
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
158 #if this selector has a path
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
159 if (@path) {
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
160 @path = reverse @path;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
161 my $last = pop @path;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
162 my $t = ( $cache->{$class} ||= {} );
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
163 my $level = 1;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
164 foreach my $prim (@path) {
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
165 $t = ( $t->{$prim}->{next} ||= {} );
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
166 $level++;
204
d63f9a92d6d4 +IMPL::Config::Include - simple way to include external config
sergey
parents: 203
diff changeset
167 }
d63f9a92d6d4 +IMPL::Config::Include - simple way to include external config
sergey
parents: 203
diff changeset
168 $t->{$last}->{level} = $level;
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
169 $t->{$last}->{data} = $data;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
170
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
171 }
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
172 else {
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
173
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
174 # we dont have a selector, only class
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
175
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
176 $this->_classTemplates->{$class} = $data;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
177 }
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
178
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
179 }
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
180 }
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
181 }
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
182
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
183 sub MatchAlternatives {
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
184 my ( $this, $segment, $alternatives, $results ) = @_;
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
185
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
186 my @next;
266
89179bb8c388 *corrected TTView to handle plain (and undefined) values
cin
parents: 256
diff changeset
187
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
188 foreach my $alt (@$alternatives) {
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
189 while ( my ( $selector, $match ) = each %{ $alt->{selector} } ) {
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
190
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
191 my $context = {
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
192 vars => \%{ $alt->{vars} || {} },
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
193 selector => $match->{next}
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
194 };
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
195
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
196 if ( $selector =~ s/^>// ) {
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
197 $context->{immediate} = 1;
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
198 }
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
199
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
200 if ( my ( $name, $rx ) =
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
201 ( $selector =~ m/^\{(?:(\w+)\:)?(.*)\}$/ ) )
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
202 {
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
203
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
204 #this is a regexp
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
205
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
206 if ( my @captures = ( $segment =~ m/($rx)/ ) ) {
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
207 $context->{success} = 1;
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
208
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
209 if ($name) {
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
210 $context->{vars}->{$name} = \@captures;
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
211 }
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
212 }
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
213 }
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
214 else {
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
215
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
216 #this is a segment name
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
217 if ( $segment eq $selector ) {
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
218 $context->{success} = 1;
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
219 }
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
220 }
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
221
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
222 # test if there were a match
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
223 if ( delete $context->{success} ) {
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
224 if ( my $data = $match->{data} ) {
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
225
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
226 # interpolate data
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
227 $data =~ s/{(\w+)(?:\:(\d+))?}/
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
228 my ($name,$index) = ($1,$2 || 0);
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
229
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
230 if ($context->{vars}{$name}) {
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
231 $context->{vars}{$name}[$index];
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
232 } else {
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
233 "";
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
234 }
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
235 /gex;
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
236
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
237 push @$results,
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
238 { level => $match->{level}, result => $data };
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
239 }
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
240 push @next, $context if $context->{selector};
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
241 }
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
242 else {
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
243
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
244 #repeat current alternative if it's not required to be immediate
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
245 push @next,
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
246 {
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
247 selector => { $selector, $match },
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
248 vars => $alt->{vars}
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
249 }
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
250 unless $alt->{immediate};
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
251 }
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
252 }
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
253 }
229
47f77e6409f7 heavily reworked the resource model of the web application:
sergey
parents: 206
diff changeset
254
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
255 return \@next;
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
256 }
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
257
199
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
258 1;
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
259
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
260 __END__
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
261
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
262 =pod
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
263
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
264 =head1 NAME
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
265
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
266 C<IMPL::Web::Handler::TTView> - использует шаблоны для построения представления.
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
267
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
268 =head1 SYNOPSIS
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
269
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
270 =begin code xml
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
271
206
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
272 <item id="html-view" type="IMPL::Web::Handler::TTView">
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
273 <contentType>text/html</contentType>
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
274 <loader id="tt-loader" type="IMPL::Web::View::TTLoader">
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
275 <options type="HASH">
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
276 <INCLUDE_PATH type="IMPL::Config::Reference">
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
277 <target>IMPL::Config</target>
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
278 <AppBase>view</AppBase>
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
279 </INCLUDE_PATH>
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
280 <INTERPOLATE>1</INTERPOLATE>
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
281 <POST_CHOMP>1</POST_CHOMP>
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
282 <ENCODING>utf-8</ENCODING>
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
283 </options>
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
284 <ext>.tt</ext>
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
285 <initializer>global.tt</initializer>
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
286 <layoutBase>layouts</layoutBase>
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
287 </loader>
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
288 <defaultDocument>default</defaultDocument>
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
289 <selectors type="ARRAY">
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
290 <item>@HASH => dump</item>
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
291 <item>@My::Data::Product => product/info</item>
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
292 <item>{action:.*} @My::Data::Product => product/{action}</item>
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
293 </selectors>
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
294 </item>
199
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
295
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
296 =end code xml
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
297
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
298 =head1 DESCRIPTION
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
299
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
300 Подбирает шаблон для представления результата, полученного при выполнении следующего обработчика. При
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
301 выборе используется принцип похожий на селекторы C<CSS>, основывающийся на именах ресурсов и их типах
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
302 данных.
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
303
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
304 =head1 SELECTORS
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
305
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
306 =begin text
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
307
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
308 [url-template] [class] => template
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
309
206
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
310 shoes => product/list
199
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
311 {action:*.} @My::Data::Product => product/{action}
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
312
206
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 205
diff changeset
313 stuff >list => product/list
204
d63f9a92d6d4 +IMPL::Config::Include - simple way to include external config
sergey
parents: 203
diff changeset
314 details => product/details
203
68a59c3358ff Implemented templates selection mechanism
sergey
parents: 200
diff changeset
315
199
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
316 =end text
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
317
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
318
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
319 =cut
e743a8481327 Added REST support for forms (with only get and post methods)
sergey
parents:
diff changeset
320