File: omail-wa-install.sql

package info (click to toggle)
virtuoso-opensource 7.2.5.1%2Bdfsg1-0.3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 285,240 kB
  • sloc: ansic: 641,220; sql: 490,413; xml: 269,570; java: 83,893; javascript: 79,900; cpp: 36,927; sh: 31,653; cs: 25,702; php: 12,690; yacc: 10,227; lex: 7,601; makefile: 7,129; jsp: 4,523; awk: 1,697; perl: 1,013; ruby: 1,003; python: 326
file content (476 lines) | stat: -rw-r--r-- 15,361 bytes parent folder | download | duplicates (2)
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
--
--  $Id$
--
--  This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
--  project.
--
--  Copyright (C) 1998-2018 OpenLink Software
--
--  This project is free software; you can redistribute it and/or modify it
--  under the terms of the GNU General Public License as published by the
--  Free Software Foundation; only version 2 of the License, dated June 1991.
--
--  This program 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
--  General Public License for more details.
--
--  You should have received a copy of the GNU General Public License along
--  with this program; if not, write to the Free Software Foundation, Inc.,
--  51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
--

-------------------------------------------------------------------------------
--
create procedure OMAIL.WA.exec_no_error(in expr varchar, in execType varchar := '', in execTable varchar := '', in execColumn varchar := '')
{
  declare
    state,
    message,
    meta,
    result any;

  log_enable(1);
  if (execType = 'C') {
    if ((select 1 from DB.DBA.SYS_COLS where "TABLE" = execTable and "COLUMN" = execColumn) = 1)
      return;
  }
  if (execType = 'S') {
    declare S varchar;
    declare maxID integer;

    S := sprintf('select max(%s) from %s', execColumn, execTable);
    maxID := 1000;
    state := '00000';

    exec(S, state, message, vector(), 0, meta, result);
    if (state = '00000')
      if (not isnull(result[0][0]))
        maxID := result[0][0] + 1;

    expr := sprintf(expr, maxID);
  }
  exec(expr, state, message, vector(), 0, meta, result);
}
;

OMAIL.WA.exec_no_error(
  'insert replacing WA_TYPES(WAT_NAME, WAT_TYPE, WAT_REALM, WAT_DESCRIPTION) values (\'oMail\', \'db.dba.wa_mail\', \'wa\', \'Mail\')'
)
;

OMAIL.WA.exec_no_error(
  'insert soft WA_MEMBER_TYPE (WMT_APP, WMT_NAME, WMT_ID, WMT_IS_DEFAULT) values (\'oMail\', \'owner\', 1, 0)'
)
;

-------------------------------------------------------------------------------
--
create procedure OMAIL.WA.omail_install()
{
  declare
    iIsDav integer;
  declare
    sHost varchar;

  -- Add a virtual directory for oMail - public www -------------------------
  sHost := cast(registry_get('_oMail_path_') as varchar);
  if (sHost = '0')
    sHost := '/apps/oMail/';
  iIsDav := 1;
  if (isnull(strstr(sHost, '/DAV/VAD')))
    iIsDav := 0;

  -- Add a virtual directory for web mail -----------------------
  VHOST_REMOVE(lpath      => '/oMail');
  VHOST_DEFINE(lpath      => '/oMail',
               ppath      => concat(sHost, 'www-root/portal.vsp'),
               opts       => vector('noinherit', 1),
               vsp_user   => 'dba',
               realm      => 'wa',
               def_page   => 'index.vsp',
               is_dav     => iIsDav,
               ses_vars   => 1
              );

  VHOST_REMOVE(lpath      => '/oMail/i');
  VHOST_DEFINE(lpath      => '/oMail/i',
               ppath      => concat(sHost, 'www-root/mail/i/'),
               vsp_user   => 'dba',
               realm      => 'wa',
               def_page   => 'index.html',
               is_dav     => iIsDav,
               ses_vars   => 1
              );

  VHOST_REMOVE(lpath      => '/oMail/res');
  VHOST_DEFINE(lpath      => '/oMail/res',
               ppath      => concat(sHost, 'www-root/res/'),
               vsp_user   => 'dba',
               realm      => 'wa',
               def_page   => 'index.html',
               is_dav     => iIsDav,
               ses_vars   => 1
              );

  if ((select count(*) from DB.DBA.WA_DOMAINS) = 0)
  insert replacing DB.DBA.WA_DOMAINS(WD_DOMAIN) values('domain.com');
}
;


