rt 4.0.23
[freeside.git] / rt / share / html / Admin / Elements / EditScrip
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2015 Best Practical Solutions, LLC
6 %#                                          <sales@bestpractical.com>
7 %#
8 %# (Except where explicitly superseded by other copyright notices)
9 %#
10 %#
11 %# LICENSE:
12 %#
13 %# This work is made available to you under the terms of Version 2 of
14 %# the GNU General Public License. A copy of that license should have
15 %# been provided with this software, but in any event can be snarfed
16 %# from www.gnu.org.
17 %#
18 %# This work is distributed in the hope that it will be useful, but
19 %# WITHOUT ANY WARRANTY; without even the implied warranty of
20 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 %# General Public License for more details.
22 %#
23 %# You should have received a copy of the GNU General Public License
24 %# along with this program; if not, write to the Free Software
25 %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 %# 02110-1301 or visit their web page on the internet at
27 %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
28 %#
29 %#
30 %# CONTRIBUTION SUBMISSION POLICY:
31 %#
32 %# (The following paragraph is not intended to limit the rights granted
33 %# to you to modify and distribute this software under the terms of
34 %# the GNU General Public License and is only of importance to you if
35 %# you choose to contribute your changes and enhancements to the
36 %# community by submitting them to Best Practical Solutions, LLC.)
37 %#
38 %# By intentionally submitting any modifications, corrections or
39 %# derivatives to this work, or any other work intended for use with
40 %# Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 %# you are the copyright holder for those contributions and you grant
42 %# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 %# royalty-free, perpetual, license to use, copy, create derivative
44 %# works based on those contributions, and sublicense and distribute
45 %# those contributions and any derivatives thereof.
46 %#
47 %# END BPS TAGGED BLOCK }}}
48 <& /Elements/ListActions, actions => \@actions &>
49   
50 <form method="post" action="Scrip.html" id="ModifyScrip" name="ModifyScrip">
51 <input type="hidden" class="hidden" name="id" value="<% $id %>" />
52 <input type="hidden" class="hidden" name="Queue" value="<% $Queue %>" />
53
54 <&| /Widgets/TitleBox, title => loc('Scrip Fields') &>
55 <table>
56
57 <tr><td class="label"><&|/l&>Description</&>:</td><td class="value">\
58 % if ( $immutable ) {
59 <% $scrip->Description %> <i>(system scrip)</i>
60 <input type="hidden" name="Scrip-<% $id %>-Description" value="<% $scrip->Description %>">
61 % } else {
62 <input name="Scrip-<% $id %>-Description" \
63     size="60" \
64     value="<% $ARGS{"Scrip-$id-Description"} || $scrip->Description || '' %>" />
65 % }
66 </td></tr>
67
68 <tr><td class="label"><&|/l&>Condition</&>:</td><td class="value">\
69 % if ( $immutable ) {
70 <% loc( $scrip->ConditionObj->Name ) %>
71 <input type="hidden" name="Scrip-<%$id%>-Condition" value="<% $scrip->ConditionObj->Id %>">
72 % } else {
73 <& /Admin/Elements/SelectScripCondition,
74     Name => "Scrip-$id-ScripCondition",
75     Default => $ARGS{"Scrip-$id-ScripCondition"} || $scrip->ConditionObj->Id,
76     ScripObj => $scrip,
77     Queue => $Queue,
78 &>
79 % }
80 </td></tr>
81
82 <& /Admin/Elements/EditScripOptions,
83     Name => "Condition",
84     Default => $ARGS{"Scrip-$id-ConditionRules"} || $scrip->ConditionRules,
85     Queue => $Queue,
86     ScripX => $ARGS{"Scrip-$id-ScripCondition"} || $scrip->ConditionObj->Id,
87 &>
88
89 <tr><td class="label"><&|/l&>Action</&>:</td><td class="value">\
90 % if ( $immutable ) {
91 <% loc( $scrip->ActionObj->Name ) %>
92 <input type="hidden" name="Scrip-<%$id%>-Action" value="<% $scrip->ActionObj->Id %>">
93 % } else {
94 <& /Admin/Elements/SelectScripAction,
95     Name => "Scrip-$id-ScripAction",
96     Default => $ARGS{"Scrip-$id-ScripAction"} || $scrip->ActionObj->Id,
97     ScripObj => $scrip,
98     Queue => $Queue,
99 &>
100 % }
101 </td></tr>
102
103 <& /Admin/Elements/EditScripOptions,
104     Name => "Action",
105     Default => $ARGS{"Scrip-$id-ActionRules"} || $scrip->ActionRules,
106     Queue => $Queue,
107     ScripX => $ARGS{"Scrip-$id-ScripAction"} || $scrip->ActionObj->Id,
108 &>
109
110 <tr><td class="label"><&|/l&>Template</&>:</td><td class="value">\
111 %# immutable flag doesn't affect this
112 <& /Admin/Elements/SelectTemplate,
113     Name => "Scrip-$id-Template",
114     Default => $ARGS{"Scrip-$id-Template"} || $scrip->TemplateObj->Id,
115     Queue => $Queue,
116 &>
117 </td></tr>
118
119 <tr><td class="label"><&|/l&>Stage</&>:</td><td class="value">\
120 %# or this
121 <& /Admin/Elements/SelectStage,
122     Name => "Scrip-$id-Stage",
123     Default => $ARGS{"Scrip-$id-Stage"} || $scrip->Stage,
124 &></td></tr>
125
126 </table>
127 </&>
128
129 % if ($session{CurrentUser}->HasRight(Object => $RT::System, Right => 'ExecuteCode')) {
130 <& /Elements/Submit,
131     Label => $SubmitLabel,
132     Reset => 1,
133 &><br />
134
135 <&| /Widgets/TitleBox, title => loc('User Defined conditions and actions') &>
136 <table>
137 <tr><td colspan="2">
138 <i><&|/l&>(Use these fields when you choose 'User Defined' for a condition or action)</&></i>
139 </td></tr>
140
141 <tr><td class="labeltop"><&|/l&>Custom condition</&>:</td><td class="value">
142 % my $code = $ARGS{"Scrip-$id-CustomIsApplicableCode"} || $scrip->CustomIsApplicableCode || '';
143 % my $lines = @{[ $code =~ /\n/gs ]} + 3;
144 % $lines = $min_lines if $lines < $min_lines;
145 <textarea cols="80" rows="<% $lines %>" name="Scrip-<% $id %>-CustomIsApplicableCode"><% $code %></textarea>
146 </td></tr>
147
148 <tr><td class="labeltop"><&|/l&>Custom action preparation code</&>:</td><td class="value">
149 % $code = $ARGS{"Scrip-$id-CustomPrepareCode"} || $scrip->CustomPrepareCode || '';
150 % $lines = @{[ $code =~ /\n/gs ]} + 3;
151 % $lines = $min_lines if $lines < $min_lines;
152 <textarea cols="80" rows="<% $lines %>" name="Scrip-<% $id %>-CustomPrepareCode"><% $code %></textarea>
153 </td></tr>
154
155 <tr><td class="labeltop"><&|/l&>Custom action cleanup code</&>:</td><td class="value">
156 % $code = $ARGS{"Scrip-$id-CustomCommitCode"} || $scrip->CustomCommitCode || '';
157 % $lines = @{[ $code =~ /\n/gs ]} + 3;
158 % $lines = $min_lines if $lines < $min_lines;
159 <textarea cols="80" rows="<% $lines %>" name="Scrip-<% $id || '' %>-CustomCommitCode"><% $code %></textarea>
160 </td></tr>
161
162 </table>
163 </&>
164
165 % }
166
167 <& /Elements/Submit,
168     Label => $SubmitLabel,
169     Reset => 1,
170 &>
171
172 </form>
173 <%init>
174
175 my (@actions, $SubmitLabel);
176 my $scrip = RT::Scrip->new( $session{'CurrentUser'} );
177 my $immutable = 0;
178
179 if ( $id ) {
180     $scrip->Load( $id );
181     unless ( $id = $scrip->id ) {
182         push @actions, loc("Couldn't load scrip #[_1]", $id);
183     }
184     $SubmitLabel = loc('Save Changes');
185     my $a = $scrip->FirstAttribute('Immutable');
186     if ( defined($a) and $a->Content ) {
187         $immutable = 1;
188     }
189 }
190
191 unless ( $id ) {
192     $id = 'new';
193     $SubmitLabel = loc('Create');
194 }
195
196 my $min_lines = 10;
197
198 my ($ok, $msg) = $scrip->CompileCheck;
199 push @actions, $msg if !$ok;
200
201 </%init>
202
203 <%ARGS>
204 $id => undef
205 $title => undef
206 $Queue => 0
207 </%ARGS>
208
209 <%METHOD Process>
210 <%ARGS>
211 $id => undef
212 $Queue => undef
213 </%ARGS>
214 <%INIT>
215 return ($id) unless $id;
216
217 my @rules = ('ConditionRules', 'ActionRules');
218 if ( exists($ARGS{"Scrip-$id-ScripCondition"}) ) {
219   foreach my $rules (@rules) {
220     my $prefix = join('-', 'Scrip', $id, $rules);
221     $ARGS{$prefix} = join("\n", map {
222       $_ =~ /^$rules-(.*)$/ ? 
223             ($1, $ARGS{$_}) : ()
224     } keys(%ARGS)
225     );
226   }
227 }
228
229 my $scrip = RT::Scrip->new( $session{'CurrentUser'} );
230 if ( $id eq 'new' ) {
231     return $scrip->Create(
232         Queue                  => $Queue,
233         ScripAction            => $ARGS{"Scrip-new-ScripAction"},
234         ScripCondition         => $ARGS{"Scrip-new-ScripCondition"},
235         Template               => $ARGS{"Scrip-new-Template"},
236         Description            => $ARGS{"Scrip-new-Description"},
237         CustomPrepareCode      => $ARGS{"Scrip-new-CustomPrepareCode"},
238         CustomCommitCode       => $ARGS{"Scrip-new-CustomCommitCode"},
239         CustomIsApplicableCode => $ARGS{"Scrip-new-CustomIsApplicableCode"},
240         Stage                  => $ARGS{"Scrip-new-Stage"},
241         ConditionRules         => $ARGS{"Scrip-new-ConditionRules"},
242         ActionRules            => $ARGS{"Scrip-new-ActionRules"},
243     );
244 }
245 else {
246     $scrip->Load( $id );
247     return (undef, loc("Couldn't load scrip #[_1]", $id))
248         unless $scrip->id;
249
250     my @attribs = qw(Queue ScripAction ScripCondition Template Stage
251         Description CustomPrepareCode CustomCommitCode CustomIsApplicableCode
252         ConditionRules ActionRules);
253     my @results = UpdateRecordObject(
254         AttributesRef   => \@attribs,
255         AttributePrefix => 'Scrip-'.$scrip->Id,
256         Object          => $scrip,
257         ARGSRef         => \%ARGS
258     );
259     return ($scrip->id, @results);
260 }
261 </%INIT>
262 </%METHOD>