File: JSConfirmPanel.m

package info (click to toggle)
sope 5.12.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,588 kB
  • sloc: objc: 169,223; sh: 3,823; ansic: 3,409; javascript: 446; python: 318; makefile: 185
file content (264 lines) | stat: -rw-r--r-- 8,307 bytes parent folder | download | duplicates (9)
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
/*
  Copyright (C) 2000-2005 SKYRIX Software AG

  This file is part of SOPE.

  SOPE is free software; you can redistribute it and/or modify it under
  the terms of the GNU Lesser General Public License as published by the
  Free Software Foundation; either version 2, or (at your option) any
  later version.

  SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
  WARRANTY; without even the implied warranty of MERCHANTABILITY or
  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  License for more details.

  You should have received a copy of the GNU Lesser General Public
  License along with SOPE; see the file COPYING.  If not, write to the
  Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  02111-1307, USA.
*/

#import <NGObjWeb/WODynamicElement.h>

@interface JSConfirmPanel : WODynamicElement
{
  WOAssociation *action;
  WOAssociation *javaScriptFunction;
  WOAssociation *pageName;
  WOAssociation *confirmMessage;
  WOAssociation *altTag;
  WOAssociation *filename;
  WOAssociation *targetWindow;
  WOAssociation *string;

  /* non WO */
  WOAssociation *showPanel;
  WOElement     *template;
  WOAssociation *escapeJS;
  WOAssociation *framework;
}

@end

#include "common.h"

@implementation JSConfirmPanel

- (id)initWithName:(NSString *)_name
  associations:(NSDictionary *)_config
  template:(WOElement *)_subs
{
  if ((self = [super initWithName:_name associations:_config template:_subs]))
  {
    int funcCount;

    self->action             = WOExtGetProperty(_config,@"action");
    self->javaScriptFunction = WOExtGetProperty(_config,@"javaScriptFunction");
    self->pageName           = WOExtGetProperty(_config,@"pageName");
    self->confirmMessage     = WOExtGetProperty(_config,@"confirmMessage");
    self->altTag             = WOExtGetProperty(_config,@"altTag");
    self->filename           = WOExtGetProperty(_config,@"filename");
    self->targetWindow       = WOExtGetProperty(_config,@"targetWindow");
    self->string             = WOExtGetProperty(_config,@"string");
    self->showPanel          = WOExtGetProperty(_config,@"showPanel");
    self->escapeJS           = WOExtGetProperty(_config,@"escapeJS");
    self->framework          = WOExtGetProperty(_config,@"framework");

    funcCount = 0;
    if (self->action) funcCount++;
    if (self->pageName) funcCount++;
    if (self->javaScriptFunction) funcCount++;

    if (funcCount > 1) {
      NSLog(@"WARNING: JSConfirmPanel: choose only one of "
            @"action | pageName | javaScriptFunction");
    }
    if (funcCount < 1) {
      NSLog(@"WARNING: JSConfirmPanel: no function declared - choose one of"
            @"action | pageName | javaScriptFunction");
    }
    if (!self->confirmMessage) {
      NSLog(@"WARNING: JSConfirmPanel: no value for 'confirmMessage'"
            @" - using default");
    }
    
    self->template = [_subs retain];
  }
  return self;
}

- (void)dealloc {
  [self->action             release];
  [self->javaScriptFunction release];
  [self->pageName           release];
  [self->confirmMessage     release];
  [self->altTag             release];
  [self->filename           release];
  [self->targetWindow       release];
  [self->string             release];
  [self->template           release];
  [self->showPanel          release];
  [self->escapeJS           release];
  [self->framework          release];
  [super dealloc];
}

/* request processing */

- (void)takeValuesFromRequest:(WORequest *)_rq inContext:(WOContext *)_ctx {
  [self->template takeValuesFromRequest:_rq inContext:_ctx];
}

- (id)invokeActionForRequest:(WORequest *)_request inContext:(WOContext *)_ctx{
  id       result;
  NSString *name;

  if (self->showPanel &&
      ![self->showPanel boolValueInComponent:[_ctx component]]) {
    return nil;
  }
  
  if (self->pageName != nil) {
    name   = [self->pageName stringValueInComponent: [_ctx component]];
    result = [[_ctx application] pageWithName:name inContext:_ctx];
  }
  else if (self->action != nil) {
    result = [self->action valueInComponent:[_ctx component]];
  }
  else {
    result = [self->template invokeActionForRequest:_request inContext:_ctx];
  }
  return result;
}