OMAIL.WA.exec_no_error(
'
  create type wa_mail under web_app as (
    wa_domain varchar
	)
  constructor method wa_mail(stream any),
  overriding method wa_new_inst(login varchar) returns any,
  overriding method wa_front_page (stream any) returns any,
  overriding method wa_state_edit_form(stream any) returns any,
  overriding method wa_home_url() returns varchar,
  overriding method wa_drop_instance() returns any,
  overriding method wa_domain_set (in domain varchar) returns any
'
)
;

OMAIL.WA.exec_no_error(
  'alter type wa_mail add overriding method wa_domain_set (in domain varchar) returns any'
)
;

OMAIL.WA.exec_no_error(
  'alter type wa_mail add overriding method wa_front_page_as_user(inout stream any, in user_name varchar) returns any'
)
;

OMAIL.WA.exec_no_error(
  'alter type wa_mail add overriding method wa_size() returns int'
)
;

OMAIL.WA.exec_no_error(
  'alter type wa_mail add method wa_vhost_options () returns any'
)
;

OMAIL.WA.exec_no_error(
  'alter type wa_mail add overriding method wa_addition_urls () returns any'
)
;

OMAIL.WA.exec_no_error(
  'alter type wa_mail add method get_param (in param varchar) returns any'
)
;

OMAIL.WA.exec_no_error(
  'alter type wa_mail add overriding method wa_dashboard () returns any'
)
;

OMAIL.WA.exec_no_error(
  'alter type wa_mail add method wa_dashboard_last_item () returns any'
)
;

OMAIL.WA.exec_no_error(
  'alter type wa_mail add overriding method wa_state_edit_form(stream any) returns any'
)
;

OMAIL.WA.exec_no_error(
  'alter type wa_mail add overriding method wa_rdf_url (in vhost varchar, in lhost varchar) returns varchar'
)
;

OMAIL.WA.exec_no_error(
  'alter type wa_mail add method wa_id () returns any'
)
;

-------------------------------------------------------------------------------
--
create constructor method wa_mail (inout stream any) for wa_mail
{
  return;
}
;

-------------------------------------------------------------------------------
--
create method wa_id () for wa_mail
{
  return (select WAI_ID from WA_INSTANCE where WAI_NAME = self.wa_name);
}
;

-------------------------------------------------------------------------------
--
create method wa_drop_instance () for wa_mail
{
  declare iUserID, iCount any;

  iUserID := (select WAM_USER from WA_MEMBER where WAM_INST = self.wa_name and WAM_MEMBER_TYPE = 1);

  select count(WAM_USER) into iCount
    from WA_MEMBER,
         WA_INSTANCE
   where WAI_NAME = WAM_INST
     and WAI_TYPE_NAME = 'oMail'
     and WAM_USER = iUserID;

  OMAIL.WA.omail_delete_user_data (self.wa_id (), iUserID);
  if (iCount = 1)
    OMAIL.WA.omail_delete_user_data (1, iUserID);

  declare path, login varchar;
	login := (select U_NAME from SYS_USERS where U_ID = iUserID);
	path := sprintf('/DAV/home/%s/%s/', login, self.wa_name);
	delete from WS.WS.SYS_DAV_COL where COL_ID = DAV_SEARCH_ID (path, 'C');

  (self as web_app).wa_drop_instance ();
}
;

