/[webpac2]/Webpacus/lib/Webpacus/Controller/Editor.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /Webpacus/lib/Webpacus/Controller/Editor.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 172 - (show annotations)
Sun Nov 27 01:42:33 2005 UTC (18 years, 5 months ago) by dpavlin
File size: 4092 byte(s)
 r11180@llin:  dpavlin | 2005-11-27 02:30:29 +0100
 saving of template and css now work

1 package Webpacus::Controller::Editor;
2
3 use strict;
4 use warnings;
5 use base 'Catalyst::Controller';
6
7 use Data::Dumper;
8
9 =head1 NAME
10
11 Webpacus::Controller::Editor - AJAX template and CSS editor
12
13 =head1 SYNOPSIS
14
15 See L<Webpacus>, L<WebPAC>
16
17 =head1 DESCRIPTION
18
19 Catalyst Controller.
20
21 =head1 METHODS
22
23 =over 4
24
25 =item default
26
27 =cut
28
29 sub default : Private {
30 my ( $self, $c ) = @_;
31
32 my $webpac = $c->comp('Model::WebPAC');
33 my $params = $c->req->params;
34 my $log = $c->log;
35
36 my $template_filename =
37 $c->req->params->{template_filename} ||
38 $c->config->{webpac}->{default_template} ||
39 $c->log->fatal("need default_template");
40
41 $c->stash->{template_filename} = $template_filename;
42
43 $c->stash->{template} = 'editor.tt';
44 }
45
46 =item template
47
48 fetch template using C<template_filename> in request or
49 C<< webpac->default_template >>.
50
51 =cut
52
53 sub template : Local {
54 my ( $self, $c ) = @_;
55
56 my $template_filename =
57 $c->req->params->{template_filename} ||
58 $c->config->{webpac}->{default_template} ||
59 $c->log->fatal("need default_template");
60
61 my $webpac = $c->comp('Model::WebPAC');
62
63 my $template_path = $webpac->{template_path} || $c->log->fatal("can't find template_path in Model::WebPAC");
64
65 my $template_full_path = "$template_path/$template_filename";
66
67 if ($c->req->params->{save_template}) {
68 my $t = $c->req->params->{template_content};
69 my $size = length($t);
70 $c->log->debug("saving $template_full_path, $size bytes");
71 if ($webpac->save_html( $template_full_path, $t )) {
72 $c->res->output("<span>saved $template_filename, $size bytes</span>");
73 } else {
74 $c->res->output("<span>error saving $template_filename!</span>");
75 }
76 return;
77 }
78
79 $c->log->debug("loading $template_full_path");
80
81 if (! -r $template_full_path) {
82 $c->log->warn("can't find '$template_full_path': $!");
83 $c->res->output("can't find template '$template_full_path'");
84 return;
85 }
86
87 # load template html
88 $c->stash->{'template_content'} =
89 $webpac->load_html( $template_full_path );
90
91 # load template list
92
93 opendir(my $d, $template_path) || $c->log->fatal("can't opendir '$template_path': $!");
94 my @templates = grep { /\.tt$/i } readdir($d);
95
96 $c->stash->{template_list} = \@templates;
97 $c->stash->{template_filename} = $template_filename;
98
99 $c->stash->{template} = 'editor/template.tt';
100 }
101
102 =item css
103
104 Return css.
105
106 B<Not finished>
107
108 =cut
109
110 sub css : Local {
111 my ( $self, $c ) = @_;
112
113 my $css_filename = $c->config->{webpac}->{default_css} || die("need default_css");
114 my $css_path = $c->config->{webpac}->{css_path} || die("need css_path");
115 my $webpac = $c->comp('Model::WebPAC');
116
117 my $css_full_path = "$css_path/$css_filename";
118
119 if ($c->req->params->{save_css}) {
120 my $t = $c->req->params->{css_content};
121 my $size = length($t);
122 $c->log->debug("saving $css_full_path, $size bytes");
123 if ($webpac->save_html( $css_full_path, $t )) {
124 $c->res->output("<span>saved $css_filename, $size bytes</span>");
125 } else {
126 $c->res->output("<span>error saving $css_filename!</span>");
127 }
128 return;
129 }
130
131 $c->log->debug("loading $css_full_path");
132
133 $c->stash->{'css_content'} = $webpac->load_html( $css_full_path );
134
135 $c->stash->{template} = 'editor/css.tt';
136 }
137
138 =item record
139
140 Return html of record taking C<mfn> and C<template_filename> from request.
141
142 =cut
143
144 sub record : Local {
145 my ( $self, $c ) = @_;
146
147 $c->log->debug('record params '.Dumper($c->req->params));
148
149 my $mfn = $c->req->params->{mfn};
150
151 if (! $mfn) {
152 $c->log->warn("no mfn, using 1");
153 $mfn = 1;
154 }
155
156 my $template_filename = $c->req->params->{template_filename};
157 if (! $template_filename) {
158 $template_filename = $c->config->{webpac}->{default_template} || $c->log->fatal("no webpac->default_template in configuration!");
159 $c->log->warn("no template_filename using $template_filename");
160 }
161
162 my $webpac = $c->comp('Model::WebPAC');
163
164 $c->res->output(
165 $webpac->record( mfn => $mfn, template => $template_filename )
166 );
167 }
168
169
170
171 =back
172
173 =head1 AUTHOR
174
175 Dobrica Pavlinusic, C<< <dpavlin@rot13.org> >>
176
177 =head1 LICENSE
178
179 This library is free software, you can redistribute it and/or modify
180 it under the same terms as Perl itself.
181
182 =cut
183
184 1;

  ViewVC Help
Powered by ViewVC 1.1.26