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 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
|
--
-- $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
--
-------------------------------------------------------------------------------
--
-- Contains all subscribed feeds
--
-------------------------------------------------------------------------------
ENEWS.WA.exec_no_error('
create table ENEWS.WA.FEED (
EF_ID integer identity,
EF_URI varchar not null,
EF_HOME_URI varchar,
EF_SOURCE_URI varchar,
EF_TITLE varchar,
EF_DESCRIPTION varchar,
EF_COPYRIGHT varchar,
EF_CSS varchar,
EF_FORMAT varchar,
EF_LANG varchar default \'us-en\',
EF_UPDATE_PERIOD varchar default \'hourly\',
EF_UPDATE_FREQ integer default 1,
EF_STORE_DAYS integer default 30,
EF_PSH_SERVER varchar,
EF_PSH_ENABLED integer default 0,
EF_PSH_TOKEN varchar,
EF_SALMON_SERVER varchar,
EF_TAG varchar,
EF_LAST_UPDATE datetime,
EF_QUEUE_FLAG integer,
EF_UPDATE integer,
EF_ERROR_LOG long varchar default null,
EF_DATA long xml,
EF_DASHBOARD long varchar,
EF_ICON_URI varchar,
EF_IMAGE_URI varchar,
primary key (EF_ID)
)
');
ENEWS.WA.exec_no_error('
create unique index SK_FEED_01 on ENEWS.WA.FEED(EF_URI)
');
ENEWS.WA.exec_no_error (
'alter table ENEWS.WA.FEED add EF_DASHBOARD long varchar', 'C', 'ENEWS.WA.FEED', 'EF_DASHBOARD'
);
ENEWS.WA.exec_no_error (
'alter table ENEWS.WA.FEED add EF_ICON_URI varchar', 'C', 'ENEWS.WA.FEED', 'EF_ICON_URI'
);
ENEWS.WA.exec_no_error (
'alter table ENEWS.WA.FEED add EF_IMAGE_URI varchar', 'C', 'ENEWS.WA.FEED', 'EF_IMAGE_URI'
);
ENEWS.WA.exec_no_error (
'alter table ENEWS.WA.FEED add EF_PSH_SERVER varchar', 'C', 'ENEWS.WA.FEED', 'EF_PSH_SERVER'
);
ENEWS.WA.exec_no_error (
'alter table ENEWS.WA.FEED add EF_PSH_ENABLED integer default 0', 'C', 'ENEWS.WA.FEED', 'EF_PSH_ENABLED'
);
ENEWS.WA.exec_no_error (
'alter table ENEWS.WA.FEED add EF_PSH_TOKEN varchar', 'C', 'ENEWS.WA.FEED', 'EF_PSH_TOKEN'
);
ENEWS.WA.exec_no_error (
'alter table ENEWS.WA.FEED add EF_SALMON_SERVER varchar', 'C', 'ENEWS.WA.FEED', 'EF_SALMON_SERVER'
);
ENEWS.WA.exec_no_error('
create trigger FEED_INSERT AFTER INSERT ON ENEWS.WA.FEED referencing new as N {
ENEWS.WA.channel_trigger (N.EF_ID, N.EF_UPDATE_PERIOD, N.EF_UPDATE_FREQ);
}
');
ENEWS.WA.exec_no_error('
create trigger FEED_UPDATE AFTER UPDATE on ENEWS.WA.FEED referencing old as O, new as N {
declare id integer;
if ((O.EF_UPDATE_PERIOD <> N.EF_UPDATE_PERIOD) or (O.EF_UPDATE_FREQ <> N.EF_UPDATE_FREQ))
ENEWS.WA.channel_trigger (N.EF_ID, N.EF_UPDATE_PERIOD, N.EF_UPDATE_FREQ);
if ((isnull(O.EF_LAST_UPDATE) and not isnull(N.EF_LAST_UPDATE)) or (O.EF_LAST_UPDATE <> N.EF_LAST_UPDATE))
{
id := N.EF_ID;
for (select EFD_DOMAIN_ID from ENEWS.WA.FEED_DOMAIN where EFD_FEED_ID = id) do {
ENEWS.WA.domain_ping (EFD_DOMAIN_ID);
}
}
}
');
ENEWS.WA.exec_no_error ('
create trigger FEED_DELETE after delete on ENEWS.WA.FEED referencing old as O {
if (not is_empty_or_null (O.EF_ICON_URI))
DB.DBA.DAV_DELETE_INT (O.EF_ICON_URI, 1, null, null, 0);
}
');
-------------------------------------------------------------------------------
--
create procedure ENEWS.WA.channel_update_period (
in period any,
in freq any,
in checkNull integer := 0)
{
declare upd integer;
if (checkNull and isnull (period))
return 0;
if (checkNull and isnull (freq))
return 0;
period := lower (coalesce (period, 'daily'));
freq := coalesce (freq, 1);
-- Hourly, Daily, Weekly, Monthly, Yearly
upd := case period
when 'hourly' then 60
when 'daily' then 1440
when 'weekly' then 10080
when 'monthly' then 43200
when 'yearly' then 525600
else 1440
end;
return upd / freq;
};
-------------------------------------------------------------------------------
--
create procedure ENEWS.WA.channel_trigger (
in id integer,
in period any,
in freq any)
{
set triggers off;
update ENEWS.WA.FEED
set EF_UPDATE = ENEWS.WA.channel_update_period (period, freq)
where EF_ID = id;
};
-------------------------------------------------------------------------------
--
-- Contains all items from all subscribed feeds
--
-------------------------------------------------------------------------------
ENEWS.WA.exec_no_error('
create table ENEWS.WA.FEED_ITEM (
EFI_ID integer identity,
EFI_FEED_ID integer not null,
EFI_TITLE varchar,
EFI_DESCRIPTION long xml,
EFI_LINK varchar,
EFI_GUID varchar,
EFI_COMMENT_API varchar,
EFI_COMMENT_RSS varchar,
EFI_PUBLISH_DATE datetime,
EFI_AUTHOR varchar,
EFI_LAST_UPDATE datetime,
EFI_DELETE_FLAG integer,
EFI_ENCLOSURE integer,
EFI_DATA long xml,
constraint FK_FEED_ITEM_01 FOREIGN KEY (EFI_FEED_ID) references ENEWS.WA.FEED (EF_ID) ON DELETE CASCADE,
primary key (EFI_ID)
)
');
ENEWS.WA.exec_no_error(
'alter table ENEWS.WA.FEED_ITEM add EFI_ENCLOSURE integer', 'C', 'ENEWS.WA.FEED_ITEM', 'EFI_ENCLOSURE'
);
ENEWS.WA.exec_no_error('
create index SK_FEED_ITEM_01 on ENEWS.WA.FEED_ITEM (EFI_FEED_ID, EFI_ID)
');
-------------------------------------------------------------------------------
--
-- Item links
--
-------------------------------------------------------------------------------
ENEWS.WA.exec_no_error ('
create table ENEWS.WA.FEED_ITEM_LINK (
EFIL_ITEM_ID integer not null,
EFIL_LINK varchar,
EFIL_TITLE varchar,
constraint FK_FEED_ITEM_LINK_01 FOREIGN KEY (EFIL_ITEM_ID) references ENEWS.WA.FEED_ITEM (EFI_ID) ON DELETE CASCADE,
primary key (EFIL_ITEM_ID, EFIL_LINK)
)
');
-------------------------------------------------------------------------------
--
-- Item enclosures
--
-------------------------------------------------------------------------------
ENEWS.WA.exec_no_error ('
create table ENEWS.WA.FEED_ITEM_ENCLOSURE (
EFIE_ITEM_ID integer not null,
EFIE_URL varchar,
EFIE_TYPE varchar,
EFIE_LENGTH integer,
constraint FK_FEED_ITEM_ENCLOSURE_01 FOREIGN KEY (EFIE_ITEM_ID) references ENEWS.WA.FEED_ITEM (EFI_ID) ON DELETE CASCADE,
primary key (EFIE_ITEM_ID, EFIE_URL)
)
');
-------------------------------------------------------------------------------
--
-- Items triggers
--
-------------------------------------------------------------------------------
create procedure ENEWS.WA.item_links_update (
inout item_id integer,
inout description any,
inout content any)
{
declare exit handler for sqlstate '*' return;
declare xt, links, enclosures any;
if (not isnull(description)) {
if (isentity (description)) {
xt := description;
} else {
xt := xtree_doc (description, 2, '', 'UTF-8');
}
-- links
links := xpath_eval ('//a[starts-with (@href, "http") and not(img)]', xt, 0);
foreach (any x in links) do
insert replacing ENEWS.WA.FEED_ITEM_LINK (EFIL_ITEM_ID, EFIL_LINK, EFIL_TITLE)
values (item_id, cast (xpath_eval ('@href', x) as varchar), cast (xpath_eval ('string()', x) as varchar));
}
if (not isnull(content)) {
if (isentity (content)) {
xt := content;
} else {
xt := xtree_doc (content, 2, '', 'UTF-8');
}
-- enclosures
enclosures := xpath_eval ('//enclosure[@url]', xt, 0);
foreach (any x in enclosures) do
insert replacing ENEWS.WA.FEED_ITEM_ENCLOSURE (EFIE_ITEM_ID, EFIE_URL, EFIE_LENGTH, EFIE_TYPE)
values (item_id, cast (xpath_eval ('@url', x) as varchar), cast (xpath_eval ('@length', x) as integer), subseq (cast (xpath_eval ('@type', x) as varchar), 0, 2048));
}
}
;
ENEWS.WA.exec_no_error ('
create trigger ENEWS_FEED_ITEM_WA_IN after insert on ENEWS.WA.FEED_ITEM referencing new as N {
-- dashboard
update ENEWS.WA.FEED
set EF_DASHBOARD = ENEWS.WA.make_dasboard_item (EF_DASHBOARD, N.EFI_PUBLISH_DATE, N.EFI_TITLE, N.EFI_AUTHOR, N.EFI_DATA, sprintf(\'/enews2/news.vspx?link=%d\', N.EFI_ID), N.EFI_ID, N.EFI_FEED_ID)
where EF_ID = N.EFI_FEED_ID;
if (__proc_exists (\'DB.DBA.WA_NEW_NEWS_IN\'))
DB.DBA.WA_NEW_NEWS_IN (ENEWS.WA.show_title(N.EFI_TITLE), sprintf(\'/enews2/news.vspx?link=%d\', N.EFI_ID), N.EFI_ID);
ENEWS.WA.item_links_update(N.EFI_ID, N.EFI_DESCRIPTION, N.EFI_DATA);
}
');
ENEWS.WA.exec_no_error('
create trigger ENEWS_FEED_ITEM_WA_DEL after delete on ENEWS.WA.FEED_ITEM referencing old as O {
update ENEWS.WA.FEED
set EF_DASHBOARD = ENEWS.WA.make_dasboard_item (EF_DASHBOARD, null, null, null, null, null, O.EFI_ID, null, \'delete\')
where EF_ID = O.EFI_FEED_ID;
if (__proc_exists (\'DB.DBA.WA_NEW_NEWS_RM\'))
DB.DBA.WA_NEW_NEWS_RM (O.EFI_ID);
}
');
-------------------------------------------------------------------------------
--
-- Contains directory structure
--
-------------------------------------------------------------------------------
ENEWS.WA.exec_no_error('
create table ENEWS.WA.DIRECTORY (
ED_ID integer identity,
ED_PARENT_ID integer,
ED_NAME varchar not null,
primary key (ED_ID)
)
');
ENEWS.WA.exec_no_error('
create unique index SK_DIRECTORY_01 on ENEWS.WA.DIRECTORY(ED_PARENT_ID, ED_NAME)
');
-------------------------------------------------------------------------------
--
-- Contains feeds directories
--
-------------------------------------------------------------------------------
ENEWS.WA.exec_no_error('
create table ENEWS.WA.FEED_DIRECTORY (
EFD_DIRECTORY_ID integer not null,
EFD_FEED_ID integer not null,
constraint FK_FEED_DIRECTORY_01 FOREIGN KEY (EFD_FEED_ID) references ENEWS.WA.FEED (EF_ID) on delete cascade,
constraint FK_FEED_DIRECTORY_02 FOREIGN KEY (EFD_DIRECTORY_ID) references ENEWS.WA.DIRECTORY (ED_ID) on delete cascade,
primary key ( EFD_DIRECTORY_ID, EFD_FEED_ID)
)
');
-------------------------------------------------------------------------------
--
-- Contains folders structure. Structure is domain specific.
--
-------------------------------------------------------------------------------
ENEWS.WA.exec_no_error('
create table ENEWS.WA.FOLDER (
EFO_DOMAIN_ID integer not null,
EFO_ID integer identity,
EFO_PARENT_ID integer,
EFO_NAME varchar not null,
primary key (EFO_DOMAIN_ID, EFO_ID)
)
');
ENEWS.WA.exec_no_error('
create unique index SK_FOLDER_01 on ENEWS.WA.FOLDER(EFO_DOMAIN_ID, EFO_PARENT_ID, EFO_NAME)
');
-------------------------------------------------------------------------------
--
-- Contains smart folders structure. Structure is domain specific.
--
-------------------------------------------------------------------------------
ENEWS.WA.exec_no_error('
create table ENEWS.WA.SFOLDER (
ESFO_DOMAIN_ID integer not null,
ESFO_ID varchar not null,
ESFO_NAME varchar not null,
ESFO_DATA long varchar,
primary key (ESFO_DOMAIN_ID, ESFO_ID)
)
');
ENEWS.WA.exec_no_error('
create unique index SK_SFOLDER_01 on ENEWS.WA.SFOLDER(ESFO_DOMAIN_ID, ESFO_NAME)
');
-------------------------------------------------------------------------------
--
-- Contains domain feeds.
--
-------------------------------------------------------------------------------
ENEWS.WA.exec_no_error('
create table ENEWS.WA.FEED_DOMAIN (
EFD_ID integer identity,
EFD_DOMAIN_ID integer not null,
EFD_FEED_ID integer not null,
EFD_TITLE varchar,
EFD_TAGS varchar,
EFD_GRAPH varchar,
EFD_FAVOURITE integer,
EFD_FOLDER_ID integer,
EFD_ACL long varchar,
constraint FK_FEED_DOMAIN_01 FOREIGN KEY (EFD_FEED_ID) references ENEWS.WA.FEED (EF_ID),
constraint FK_FEED_DOMAIN_02 FOREIGN KEY (EFD_DOMAIN_ID, EFD_FOLDER_ID) references ENEWS.WA.FOLDER (EFO_DOMAIN_ID, EFO_ID) on delete set null,
primary key (EFD_ID)
)
');
ENEWS.WA.exec_no_error (
'alter table ENEWS.WA.FEED_DOMAIN add EFD_FAVOURITE integer', 'C', 'ENEWS.WA.FEED_DOMAIN', 'EFD_FAVOURITE'
);
ENEWS.WA.exec_no_error (
'alter table ENEWS.WA.FEED_DOMAIN add EFD_GRAPH varchar', 'C', 'ENEWS.WA.FEED_DOMAIN', 'EFD_GRAPH'
);
ENEWS.WA.exec_no_error (
'alter table ENEWS.WA.FEED_DOMAIN add EFD_ACL long varchar', 'C', 'ENEWS.WA.FEED_DOMAIN', 'EFD_ACL'
);
ENEWS.WA.exec_no_error('
create index SK_FEED_DOMAIN_01 on ENEWS.WA.FEED_DOMAIN(EFD_DOMAIN_ID, EFD_FEED_ID)
');
-------------------------------------------------------------------------------
--
-- Contains specific data for feed items and domain/user - flags, tags and etc.
--
-------------------------------------------------------------------------------
ENEWS.WA.exec_no_error('
create table ENEWS.WA.FEED_ITEM_DATA (
EFID_ID integer identity,
EFID_DOMAIN_ID integer,
EFID_ACCOUNT_ID integer,
EFID_ITEM_ID integer not null,
EFID_READ_FLAG integer,
EFID_KEEP_FLAG integer,
EFID_TAGS varchar,
EFID_LAST_UPDATE datetime,
constraint FK_FEED_ITEM_DATA_01 FOREIGN KEY (EFID_ITEM_ID) references ENEWS.WA.FEED_ITEM (EFI_ID) on delete cascade,
primary key (EFID_ID)
)
');
ENEWS.WA.exec_no_error(
'alter table ENEWS.WA.FEED_ITEM_DATA add EFID_LAST_UPDATE datetime', 'C', 'ENEWS.WA.FEED_ITEM_DATA', 'EFID_LAST_UPDATE'
);
ENEWS.WA.exec_no_error('
create index SK_FEED_ITEM_DATA_01 on ENEWS.WA.FEED_ITEM_DATA(EFID_ITEM_ID)
');
-------------------------------------------------------------------------------
--
ENEWS.WA.exec_no_error('
create table ENEWS.WA.FEED_ITEM_COMMENT (
EFIC_ID integer identity,
EFIC_PARENT_ID integer default null,
EFIC_DOMAIN_ID integer not null,
EFIC_ITEM_ID varchar not null,
EFIC_TITLE varchar,
EFIC_COMMENT long varchar,
EFIC_U_NAME varchar,
EFIC_U_MAIL varchar,
EFIC_U_URL varchar,
EFIC_LAST_UPDATE datetime,
EFIC_RFC_ID varchar,
EFIC_RFC_HEADER long varchar,
EFIC_RFC_REFERENCES varchar default null,
EFIC_OPENID_SIG long varbinary default null,
constraint FK_FEED_ITEM_COMMENT_01 FOREIGN KEY (EFIC_ITEM_ID) references ENEWS.WA.FEED_ITEM (EFI_ID) on delete cascade,
primary key (EFIC_ID)
)
');
ENEWS.WA.exec_no_error (
'alter table ENEWS.WA.FEED_ITEM_COMMENT add EFIC_OPENID_SIG long varbinary default null', 'C', 'ENEWS.WA.FEED_ITEM_COMMENT', 'EFIC_OPENID_SIG'
);
ENEWS.WA.exec_no_error('
create unique index SK_FEED_ITEM_COMMENT_01 on ENEWS.WA.FEED_ITEM_COMMENT(EFIC_DOMAIN_ID, EFIC_ITEM_ID, EFIC_ID)
');
ENEWS.WA.exec_no_error('
create index SK_FEED_ITEM_COMMENT_02 on ENEWS.WA.FEED_ITEM_COMMENT(EFIC_ITEM_ID)
');
ENEWS.WA.exec_no_error ('
create trigger FEED_ITEM_COMMENT_I after insert on ENEWS.WA.FEED_ITEM_COMMENT referencing new as N {
declare id integer;
declare rfc_id, rfc_header, rfc_references varchar;
declare nInstance any;
nInstance := ENEWS.WA.domain_nntp_name (N.EFIC_DOMAIN_ID);
id := N.EFIC_ID;
rfc_id := N.EFIC_RFC_ID;
if (isnull(rfc_id))
rfc_id := ENEWS.WA.make_rfc_id (N.EFIC_ITEM_ID, N.EFIC_ID);
rfc_references := \'\';
if (N.EFIC_PARENT_ID)
{
declare p_rfc_id, p_rfc_references any;
--declare exit handler for not found;
select EFIC_RFC_ID, EFIC_RFC_REFERENCES
into p_rfc_id, p_rfc_references
from ENEWS.WA.FEED_ITEM_COMMENT
where EFIC_ID = N.EFIC_PARENT_ID;
if (isnull(p_rfc_references))
p_rfc_references := rfc_references;
rfc_references := p_rfc_references || \' \' || p_rfc_id;
}
rfc_header := N.EFIC_RFC_HEADER;
if (isnull(rfc_header))
rfc_header := ENEWS.WA.make_post_rfc_header (rfc_id, rfc_references, nInstance, N.EFIC_TITLE, N.EFIC_LAST_UPDATE, N.EFIC_U_MAIL);
set triggers off;
update ENEWS.WA.FEED_ITEM_COMMENT
set EFIC_RFC_ID = rfc_id,
EFIC_RFC_HEADER = rfc_header,
EFIC_RFC_REFERENCES = rfc_references
where EFIC_ID = id;
set triggers on;
}
');
ENEWS.WA.exec_no_error('
create trigger FEED_ITEM_COMMENT_NEWS_I after insert on ENEWS.WA.FEED_ITEM_COMMENT order 30 referencing new as N {
declare grp, ngnext integer;
declare rfc_id, nInstance any;
declare exit handler for not found { return;};
nInstance := ENEWS.WA.domain_nntp_name (N.EFIC_DOMAIN_ID);
select NG_GROUP, NG_NEXT_NUM into grp, ngnext from DB..NEWS_GROUPS where NG_NAME = nInstance;
if (ngnext < 1)
ngnext := 1;
rfc_id := (select EFIC_RFC_ID from ENEWS.WA.FEED_ITEM_COMMENT where EFIC_ID = N.EFIC_ID);
insert into DB.DBA.NEWS_MULTI_MSG (NM_KEY_ID, NM_GROUP, NM_NUM_GROUP)
values (rfc_id, grp, ngnext);
set triggers off;
update DB.DBA.NEWS_GROUPS
set NG_NEXT_NUM = ngnext + 1
where NG_NAME = nInstance;
DB.DBA.ns_up_num (grp);
set triggers on;
}
');
ENEWS.WA.exec_no_error('
create trigger FEED_ITEM_COMMENT_D after delete on ENEWS.WA.FEED_ITEM_COMMENT referencing old as O {
-- update all that have EFIC_PARENT_ID == O.EFIC_PARENT_ID
set triggers off;
update ENEWS.WA.FEED_ITEM_COMMENT
set EFIC_PARENT_ID = O.EFIC_PARENT_ID
where EFIC_PARENT_ID = O.EFIC_ID;
set triggers on;
}
');
ENEWS.WA.exec_no_error('
create trigger FEED_ITEM_COMMENT_NEWS_D after delete on ENEWS.WA.FEED_ITEM_COMMENT order 30 referencing old as O {
declare grp integer;
declare oInstance any;
oInstance := ENEWS.WA.domain_nntp_name (O.EFIC_DOMAIN_ID);
grp := (select NG_GROUP from DB..NEWS_GROUPS where NG_NAME = oInstance);
delete from DB.DBA.NEWS_MULTI_MSG where NM_KEY_ID = O.EFIC_RFC_ID and NM_GROUP = grp;
DB.DBA.ns_up_num (grp);
}
');
-------------------------------------------------------------------------------
--
ENEWS.WA.exec_no_error('
create table ENEWS.WA.ANNOTATIONS (
A_ID integer identity,
A_DOMAIN_ID integer not null,
A_OBJECT_ID integer not null,
A_BODY long varchar,
A_CLAIMS long varchar,
A_CONTEXT varchar,
A_AUTHOR varchar,
A_CREATED datetime,
A_UPDATED datetime,
constraint FK_ENEWS_ANNOTATIONS_01 FOREIGN KEY (A_OBJECT_ID) references ENEWS.WA.FEED_ITEM (EFI_ID) on delete cascade,
primary key (A_ID)
)
');
ENEWS.WA.exec_no_error (
'alter table ENEWS.WA.ANNOTATIONS add A_CLAIMS long varchar', 'C', 'ENEWS.WA.ANNOTATIONS', 'A_CLAIMS'
);
ENEWS.WA.exec_no_error ('
create index SK_ENEWS_ANNOTATIONS_01 on ENEWS.WA.ANNOTATIONS (A_OBJECT_ID, A_DOMAIN_ID, A_ID)
');
-------------------------------------------------------------------------------
--
ENEWS.WA.exec_no_error ('
create table ENEWS.WA.TAGS (
ETS_DOMAIN_ID integer not null,
ETS_ACCOUNT_ID integer not null,
ETS_LAST_UPDATE datetime,
ETS_TAG varchar,
ETS_COUNT integer,
primary key (ETS_DOMAIN_ID, ETS_ACCOUNT_ID, ETS_TAG)
)
');
create procedure ENEWS.WA.TAGS_STATISTICS (
in domain_id integer,
in account_id integer)
{
declare ts_tag varchar;
declare ts_count integer;
ENEWS.WA.tags_refresh (domain_id, account_id, 1);
result_names (ts_tag, ts_count);
for (select ETS_TAG, ETS_COUNT FROM ENEWS.WA.TAGS where ETS_DOMAIN_ID = domain_id and ETS_ACCOUNT_ID = account_id) do
result (ETS_TAG, ETS_COUNT);
}
;
ENEWS.WA.exec_no_error('
create procedure view ENEWS..TAGS_STATISTICS as ENEWS.WA.TAGS_STATISTICS (domain_id, account_id) (TS_TAG varchar, TS_COUNT integer)
');
-------------------------------------------------------------------------------
--
-- Contains settings.
--
-------------------------------------------------------------------------------
ENEWS.WA.exec_no_error('
create table ENEWS.WA.SETTINGS (
ES_DOMAIN_ID integer not null,
ES_ACCOUNT_ID integer not null,
ES_DATA varchar,
primary key(ES_DOMAIN_ID, ES_ACCOUNT_ID)
)
');
-------------------------------------------------------------------------------
--
-- Contains domain weblogs
--
-------------------------------------------------------------------------------
ENEWS.WA.exec_no_error('
create table ENEWS.WA.WEBLOG (
EW_ID integer identity,
EW_DOMAIN_ID integer not null,
EW_NAME varchar not null, -- Weblog name
EW_API varchar not null, -- API name (Blogger, metaBlogs and etc.
EW_URI varchar not null, -- Weblog URI
EW_PORT varchar, -- Weblog post
EW_ENDPOINT varchar, -- Weblog endpoint
EW_USER varchar, -- Weblog user name
EW_PASSWORD varchar, -- Weblog user password
EW_LAST_UPDATE datetime,
EW_ERROR_LOG long varchar,
primary key (EW_ID)
)
');
ENEWS.WA.exec_no_error('
create unique index SK_WEBLOG_01 on ENEWS.WA.WEBLOG(EW_DOMAIN_ID, EW_NAME)
');
-------------------------------------------------------------------------------
--
-- Contains weblog blogs
--
-------------------------------------------------------------------------------
ENEWS.WA.exec_no_error('
create table ENEWS.WA.BLOG (
EB_ID integer identity,
EB_WEBLOG_ID integer not null,
EB_NAME varchar not null, -- Blog name
EB_BLOGID varchar, -- Unique blog id
EB_URI varchar, -- Blog home uri
EB_LIMIT integer default 5, -- Number of posts for get
EB_UPDATE_PERIOD varchar default \'daily\',
EB_UPDATE_FREQ integer default 1,
EB_STORE_DAYS integer default 30,
EB_UPDATE integer,
EB_LAST_UPDATE datetime,
EB_QUEUE_FLAG integer,
EB_ERROR_LOG long varchar,
EB_FAVOURITE integer,
constraint FK_BLOG_01 FOREIGN KEY (EB_WEBLOG_ID) references ENEWS.WA.WEBLOG (EW_ID) on delete cascade,
primary key (EB_ID)
)
');
ENEWS.WA.exec_no_error (
'alter table ENEWS.WA.BLOG add EB_FAVOURITE integer', 'C', 'ENEWS.WA.BLOG', 'EB_FAVOURITE'
);
ENEWS.WA.exec_no_error('
drop index SK_BLOG_01 ENEWS.WA.BLOG
');
ENEWS.WA.exec_no_error('
create unique index SK_BLOG_02 on ENEWS.WA.BLOG(EB_WEBLOG_ID, EB_BLOGID)
');
ENEWS.WA.exec_no_error('
create trigger BLOG_INSERT AFTER INSERT ON ENEWS.WA.BLOG referencing new as N {
ENEWS.WA.blog_trigger (N.EB_ID, N.EB_UPDATE_PERIOD, N.EB_UPDATE_FREQ);
}
');
ENEWS.WA.exec_no_error('
create trigger BLOG_UPDATE AFTER UPDATE on ENEWS.WA.BLOG referencing old as O, new as N {
if ((O.EB_UPDATE_PERIOD <> N.EB_UPDATE_PERIOD) or (O.EB_UPDATE_FREQ <> N.EB_UPDATE_FREQ))
ENEWS.WA.blog_trigger (N.EB_ID, N.EB_UPDATE_PERIOD, N.EB_UPDATE_FREQ);
}
');
create procedure ENEWS.WA.blog_trigger (
in id any,
in period any,
in freq any)
{
declare upd int;
period := lower (coalesce (period, 'daily'));
-- Hourly, Daily, Weekly, Monthly, Yearly
upd := case period
when 'hourly' then 60
when 'daily' then 1440
when 'weekly' then 10080
when 'monthly' then 43200
when 'yearly' then 525600
else 1440
end;
upd := upd / freq;
set triggers off;
update ENEWS.WA.BLOG
set EB_UPDATE = upd
where EB_ID = id;
};
-------------------------------------------------------------------------------
--
ENEWS.WA.exec_no_error('
create table ENEWS.WA.BLOG_POST (
EBP_ID integer identity,
EBP_BLOG_ID integer not null,
EBP_POSTID varchar,
EBP_META BLOG.DBA.MWeblogPost,
EBP_LAST_UPDATE datetime,
constraint FK_BLOG_POST_01 FOREIGN KEY (EBP_BLOG_ID) references ENEWS.WA.BLOG (EB_ID) on delete cascade,
primary key (EBP_ID)
)
');
ENEWS.WA.exec_no_error('
create unique index SK_BLOG_POST_01 on ENEWS.WA.BLOG_POST (EBP_BLOG_ID, EBP_POSTID)
');
-------------------------------------------------------------------------------
--
ENEWS.WA.exec_no_error('
create table ENEWS.WA.BLOG_POST_DATA (
EBPD_ID integer identity,
EBPD_DOMAIN_ID integer,
EBPD_POST_ID integer not null,
EBPD_READ_FLAG integer,
EBPD_KEEP_FLAG integer,
EBPD_TAGS varchar,
constraint FK_BLOG_POST_DATA_01 FOREIGN KEY (EBPD_POST_ID) references ENEWS.WA.BLOG_POST (EBP_ID) on delete cascade,
primary key (EBPD_ID)
)
');
ENEWS.WA.exec_no_error('
create index SK_FEED_ITEM_DATA_01 on ENEWS.WA.BLOG_POST_DATA(EBPD_DOMAIN_ID, EBPD_POST_ID)
');
-------------------------------------------------------------------------------
--
create procedure ENEWS.WA.FEED_ITEM_EFI_DESCRIPTION_int (inout vtb any, inout d_id any, in mode any)
{
for (select EFI_DESCRIPTION, EFI_FEED_ID, EFI_TITLE, EFI_AUTHOR, EFI_PUBLISH_DATE from ENEWS.WA.FEED_ITEM where EFI_ID = d_id) do {
vt_batch_feed (vtb, EFI_DESCRIPTION, mode, 1);
vt_batch_feed (vtb, sprintf ('^F%d', EFI_FEED_ID), mode);
vt_batch_feed (vtb, coalesce(EFI_TITLE, ''), mode);
vt_batch_feed (vtb, coalesce(EFI_AUTHOR, ''), mode);
vt_batch_feed (vtb, ENEWS.WA.dt_format(coalesce(EFI_PUBLISH_DATE, now()), 'YMD'), mode);
if (exists(select 1 from DB.DBA.WA_INSTANCE where WAI_TYPE_NAME = 'eNews2' and WAI_IS_PUBLIC = 1))
vt_batch_feed (vtb, '^public', mode);
for (select EFD_DOMAIN_ID from ENEWS.WA.FEED_DOMAIN where EFD_FEED_ID = EFI_FEED_ID) do
vt_batch_feed (vtb, sprintf('^R%d', EFD_DOMAIN_ID), mode);
vt_batch_feed_offband (vtb, serialize (vector (d_id, EFI_FEED_ID, EFI_PUBLISH_DATE)), mode);
}
return 1;
}
;
-------------------------------------------------------------------------------
--
create procedure ENEWS.WA.FEED_ITEM_EFI_DESCRIPTION_index_hook (inout vtb any, inout d_id any)
{
return ENEWS.WA.FEED_ITEM_EFI_DESCRIPTION_int (vtb, d_id, 0);
}
;
-------------------------------------------------------------------------------
--
create procedure ENEWS.WA.FEED_ITEM_EFI_DESCRIPTION_unindex_hook (inout vtb any, inout d_id any)
{
return ENEWS.WA.FEED_ITEM_EFI_DESCRIPTION_int (vtb, d_id, 1);
}
;
-------------------------------------------------------------------------------
--
create procedure ENEWS.WA.drop_index()
{
if (registry_get ('news_index_version') <> '2') {
ENEWS.WA.exec_no_error ('drop table ENEWS.WA.FEED_ITEM_EFI_DESCRIPTION_WORDS');
}
}
;
ENEWS.WA.drop_index();
ENEWS.WA.exec_no_error ('
create text xml index on ENEWS.WA.FEED_ITEM(EFI_DESCRIPTION) with key EFI_ID clustered with (EFI_ID, EFI_FEED_ID, EFI_PUBLISH_DATE) using function
');
-------------------------------------------------------------------------------
--
create procedure ENEWS.WA.FEED_ITEM_DATA_EFID_TAGS_int (inout vtb any, inout d_id any, in mode any)
{
declare domain_id, account_id, item_id, tags any;
select EFID_DOMAIN_ID, EFID_ACCOUNT_ID, EFID_ITEM_ID, EFID_TAGS into domain_id, account_id, item_id, tags from ENEWS.WA.FEED_ITEM_DATA where EFID_ID = d_id;
tags := split_and_decode (tags, 0, '\0\0,');
foreach (any tag in tags) do
{
tag := trim(tag);
tag := replace (tag, ' ', '_');
tag := replace (tag, '+', '_');
vt_batch_feed (vtb, tag, mode);
}
if (isnull(domain_id) and isnull(account_id))
if (exists(select 1 from DB.DBA.WA_INSTANCE where WAI_TYPE_NAME = 'eNews2' and WAI_IS_PUBLIC = 1))
vt_batch_feed (vtb, '^public', mode);
if (not isnull(domain_id))
{
vt_batch_feed (vtb, sprintf ('^R%d', domain_id), mode);
if (exists(select 1 from DB.DBA.WA_INSTANCE where WAI_ID = domain_id and WAI_IS_PUBLIC = 1))
vt_batch_feed (vtb, '^public', mode);
}
if (not isnull(account_id))
vt_batch_feed (vtb, sprintf ('^UID%d', account_id), mode);
vt_batch_feed (vtb, sprintf ('^I%d', item_id), mode);
vt_batch_feed_offband (vtb, serialize (vector (domain_id, account_id, item_id)), mode);
return 1;
}
;
-------------------------------------------------------------------------------
--
create procedure ENEWS.WA.FEED_ITEM_DATA_EFID_TAGS_index_hook (inout vtb any, inout d_id any)
{
return ENEWS.WA.FEED_ITEM_DATA_EFID_TAGS_int(vtb, d_id, 0);
}
;
-------------------------------------------------------------------------------
--
create procedure ENEWS.WA.FEED_ITEM_DATA_EFID_TAGS_unindex_hook (inout vtb any, inout d_id any)
{
return ENEWS.WA.FEED_ITEM_DATA_EFID_TAGS_int(vtb, d_id, 1);
}
;
-------------------------------------------------------------------------------
--
create procedure ENEWS.WA.drop_index()
{
if ((registry_get ('news_index_version') <> '2') or (not exists (select 1 from DB.DBA.SYS_KEYS where KEY_TABLE='ENEWS.WA.FEED_ITEM_COMMENT_EFIC_COMMENT_WORDS'))) {
ENEWS.WA.exec_no_error ('drop table ENEWS.WA.FEED_ITEM_DATA_EFID_TAGS_WORDS');
}
}
;
ENEWS.WA.drop_index();
ENEWS.WA.exec_no_error ('
create text index on ENEWS.WA.FEED_ITEM_DATA (EFID_TAGS) with key EFID_ID clustered with (EFID_DOMAIN_ID, EFID_ACCOUNT_ID, EFID_ITEM_ID) using function language \'x-ViDoc\'
');
-------------------------------------------------------------------------------
--
create procedure ENEWS.WA.FEED_ITEM_COMMENT_EFIC_COMMENT_int (inout vtb any, inout d_id any, in mode any)
{
for (select EFIC_DOMAIN_ID, EFIC_ITEM_ID, EFIC_TITLE, EFIC_COMMENT from ENEWS.WA.FEED_ITEM_COMMENT where EFIC_ID = d_id) do {
vt_batch_feed (vtb, coalesce(EFIC_TITLE, ''), mode);
vt_batch_feed (vtb, coalesce(EFIC_COMMENT, ''), mode);
vt_batch_feed (vtb, sprintf ('^R%d', EFIC_DOMAIN_ID), mode);
vt_batch_feed (vtb, sprintf ('^I%s', EFIC_ITEM_ID), mode);
vt_batch_feed_offband (vtb, serialize (vector (EFIC_DOMAIN_ID, EFIC_ITEM_ID)), mode);
}
return 1;
}
;
-------------------------------------------------------------------------------
--
create procedure ENEWS.WA.FEED_ITEM_COMMENT_EFIC_COMMENT_index_hook (inout vtb any, inout d_id any)
{
return ENEWS.WA.FEED_ITEM_COMMENT_EFIC_COMMENT_int(vtb, d_id, 0);
}
;
-------------------------------------------------------------------------------
--
create procedure ENEWS.WA.FEED_ITEM_COMMENT_EFIC_COMMENT_unindex_hook (inout vtb any, inout d_id any)
{
return ENEWS.WA.FEED_ITEM_COMMENT_EFIC_COMMENT_int(vtb, d_id, 1);
}
;
-------------------------------------------------------------------------------
--
create procedure ENEWS.WA.drop_index()
{
if (registry_get ('news_index_version') <> '2') {
ENEWS.WA.exec_no_error ('drop table ENEWS.WA.FEED_ITEM_COMMENT_EFIC_COMMENT_WORDS');
}
}
;
ENEWS.WA.drop_index();
ENEWS.WA.exec_no_error ('
create text index on ENEWS.WA.FEED_ITEM_COMMENT (EFIC_COMMENT) with key EFIC_ID clustered with (EFIC_DOMAIN_ID, EFIC_ITEM_ID) using function language \'x-ViDoc\'
');
ENEWS.WA.exec_no_error ('drop trigger WA_MEMBER_AU_ENEWS');
-------------------------------------------------------------------------------
--
ENEWS.WA.exec_no_error('
insert replacing DB.DBA.SYS_SCHEDULED_EVENT (SE_NAME, SE_START, SE_SQL, SE_INTERVAL)
values(\'eNews feed aggregator\', now(), \'ENEWS.WA.feeds_agregator()\', 30)
')
;
ENEWS.WA.exec_no_error('
insert replacing DB.DBA.SYS_SCHEDULED_EVENT (SE_NAME, SE_START, SE_SQL, SE_INTERVAL)
values(\'eNews blog aggregator\', now(), \'ENEWS.WA.blogs_agregator()\', 30)
')
;
ENEWS.WA.exec_no_error('
insert replacing DB.DBA.SYS_SCHEDULED_EVENT (SE_NAME, SE_START, SE_SQL, SE_INTERVAL)
values(\'eNews tags aggregator\', now(), \'ENEWS.WA.tags_agregator()\', 10080)
')
;
create procedure ENEWS.WA.tags_procedure (
in domain_id any,
in account_id any,
in item_id any)
{
declare tag varchar;
declare tags any;
result_names (tag);
tags := ENEWS.WA.tags_account_item_select (domain_id, account_id, item_id);
tags := split_and_decode (tags, 0, '\0\0,');
foreach (any tag in tags) do
result (trim (tag));
}
;
ENEWS.WA.exec_no_error ('
drop view ENEWS..TAGS_VIEW
')
;
ENEWS.WA.exec_no_error ('
create procedure view ENEWS..TAGS_VIEW as ENEWS.WA.tags_procedure (domain_id, account_id, item_id) (EFTV_TAG varchar)
')
;
-------------------------------------------------------------------------------
--
create procedure ENEWS.WA.news_links_upgrade ()
{
if (registry_get ('news_links_upgrade') = '1')
return;
for (select EFI_ID, EFI_DESCRIPTION, EFI_DATA from ENEWS.WA.FEED_ITEM) do
ENEWS.WA.item_links_update(EFI_ID, EFI_DESCRIPTION, EFI_DATA);
};
ENEWS.WA.news_links_upgrade ();
registry_set ('news_index_version', '2');
registry_set ('news_links_upgrade', '1');
|