-------------------------------------------------------------------------------
--
create method wa_new_inst (in login varchar) for wa_mail
{
  declare iUserID integer;
  declare retValue any;

  iUserID := (select U_ID from DB.DBA.SYS_USERS where U_NAME = login);
  if (isnull (iUserID))
    signal('EN001', 'not a Virtuoso WA user');

  if (self.wa_member_model is null)
    self.wa_member_model := 0;

  insert into WA_INSTANCE (WAI_NAME, WAI_TYPE_NAME, WAI_INST, WAI_DESCRIPTION)
  	values (self.wa_name, 'oMail', self, 'Description');

  OMAIL.WA.omail_init_user_data (1, iUserID, self.wa_name);

  retValue := (self as web_app).wa_new_inst (login);

  -- Create DET Folder
  declare path varchar;

	path := sprintf('/DAV/home/%s/%s/', login, self.wa_name);
  DB.DBA.DAV_MAKE_DIR (path, iUserID, null, '110100000N');
  DAV_PROP_SET_INT (path, 'virt:oMail-DomainId', '1', null, null, 0, 0, 1);
  DAV_PROP_SET_INT (path, 'virt:oMail-UserName', login, null, null, 0, 0, 1);
  DAV_PROP_SET_INT (path, 'virt:oMail-FolderName', 'NULL', null, null, 0, 0, 1);
  DAV_PROP_SET_INT (path, 'virt:oMail-NameFormat', '^from^ ^subject^', null, null, 0, 0, 1);
  update WS.WS.SYS_DAV_COL set COL_DET = 'oMail' where COL_ID = DAV_SEARCH_ID (path, 'C');

  return retValue;
}
;

-------------------------------------------------------------------------------
--
create method wa_front_page (inout stream any) for wa_mail
{
  declare sSid varchar;

  sSid := (select VS_SID from VSPX_SESSION where VS_REALM = 'wa' and VS_UID = connection_get('vspx_user'));

  http_request_status ('HTTP/1.1 302 Found');
  http_header(sprintf('Location: %s?sid=%s&realm=%s\r\n', self.wa_home_url(), sSid, 'wa'));
  return;
}
;

-------------------------------------------------------------------------------
--
create method wa_state_edit_form(inout stream any) for wa_mail
{
  declare sSid varchar;

  if (exists(select 1
               from SYS_USERS A,
                    WA_MEMBER B
              where A.U_NAME = connection_get('vspx_user')
                and B.WAM_USER = A.U_ID
                and B.WAM_INST= self.wa_name
                and B.WAM_MEMBER_TYPE = 1))
  {
    sSid := (select VS_SID from VSPX_SESSION where VS_REALM = 'wa' and VS_UID = connection_get('vspx_user'));
    http_request_status ('HTTP/1.1 302 Found');
    http_header(sprintf('Location: %s?sid=%s&realm=%s\r\n', WS.WS.EXPAND_URL(self.wa_home_url(), 'set_mail.vsp'), sSid, 'wa'));
  return;
}
  signal('42001', 'Not a owner');
}
;

-------------------------------------------------------------------------------
--
create method wa_home_url () for wa_mail
{
  return sprintf ('/oMail/%d/box.vsp', self.wa_id ());
}
;

-------------------------------------------------------------------------------
--
create method wa_domain_set (in domain varchar) for wa_mail
{
  self.wa_domain := domain;
  return self;
}
;

-------------------------------------------------------------------------------
--
create method wa_front_page_as_user (inout stream any, in user_name varchar) for wa_mail
{
  declare sSid, sOwner varchar;

  sOwner := (select TOP 1 U_NAME from SYS_USERS A, WA_MEMBER B where B.WAM_USER = A.U_ID and B.WAM_INST= self.wa_name and B.WAM_MEMBER_TYPE = 1);
  sSid := md5 (concat (datestring (now ()), http_client_ip (), http_path ()));
  insert into DB.DBA.VSPX_SESSION (VS_REALM, VS_SID, VS_UID, VS_STATE, VS_EXPIRY)
    values ('wa', sSid, sOwner, serialize ( vector ('vspx_user', user_name, 'owner_user', sOwner)), now());
  http_request_status ('HTTP/1.1 302 Found');
  http_header(sprintf('Location: %s?sid=%s&realm=%s\r\n', self.wa_home_url(), sSid, 'wa'));
  return;
}
;

-------------------------------------------------------------------------------
--
create method wa_size () for wa_mail
{
  return 0;
}
;

-------------------------------------------------------------------------------
--
create method wa_vhost_options () for wa_mail
{
  return vector (
           concat(self.get_param('host'), 'www-root/portal.vsp'),  -- physical home
           'box.vsp',                                           -- default page
           'dba',                                                  -- user for execution
           0,                                                      -- directory browsing enabled (flag 0/1)
           self.get_param('isDAV'),                                -- WebDAV repository  (flag 0/1)
           vector ('noinherit', 1, 'domain', self.wa_id ()),       -- virtual directory options, empty is not applicable
           null,                                                   -- post-processing function (null is not applicable)
           null                                                    -- pre-processing (authentication) function
         );
}
;