/* response generation */

- (void)_appendPanelToResponse:(WOResponse *)_response 
  message:(NSString *)_msg
  inContext:(WOContext *)_ctx 
{
  if (![self->showPanel boolValueInComponent:[_ctx component]])
    return;
  
  [_response appendContentString:
               @"<script type=\"text/javascript\">\nvar res = confirm(\""];
  [_response appendContentHTMLString:_msg];
  [_response appendContentString:@"\");\n if (res) {\n"];

  if (self->javaScriptFunction) {
    NSString *js;
    
    js = [self->javaScriptFunction stringValueInComponent:[_ctx component]];
    [_response appendContentString:js];
  }
  else if (self->action || self->pageName) {
    [_response appendContentString:@"document.location.href=\""];
    [_response appendContentString:[_ctx componentActionURL]];
    [_response appendContentString:@"\";"];
  }
    
  [_response appendContentString:@"}"];
  [_response appendContentString:@"</script>"];
}

- (void)_appendLinkToResponse:(WOResponse *)_response 
  message:(NSString *)_msg
  inContext:(WOContext *)_ctx 
{
  WOComponent *comp;
  NSString    *tmp;
  NSArray     *languages;
  
  comp = [_ctx component];
  
  [_response appendContentString:@"<a onclick=\"javascript:return confirm('"];
  [_response appendContentHTMLString:_msg];
  [_response appendContentString:@"');\""];
  [_response appendContentString:@" href=\""];
  
  if (self->javaScriptFunction) {
      [_response appendContentString:@"javascript:"];
      [_response appendContentHTMLAttributeValue:
                 [self->javaScriptFunction stringValueInComponent:comp]];
  }
  else {
      [_response appendContentString:[_ctx componentActionURL]];
  }
  [_response appendContentString:@"\" "];
  if (self->targetWindow) {
      [_response appendContentString:@" target=\""];
      [_response appendContentHTMLAttributeValue:
                 [self->targetWindow stringValueInComponent: comp]];
      [_response appendContentString:@"\" "];
  }
  [self appendExtraAttributesToResponse:_response inContext:_ctx];
  [_response appendContentString:@" >"];

  /* link content */
  if (self->filename != nil) { /* image */
    WOResourceManager *rm;
    NSString          *frameworkName;

    frameworkName = (self->framework != nil)
      ? [self->framework stringValueInComponent:comp] 
      : [comp frameworkName];

    rm        = [[_ctx application] resourceManager];
    languages = [_ctx resourceLookupLanguages];
      
    tmp = [rm urlForResourceNamed:[self->filename stringValueInComponent:comp]
	      inFramework:frameworkName
	      languages:languages
	      request:[_ctx request]];
    
    [_response appendContentString:@"<img border=\"0\" src=\""];
    [_response appendContentString:tmp];
    [_response appendContentString:@"\" "];
    
    if (self->altTag != nil) {
      [_response appendContentString:@"alt=\""];
      [_response appendContentString:
                   [self->altTag stringValueInComponent:comp]];
      [_response appendContentString:@"\" "];
    }

    [_response appendContentString:
		 (_ctx->wcFlags.xmlStyleEmptyElements ? @" />" : @">")];
  }
  
  [self->template appendToResponse:_response inContext:_ctx];
  
  if (self->string != nil) {
    [_response appendContentString:
                 [self->string stringValueInComponent:comp]];
  }
  
  /* close link */
  [_response appendContentString:@"</a>"];
}

- (void)appendToResponse:(WOResponse *)_response inContext:(WOContext *)_ctx {
  NSString    *msg;
  WOComponent *comp;

  if ([_ctx isRenderingDisabled]) {
    [self->template appendToResponse:_response inContext:_ctx];
    return;
  }
  
  comp = [_ctx component];
  msg  = (self->confirmMessage)
    ? [self->confirmMessage stringValueInComponent:comp]
    : (NSString *)@"Really?";
  if (self->escapeJS != nil && [self->escapeJS boolValueInComponent:comp]) {
    msg = [msg stringByApplyingJavaScriptEscaping];
  }

  if (self->showPanel)
    [self _appendPanelToResponse:_response message:msg inContext:_ctx];
  else 
    [self _appendLinkToResponse:_response message:msg inContext:_ctx];
}

@end /* JSConfirmPanel */