Bug 29782: Fix handling records without title or content
[koha.git] / tools / additional-contents.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Script to manage the opac news.
6 # written 11/04
7 # Casta�eda, Carlos Sebastian - seba3c@yahoo.com.ar - Physics Library UNLP Argentina
8 # Modified to include news to KOHA intranet - tgarip@neu.edu.tr NEU library -Cyprus
9 # Copyright 2000-2002 Katipo Communications
10 # Copyright (C) 2013    Mark Tompsett
11 #
12 # Koha is free software; you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 3 of the License, or
15 # (at your option) any later version.
16 #
17 # Koha is distributed in the hope that it will be useful, but
18 # WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License
23 # along with Koha; if not, see <http://www.gnu.org/licenses>.
24
25 use Modern::Perl;
26 use CGI qw ( -utf8 );
27 use C4::Auth qw(get_template_and_user);
28 use C4::Koha;
29 use C4::Context;
30 use C4::Log qw( logaction );
31 use C4::Output qw(output_html_with_http_headers);
32 use C4::Languages qw(getTranslatedLanguages);
33 use Koha::DateUtils qw( dt_from_string output_pref );
34
35 use Koha::AdditionalContents;
36
37 my $cgi = CGI->new;
38
39 my $op             = $cgi->param('op') || 'list';
40 my $id             = $cgi->param('id');
41 my $category       = $cgi->param('category') || 'news';
42 my $wysiwyg;
43 my $redirect       = $cgi->param('redirect');
44 my $editmode;
45
46 if( $cgi->param('editmode') ){
47     $wysiwyg = $cgi->param('editmode') eq "wysiwyg" ? 1 : 0;
48 } else {
49     $wysiwyg = C4::Context->preference("AdditionalContentsEditor") eq "tinymce" ? 1 : 0;
50 }
51
52 $editmode = $wysiwyg eq 1 ? "wysiwyg" : "text";
53
54 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
55     {
56         template_name   => "tools/additional-contents.tt",
57         query           => $cgi,
58         type            => "intranet",
59         flagsrequired   => { tools => 'edit_additional_contents' },
60     }
61 );
62
63 my @messages;
64 if ( $op eq 'add_form' ) {
65
66     my $additional_content = Koha::AdditionalContents->find($id);
67     my $translated_contents;
68     if ( $additional_content ) {
69         $translated_contents = {
70             map { $_->lang => $_ } Koha::AdditionalContents->search(
71                 {
72                     category   => $additional_content->category,
73                     code       => $additional_content->code,
74                     location   => $additional_content->location,
75                     branchcode => $additional_content->branchcode,
76                 }
77             )->as_list
78         };
79         $category = $additional_content->category;
80     }
81     $template->param(
82         additional_content => $additional_content,
83         translated_contents => $translated_contents,
84     );
85 }
86 elsif ( $op eq 'add_validate' ) {
87     my $location   = $cgi->param('location');
88     my $code       = $cgi->param('code');
89     my $branchcode = $cgi->param('branchcode') || undef;
90     my $idnew      = $cgi->param('idnew');
91
92     my @lang       = $cgi->multi_param('lang');
93
94     my $expirationdate;
95     if ( $cgi->param('expirationdate') ) {
96         $expirationdate = dt_from_string( scalar $cgi->param('expirationdate') );
97     }
98     my $published_on = dt_from_string( scalar $cgi->param('published_on') );
99     my $number = $cgi->param('number');
100
101     my $original_default = $idnew ? Koha::AdditionalContents->find($idnew) : undef;
102
103     my $success = 1;
104     for my $lang ( sort {$a ne 'default'} @lang ) { # Process 'default' first
105         my $title   = $cgi->param( 'title_' . $lang );
106         my $content = $cgi->param( 'content_' . $lang );
107         # Force a default record
108         $content ||= '<!-- no_content -->' if $lang eq 'default';
109
110         my $additional_content = Koha::AdditionalContents->find(
111             {
112                 category   => $category,
113                 code       => $code,
114                 branchcode => $original_default ? $original_default->branchcode : $branchcode,
115                 lang       => $lang,
116             }
117         );
118         # Delete if title or content is empty
119         if( $lang ne 'default' && !$title && !$content ) {
120             if ( $additional_content ) {
121                 eval { $additional_content->delete };
122                 unless ($@) {
123                     logaction('NEWS', 'DELETE' , undef, sprintf("%s|%s|%s|%s", $additional_content->code, $additional_content->title, $additional_content->lang, $additional_content->content));
124                 }
125             }
126             next;
127         } elsif ( $additional_content ) {
128             my $updated;
129             eval {
130                 $additional_content->set(
131                     {
132                         category       => $category,
133                         code           => $code,
134                         location       => $location,
135                         branchcode     => $branchcode,
136                         title          => $title,
137                         content        => $content,
138                         lang           => $lang,
139                         expirationdate => $expirationdate,
140                         published_on   => $published_on,
141                         number         => $number,
142                         borrowernumber => $borrowernumber,
143                     }
144                 );
145                 $updated = $additional_content->_result->get_dirty_columns;
146                 $additional_content->store;
147                 $id = $additional_content->idnew;
148             };
149             if ($@) {
150                 $success = 0;
151                 push @messages, { type => 'error', code => 'error_on_update' };
152                 last;
153             }
154
155             logaction('NEWS', 'MODIFY' , undef, sprintf("%s|%s|%s|%s", $code, $title, $lang, $content))
156                 if C4::Context->preference("NewsLog") && $updated;
157         }
158         else {
159             my $additional_content = Koha::AdditionalContent->new(
160                 {
161                     category       => $category,
162                     code           => $code || 'tmp_code',
163                     location       => $location,
164                     branchcode     => $branchcode,
165                     title          => $title,
166                     content        => $content,
167                     lang           => $lang,
168                     expirationdate => $expirationdate,
169                     published_on   => $published_on,
170                     number         => $number,
171                     borrowernumber => $borrowernumber,
172                 }
173             )->store;
174             eval {
175                 $additional_content->store;
176                 unless ($code) {
177                     $additional_content->discard_changes;
178                     $code = $category eq 'news'
179                       ? 'News_' . $additional_content->idnew
180                       : $location . '_' . $additional_content->idnew;
181                     $additional_content->code($code)->store;
182                     $id = $additional_content->idnew;
183                 }
184             };
185             if ($@) {
186                 $success = 0;
187                 push @messages, { type => 'error', code => 'error_on_insert' };
188                 last;
189             }
190
191             logaction('NEWS', 'ADD' , undef, sprintf("%s|%s|%s|%s", $code, $title, $lang, $content))
192                 if C4::Context->preference("NewsLog");
193         }
194
195     }
196
197     if( $redirect eq "just_save" ){
198         print $cgi->redirect("/cgi-bin/koha/tools/additional-contents.pl?op=add_form&id=$id&category=$category&editmode=$editmode&redirect=done");
199         exit;
200     } else {
201         $op = 'list';
202     }
203 }
204 elsif ( $op eq 'delete_confirmed' ) {
205     my @ids = $cgi->multi_param('ids');
206     my $deleted = eval {
207
208         my $schema = Koha::Database->new->schema;
209         $schema->txn_do(
210             sub {
211                 my $contents =
212                   Koha::AdditionalContents->search( { idnew => \@ids } );
213
214                 while ( my $c = $contents->next ) {
215                     Koha::AdditionalContents->search( { code => $c->code } )->delete;
216                     if ( C4::Context->preference("NewsLog") ) {
217                         logaction('NEWS', 'DELETE' , undef, sprintf("%s|%s|%s|%s", $c->code, $c->title, $c->lang, $c->content));
218                     }
219                 }
220             }
221         );
222     };
223
224     if ( $@ or not $deleted ) {
225         push @messages, { type => 'error', code => 'error_on_delete' };
226     }
227     else {
228         push @messages, { type => 'message', code => 'success_on_delete' };
229     }
230
231     $op = 'list';
232 }
233
234 if ( $op eq 'list' ) {
235     my $additional_contents = Koha::AdditionalContents->search(
236         { category => $category, lang => 'default' },
237         { order_by => { -desc => 'published_on' } }
238     );
239     $template->param( additional_contents => $additional_contents );
240 }
241
242 my $translated_languages = C4::Languages::getTranslatedLanguages;
243 my @languages;
244 for my $language (@$translated_languages) {
245     for my $sublanguage ( @{ $language->{sublanguages_loop} } ) {
246         if ( $language->{plural} ) {
247             push @languages,
248               {
249                 lang        => $sublanguage->{rfc4646_subtag},
250                 description => $sublanguage->{native_description} . ' '
251                   . $sublanguage->{region_description} . ' ('
252                   . $sublanguage->{rfc4646_subtag} . ')',
253               };
254         }
255         else {
256             push @languages,
257               {
258                 lang        => $sublanguage->{rfc4646_subtag},
259                 description => $sublanguage->{native_description} . ' ('
260                   . $sublanguage->{rfc4646_subtag} . ')',
261               };
262         }
263     }
264 }
265 unshift @languages, {lang => 'default'} if @languages;
266
267 $template->param(
268     op        => $op,
269     category  => $category,
270     wysiwyg   => $wysiwyg,
271     editmode  => $editmode,
272     languages => \@languages,
273 );
274
275 output_html_with_http_headers $cgi, $cookie, $template->output;