-------------------------------------------------------------------------------
--
create method wa_addition_urls () for wa_mail {
  return vector(
    vector(null, null, '/oMail/i',     self.get_param('host') || 'www-root/mail/i/', self.get_param('isDAV'), 0, null, null, null, null, 'dba', null, null, 1, null, null, null, 0),
    vector(null, null, '/oMail/i/res', self.get_param('host') || 'www-root/res/',    self.get_param('isDAV'), 0, null, null, null, null, 'dba', null, null, 1, null, null, null, 0)
  );
}
;

-------------------------------------------------------------------------------
--
create method get_param (in param varchar) for wa_mail
{
  declare retValue any;

  retValue := null;
  if (param = 'host')
  {
    retValue := registry_get('_oMail_path_');
    if (cast(retValue as varchar) = '0')
      retValue := '/apps/oMail/';
  }
  else if (param = 'isDAV')
  {
    retValue := 1;
    if (isnull(strstr(self.get_param('host'), '/DAV/VAD')))
      retValue := 0;
  }
  return retValue;
}
;

-------------------------------------------------------------------------------
--
create method wa_dashboard () for wa_mail
{
  declare domainID, userID integer;

  domainID := self.wa_id ();
  userID := OMAIL.WA.domain_owner_id (domainID);
  return (select XMLAGG ( XMLELEMENT ( 'dash-row',
                                       XMLATTRIBUTES ( 'normal' as "class",
                                                       OMAIL.WA.dt_format(_time, 'Y/M/D H:N') as "time",
                                                       self.wa_name as "application"
                                                      ),
                                       XMLELEMENT ( 'dash-data',
	                                                  XMLATTRIBUTES ( concat (N'<a href="', cast (SIOC..mail_post_iri (domainID, _id) as nvarchar), N'">', OMAIL.WA.utf2wide (_title), N'</a>') as "content",
	                                                                  0 as "comments"
	                                                                )
                                          	      )
                                     )
                     	  )
            from OMAIL.WA.dashboard_rs(p0, p1)(_id integer, _title varchar, _time datetime) x
           where p0 = 1
             and p1 = userID
         );
}
;

-------------------------------------------------------------------------------
--
create method wa_dashboard_last_item () for wa_mail
{
  declare waID, domainID, userID integer;

  domainID := self.wa_id ();
  userID := OMAIL.WA.domain_owner_id (domainID);
  waID := coalesce((select top 1 WAI_ID from DB.DBA.WA_MEMBER, DB.DBA.WA_INSTANCE where WAM_INST = WAI_NAME and WAM_USER = userID and WAI_TYPE_NAME = 'oMail' order by WAI_ID), 0);
  if (waID = domainID)
    domainID := 1;
  return OMAIL.WA.dashboard_get(domainID, userID);
}
;

-------------------------------------------------------------------------------
--
create method wa_rdf_url (in vhost varchar, in lhost varchar) for wa_mail
{
  declare domainID, userID integer;

  domainID := self.wa_id ();
  userID := OMAIL.WA.domain_owner_id (domainID);
  return sprintf('http://' || DB.DBA.http_get_host () || '/oMail/res/export.vsp?output=about&did=%d&uid=%d', domainID, userID);
}
;

-------------------------------------------------------------------------------
--
create procedure OMAIL.WA.path_upgrade ()
{
  if (registry_get ('omail_path_upgrade2') = '1')
    return;

  for (select WAI_ID from DB.DBA.WA_INSTANCE where WAI_TYPE_NAME = 'oMail') do
  {
    for (select HP_LPATH as _lpath,
                HP_HOST as _vhost,
                HP_LISTEN_HOST as _lhost
           from DB.DBA.HTTP_PATH
          where HP_LPATH = '/oMail/' || cast (WAI_ID as varchar) || '/box.vsp') do
    {
      VHOST_REMOVE (vhost=>_vhost, lhost=>_lhost, lpath=>_lpath);
    }
  }
  registry_set ('omail_path_upgrade2', '1');
}
;
OMAIL.WA.path_upgrade ();