summaryrefslogtreecommitdiff
path: root/httemplate/edit/process/elements/process.html
blob: a671ca118255f719db92e8c6e127e34b040f5a62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<%doc>

Example:

 include( 'elements/process.html',

   ###
   # required
   ###

  'table' => 'tablename',

   #? 'primary_key' => #required when the dbdef doesn't know...???
   #? 'fields' => []   #""

   ###
   # optional
   ###

   'viewall_dir'  => '', #'search' or 'browse', defaults to 'search'
   OR
   'redirect'     => 'view/table.cgi?', # value of primary key is appended
   OR
   'popup_reload' => 'Momentary success message', #will reload parent window

   'error_redirect' => popurl(2).'edit/table.cgi?', #query string appended

   'edit_ext' => 'html', #defaults to 'html', you might want 'cgi' while the
                         #naming is still inconsistent

   'copy_on_empty'  => [ 'old_field_name', 'another_old_field', ... ],

   'clear_on_error' => [ 'form_field1', 'form_field2', ... ],

   'process_m2m' => { 'link_table'   => 'link_table_name',
                      'target_table' => 'target_table_name',
                    },
   'process_m2name' => { 'link_table'   => 'link_table_name',
                         'link_static' => { 'column' => 'value' },
                         'num_col' => 'column', #if column name is different in
                                                #link_table than source_table 
                         'name_col' => 'name_column',
                         'names_list' => [ 'list', 'names' ],
                         
                         'param_style' => 'link_table.value checkboxes',
                         #or#
                         'param_style' => 'name_colN values',


                       },

   #supplies arguments to insert() and replace()
   # for use with tables that are FS::option_Common
   'args_callback' => sub { my( $cgi, $object ) = @_; },

   'debug' => 1, #turns on debugging output

   #agent virtualization
   'agent_virt'       => 1,
   'agent_null_right' => 'Access Right Name',

 )

</%doc>
%if ( $error ) {
%
%  my $edit_ext = $opt{'edit_ext'} || 'html';
%  my $url = $opt{'error_redirect'} || popurl(2)."$table.$edit_ext";
%  if ( length($cgi->query_string) > 1920 ) { #stupid IE 2083 URL limit
% 
%    my $session = int(rand(4294967296)); #XXX
%    my $pref = new FS::access_user_pref({
%      'usernum'    => $FS::CurrentUser::CurrentUser->usernum,
%      'prefname'   => "redirect$session",
%      'prefvalue'  => $cgi->query_string,
%      'expiration' => time + 3600, #1h?  1m?
%    });
%    my $pref_error = $pref->insert;
%    if ( $pref_error ) {
%      die "FATAL: couldn't even set redirect cookie: $pref_error".
%          " attempting to set redirect$session to ". $cgi->query_string."\n";
%    }
%
<% $cgi->redirect("$url?redirect=$session") %>
%
%  } else {
%
<% $cgi->redirect("$url?". $cgi->query_string ) %>
%
%  } 
%
% #different ways of handling success
%
%} elsif ( $opt{'popup_reload'} ) {

  <% include('/elements/header-popup.html', $opt{'popup_reload'} ) %>

  <SCRIPT TYPE="text/javascript">
    window.top.location.reload();
  </SCRIPT>

  </BODY>
  </HTML>

%} elsif ( $opt{'redirect'} ) {
%
<% $cgi->redirect( $opt{'redirect'}. $pkeyvalue ) %>
%
%} else { 
%
<% $cgi->redirect( popurl(3). ($opt{viewall_dir}||'search'). "/$table.html" ) %>
%}
<%once>

  my $me = 'process.html:';

</%once>
<%init>

my(%opt) = @_;

my $curuser = $FS::CurrentUser::CurrentUser;

#false laziness w/edit.html
my $table = $opt{'table'};
my $class = "FS::$table";
my $pkey = dbdef->table($table)->primary_key; #? $opt{'primary_key'} || 
my $fields = $opt{'fields'}
             #|| [ grep { $_ ne $pkey } dbdef->table($table)->columns ];
             || [ fields($table) ];

my $pkeyvalue = $cgi->param($pkey);

my $old = '';
if ( $pkeyvalue ) {
  $old = qsearchs({
    'table'   => $table,
    'hashref' => { $pkey => $pkeyvalue },
    'extra_sql' => ( $opt{'agent_virt'}
                       ? ' AND '. $curuser->agentnums_sql(
                                    'null_right' => $opt{'agent_null_right'}
                                  )
                       : ''
                   ),
  });
}

my %hash = map { $_ => scalar($cgi->param($_)) } @$fields;

my $new = $class->new( \%hash );

if ( $opt{'agent_virt'} ) {
  die "illegal agentnum"
    unless $curuser->agentnums_href->{$new->agentnum}
        or $opt{'agent_null_right'}
           && ! $new->agentnum
           && $curuser->access_right($opt{'agent_null_right'});
}

if ($old && exists($opt{'copy_on_empty'})) {
  foreach my $field (@{$opt{'copy_on_empty'}}) {
    $new->set($field, $old->get($field))
      unless scalar($cgi->param($field));
  }
}

my $error = $new->check;

my @args = ();
if ( !$error && $opt{'args_callback'} ) {
  @args = &{ $opt{'args_callback'} }( $cgi, $new );
}

if ( !$error && $opt{'debug'} ) {
  warn "$me updating record in $table table using $class class\n";
  warn Dumper(\%hash);
  warn "with args: \n". Dumper(\@args) if @args;
}

if ( !$error ) {
  if ( $pkeyvalue ) {
    $error = $new->replace($old, @args);
  } else {
    $error = $new->insert(@args);
    $pkeyvalue = $new->getfield($pkey);
  }
}

if ( !$error && $opt{'process_m2m'} ) {

  if ( $opt{'debug'} ) {
    warn "$me processing m2m:\n". Dumper( %{ $opt{'process_m2m'} },
                                          'params' => scalar($cgi->Vars),
                                        );
  }

  $error = $new->process_m2m( %{ $opt{'process_m2m'} },
                              'params' => scalar($cgi->Vars),
                            );
}

if ( !$error && $opt{'process_m2name'} ) {

  if ( $opt{'debug'} ) {
    warn "$me processing m2name:\n". Dumper( %{ $opt{'process_m2name'} },
                                             'params' => scalar($cgi->Vars),
                                           );
  }

  $error = $new->process_m2name( %{ $opt{'process_m2name'} },
                                 'params' => scalar($cgi->Vars),
                               );
}


if ( $error ) {
  $cgi->param('error', $error);
  if ( $opt{'clear_on_error'} && scalar(@{$opt{'clear_on_error'}}) ) {
    foreach my $field (@{$opt{'clear_on_error'}}) {
      $cgi->param($field, '')
    }
  }
}

</%init>