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 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986
|
# BEGIN BPS TAGGED BLOCK {{{
#
# COPYRIGHT:
#
# This software is Copyright (c) 1996-2018 Best Practical Solutions, LLC
# <sales@bestpractical.com>
#
# (Except where explicitly superseded by other copyright notices)
#
#
# LICENSE:
#
# This work is made available to you under the terms of Version 2 of
# the GNU General Public License. A copy of that license should have
# been provided with this software, but in any event can be snarfed
# from www.gnu.org.
#
# This work 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 Street, Fifth Floor, Boston, MA
# 02110-1301 or visit their web page on the internet at
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
#
#
# CONTRIBUTION SUBMISSION POLICY:
#
# (The following paragraph is not intended to limit the rights granted
# to you to modify and distribute this software under the terms of
# the GNU General Public License and is only of importance to you if
# you choose to contribute your changes and enhancements to the
# community by submitting them to Best Practical Solutions, LLC.)
#
# By intentionally submitting any modifications, corrections or
# derivatives to this work, or any other work intended for use with
# Request Tracker, to Best Practical Solutions, LLC, you confirm that
# you are the copyright holder for those contributions and you grant
# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable,
# royalty-free, perpetual, license to use, copy, create derivative
# works based on those contributions, and sublicense and distribute
# those contributions and any derivatives thereof.
#
# END BPS TAGGED BLOCK }}}
=head1 NAME
RT::Handle - RT's database handle
=head1 SYNOPSIS
use RT;
BEGIN { RT::LoadConfig() };
use RT::Handle;
=head1 DESCRIPTION
C<RT::Handle> is RT specific wrapper over one of L<DBIx::SearchBuilder::Handle>
classes. As RT works with different types of DBs we subclass repsective handler
from L<DBIx::SearchBuilder>. Type of the DB is defined by L<RT's DatabaseType
config option|RT_Config/DatabaseType>. You B<must> load this module only when
the configs have been loaded.
=cut
package RT::Handle;
use strict;
use warnings;
use File::Spec;
=head1 METHODS
=head2 FinalizeDatabaseType
Sets RT::Handle's superclass to the correct subclass of
L<DBIx::SearchBuilder::Handle>, using the C<DatabaseType> configuration.
=cut
sub FinalizeDatabaseType {
my $db_type = RT->Config->Get('DatabaseType');
my $package = "DBIx::SearchBuilder::Handle::$db_type";
$package->require or
die "Unable to load DBIx::SearchBuilder database handle for '$db_type'.\n".
"Perhaps you've picked an invalid database type or spelled it incorrectly.\n".
$@;
@RT::Handle::ISA = ($package);
# We use COLLATE NOCASE to enforce case insensitivity on the normally
# case-sensitive SQLite, LOWER() approach works, but lucks performance
# due to absence of functional indexes
if ($db_type eq 'SQLite') {
no strict 'refs'; no warnings 'redefine';
*DBIx::SearchBuilder::Handle::SQLite::CaseSensitive = sub {0};
}
}
=head2 Connect
Connects to RT's database using credentials and options from the RT config.
Takes nothing.
=cut
sub Connect {
my $self = shift;
my %args = (@_);
my $db_type = RT->Config->Get('DatabaseType');
if ( $db_type eq 'Oracle' ) {
$ENV{'NLS_LANG'} = "AMERICAN_AMERICA.AL32UTF8";
$ENV{'NLS_NCHAR'} = "AL32UTF8";
}
$self->SUPER::Connect(
User => RT->Config->Get('DatabaseUser'),
Password => RT->Config->Get('DatabasePassword'),
DisconnectHandleOnDestroy => 1,
%args,
);
if ( $db_type eq 'mysql' ) {
my $version = $self->DatabaseVersion;
($version) = $version =~ /^(\d+\.\d+)/;
$self->dbh->do("SET NAMES 'utf8'") if $version >= 4.1;
}
elsif ( $db_type eq 'Pg' ) {
my $version = $self->DatabaseVersion;
($version) = $version =~ /^(\d+\.\d+)/;
$self->dbh->do("SET bytea_output = 'escape'") if $version >= 9.0;
}
$self->dbh->{'LongReadLen'} = RT->Config->Get('MaxAttachmentSize');
}
=head2 BuildDSN
Build the DSN for the RT database. Doesn't take any parameters, draws all that
from the config.
=cut
sub BuildDSN {
my $self = shift;
# Unless the database port is a positive integer, we really don't want to pass it.
my $db_port = RT->Config->Get('DatabasePort');
$db_port = undef unless (defined $db_port && $db_port =~ /^(\d+)$/);
my $db_host = RT->Config->Get('DatabaseHost');
$db_host = undef unless $db_host;
my $db_name = RT->Config->Get('DatabaseName');
my $db_type = RT->Config->Get('DatabaseType');
$db_name = File::Spec->catfile($RT::VarPath, $db_name)
if $db_type eq 'SQLite' && !File::Spec->file_name_is_absolute($db_name);
my %args = (
Host => $db_host,
Database => $db_name,
Port => $db_port,
Driver => $db_type,
);
if ( $db_type eq 'Oracle' && $db_host ) {
$args{'SID'} = delete $args{'Database'};
}
$self->SUPER::BuildDSN( %args );
if (RT->Config->Get('DatabaseExtraDSN')) {
my %extra = RT->Config->Get('DatabaseExtraDSN');
$self->{'dsn'} .= ";$_=$extra{$_}"
for sort keys %extra;
}
return $self->{'dsn'};
}
=head2 DSN
Returns the DSN for this handle. In order to get correct value you must
build DSN first, see L</BuildDSN>.
This is method can be called as class method, in this case creates
temporary handle object, L</BuildDSN builds DSN> and returns it.
=cut
sub DSN {
my $self = shift;
return $self->SUPER::DSN if ref $self;
my $handle = $self->new;
$handle->BuildDSN;
return $handle->DSN;
}
=head2 SystemDSN
Returns a DSN suitable for database creates and drops
and user creates and drops.
Gets RT's DSN first (see L<DSN>) and then change it according
to requirements of a database system RT's using.
=cut
sub SystemDSN {
my $self = shift;
my $db_name = RT->Config->Get('DatabaseName');
my $db_type = RT->Config->Get('DatabaseType');
my $dsn = $self->DSN;
if ( $db_type eq 'mysql' ) {
# with mysql, you want to connect sans database to funge things
$dsn =~ s/dbname=\Q$db_name//;
}
elsif ( $db_type eq 'Pg' ) {
# with postgres, you want to connect to template1 database
$dsn =~ s/dbname=\Q$db_name/dbname=template1/;
}
return $dsn;
}
=head2 Database compatibility and integrity checks
=cut
sub CheckIntegrity {
my $self = shift;
unless ($RT::Handle and $RT::Handle->dbh) {
local $@;
unless ( eval { RT::ConnectToDatabase(); 1 } ) {
return (0, 'no connection', "$@");
}
}
require RT::CurrentUser;
my $test_user = RT::CurrentUser->new;
$test_user->Load('RT_System');
unless ( $test_user->id ) {
return (0, 'no system user', "Couldn't find RT_System user in the DB '". $RT::Handle->DSN ."'");
}
$test_user = RT::CurrentUser->new;
$test_user->Load('Nobody');
unless ( $test_user->id ) {
return (0, 'no nobody user', "Couldn't find Nobody user in the DB '". $RT::Handle->DSN ."'");
}
return 1;
}
sub CheckCompatibility {
my $self = shift;
my $dbh = shift;
my $state = shift || 'post';
my $db_type = RT->Config->Get('DatabaseType');
if ( $db_type eq "mysql" ) {
# Check which version we're running
my $version = ($dbh->selectrow_array("show variables like 'version'"))[1];
return (0, "couldn't get version of the mysql server")
unless $version;
($version) = $version =~ /^(\d+\.\d+)/;
return (0, "RT is unsupported on MySQL versions before 4.1. Your version is $version.")
if $version < 4.1;
# MySQL must have InnoDB support
local $dbh->{FetchHashKeyName} = 'NAME_lc';
my $innodb = lc($dbh->selectall_hashref("SHOW ENGINES", "engine")->{InnoDB}{support} || "no");
if ( $innodb eq "no" ) {
return (0, "RT requires that MySQL be compiled with InnoDB table support.\n".
"See <http://dev.mysql.com/doc/mysql/en/innodb-storage-engine.html>\n".
"and check that there are no 'skip-innodb' lines in your my.cnf.");
} elsif ( $innodb eq "disabled" ) {
return (0, "RT requires that MySQL InnoDB table support be enabled.\n".
"Remove the 'skip-innodb' or 'innodb = OFF' line from your my.cnf file, restart MySQL, and try again.\n");
}
if ( $state eq 'post' ) {
my $show_table = sub { $dbh->selectrow_arrayref("SHOW CREATE TABLE $_[0]")->[1] };
unless ( $show_table->("Tickets") =~ /(?:ENGINE|TYPE)\s*=\s*InnoDB/i ) {
return (0, "RT requires that all its tables be of InnoDB type. Upgrade RT tables.");
}
unless ( $show_table->("Attachments") =~ /\bContent\b[^,]*BLOB/i ) {
return (0, "RT since version 3.8 has new schema for MySQL versions after 4.1.0\n"
."Follow instructions in the UPGRADING.mysql file.");
}
}
if ($state =~ /^(create|post)$/) {
my $show_var = sub { $dbh->selectrow_arrayref("SHOW VARIABLES LIKE ?",{},$_[0])->[1] };
my $max_packet = $show_var->("max_allowed_packet");
if ($max_packet <= (5 * 1024 * 1024)) {
$max_packet = sprintf("%.1fM", $max_packet/1024/1024);
warn "max_allowed_packet is set to $max_packet, which limits the maximum attachment or email size that RT can process. Consider adjusting MySQL's max_allowed_packet setting.\n";
}
my $full_version = $show_var->("version");
if ($full_version =~ /^5\.(\d+)\.(\d+)$/ and (($1 == 6 and $2 >= 20) or $1 > 6)) {
my $redo_log_size = $show_var->("innodb_log_file_size");
$redo_log_size *= $show_var->("innodb_log_files_in_group")
if $full_version =~ /^5\.(\d+)\.(\d+)$/ and (($1 == 6 and $2 >= 22) or $1 > 6);
if ($redo_log_size / 10 < 5 * 1024 * 1024) {
$redo_log_size = sprintf("%.1fM",$redo_log_size/1024/1024);
warn "innodb_log_file_size is set to $redo_log_size; attachments can only be 10% of this value on MySQL 5.6. Consider adjusting MySQL's innodb_log_file_size setting.\n";
}
}
}
}
return (1)
}
sub CheckSphinxSE {
my $self = shift;
my $dbh = $RT::Handle->dbh;
local $dbh->{'RaiseError'} = 0;
local $dbh->{'PrintError'} = 0;
my $has = ($dbh->selectrow_array("show variables like 'have_sphinx'"))[1];
$has ||= ($dbh->selectrow_array(
"select 'yes' from INFORMATION_SCHEMA.PLUGINS where PLUGIN_NAME = 'sphinx' AND PLUGIN_STATUS='active'"
))[0];
return 0 unless lc($has||'') eq "yes";
return 1;
}
=head2 Database maintanance
=head3 CreateDatabase $DBH
Creates a new database. This method can be used as class method.
Takes DBI handle. Many database systems require special handle to
allow you to create a new database, so you have to use L<SystemDSN>
method during connection.
Fetches type and name of the DB from the config.
=cut
sub CreateDatabase {
my $self = shift;
my $dbh = shift or return (0, "No DBI handle provided");
my $db_type = RT->Config->Get('DatabaseType');
my $db_name = RT->Config->Get('DatabaseName');
my $status;
if ( $db_type eq 'SQLite' ) {
return (1, 'Skipped as SQLite doesn\'t need any action');
}
elsif ( $db_type eq 'Oracle' ) {
my $db_user = RT->Config->Get('DatabaseUser');
my $db_pass = RT->Config->Get('DatabasePassword');
$status = $dbh->do(
"CREATE USER $db_user IDENTIFIED BY $db_pass"
." default tablespace USERS"
." temporary tablespace TEMP"
." quota unlimited on USERS"
);
unless ( $status ) {
return $status, "Couldn't create user $db_user identified by $db_pass."
."\nError: ". $dbh->errstr;
}
$status = $dbh->do( "GRANT connect, resource TO $db_user" );
unless ( $status ) {
return $status, "Couldn't grant connect and resource to $db_user."
."\nError: ". $dbh->errstr;
}
return (1, "Created user $db_user. All RT's objects should be in his schema.");
}
elsif ( $db_type eq 'Pg' ) {
$status = $dbh->do("CREATE DATABASE $db_name WITH ENCODING='UNICODE' TEMPLATE template0");
}
elsif ( $db_type eq 'mysql' ) {
$status = $dbh->do("CREATE DATABASE `$db_name` DEFAULT CHARACTER SET utf8");
}
else {
$status = $dbh->do("CREATE DATABASE $db_name");
}
return ($status, $DBI::errstr);
}
=head3 DropDatabase $DBH
Drops RT's database. This method can be used as class method.
Takes DBI handle as first argument. Many database systems require
a special handle to allow you to drop a database, so you may have
to use L<SystemDSN> when acquiring the DBI handle.
Fetches the type and name of the database from the config.
=cut
sub DropDatabase {
my $self = shift;
my $dbh = shift or return (0, "No DBI handle provided");
my $db_type = RT->Config->Get('DatabaseType');
my $db_name = RT->Config->Get('DatabaseName');
if ( $db_type eq 'Oracle' ) {
my $db_user = RT->Config->Get('DatabaseUser');
my $status = $dbh->do( "DROP USER $db_user CASCADE" );
unless ( $status ) {
return 0, "Couldn't drop user $db_user."
."\nError: ". $dbh->errstr;
}
return (1, "Successfully dropped user '$db_user' with his schema.");
}
elsif ( $db_type eq 'SQLite' ) {
my $path = $db_name;
$path = "$RT::VarPath/$path" unless substr($path, 0, 1) eq '/';
unlink $path or return (0, "Couldn't remove '$path': $!");
return (1);
} elsif ( $db_type eq 'mysql' ) {
$dbh->do("DROP DATABASE `$db_name`")
or return (0, $DBI::errstr);
} else {
$dbh->do("DROP DATABASE ". $db_name)
or return (0, $DBI::errstr);
}
return (1);
}
=head2 InsertACL
=cut
sub InsertACL {
my $self = shift;
my $dbh = shift;
my $base_path = shift || $RT::EtcPath;
my $db_type = RT->Config->Get('DatabaseType');
return (1) if $db_type eq 'SQLite';
$dbh = $self->dbh if !$dbh && ref $self;
return (0, "No DBI handle provided") unless $dbh;
return (0, "'$base_path' doesn't exist") unless -e $base_path;
my $path;
if ( -d $base_path ) {
$path = File::Spec->catfile( $base_path, "acl.$db_type");
$path = $self->GetVersionFile($dbh, $path);
$path = File::Spec->catfile( $base_path, "acl")
unless $path && -e $path;
return (0, "Couldn't find ACLs for $db_type")
unless -e $path;
} else {
$path = $base_path;
}
local *acl;
do $path || return (0, "Couldn't load ACLs: " . $@);
my @acl = acl($dbh);
foreach my $statement (@acl) {
my $sth = $dbh->prepare($statement)
or return (0, "Couldn't prepare SQL query:\n $statement\n\nERROR: ". $dbh->errstr);
unless ( $sth->execute ) {
return (0, "Couldn't run SQL query:\n $statement\n\nERROR: ". $sth->errstr);
}
}
return (1);
}
=head2 InsertSchema
=cut
sub InsertSchema {
my $self = shift;
my $dbh = shift;
my $base_path = (shift || $RT::EtcPath);
$dbh = $self->dbh if !$dbh && ref $self;
return (0, "No DBI handle provided") unless $dbh;
my $db_type = RT->Config->Get('DatabaseType');
my $file;
if ( -d $base_path ) {
$file = $base_path . "/schema." . $db_type;
} else {
$file = $base_path;
}
$file = $self->GetVersionFile( $dbh, $file );
unless ( $file ) {
return (0, "Couldn't find schema file(s) '$file*'");
}
unless ( -f $file && -r $file ) {
return (0, "File '$file' doesn't exist or couldn't be read");
}
my (@schema);
open( my $fh_schema, '<', $file ) or die $!;
my $has_local = 0;
open( my $fh_schema_local, "<" . $self->GetVersionFile( $dbh, $RT::LocalEtcPath . "/schema." . $db_type ))
and $has_local = 1;
my $statement = "";
foreach my $line ( <$fh_schema>, ($_ = ';;'), $has_local? <$fh_schema_local>: () ) {
$line =~ s/\#.*//g;
$line =~ s/--.*//g;
$statement .= $line;
if ( $line =~ /;(\s*)$/ ) {
$statement =~ s/;(\s*)$//g;
push @schema, $statement;
$statement = "";
}
}
close $fh_schema; close $fh_schema_local;
if ( $db_type eq 'Oracle' ) {
my $db_user = RT->Config->Get('DatabaseUser');
my $status = $dbh->do( "ALTER SESSION SET CURRENT_SCHEMA=$db_user" );
unless ( $status ) {
return $status, "Couldn't set current schema to $db_user."
."\nError: ". $dbh->errstr;
}
}
local $SIG{__WARN__} = sub {};
my $is_local = 0;
$dbh->begin_work or return (0, "Couldn't begin transaction: ". $dbh->errstr);
foreach my $statement (@schema) {
if ( $statement =~ /^\s*;$/ ) {
$is_local = 1; next;
}
my $sth = $dbh->prepare($statement)
or return (0, "Couldn't prepare SQL query:\n$statement\n\nERROR: ". $dbh->errstr);
unless ( $sth->execute or $is_local ) {
return (0, "Couldn't run SQL query:\n$statement\n\nERROR: ". $sth->errstr);
}
}
$dbh->commit or return (0, "Couldn't commit transaction: ". $dbh->errstr);
return (1);
}
sub InsertIndexes {
my $self = shift;
my $dbh = shift;
my $base_path = shift || $RT::EtcPath;
my $db_type = RT->Config->Get('DatabaseType');
$dbh = $self->dbh if !$dbh && ref $self;
return (0, "No DBI handle provided") unless $dbh;
return (0, "'$base_path' doesn't exist") unless -e $base_path;
my $path;
if ( -d $base_path ) {
$path = File::Spec->catfile( $base_path, "indexes");
return (0, "Couldn't find indexes file")
unless -e $path;
} else {
$path = $base_path;
}
if ( $db_type eq 'Oracle' ) {
my $db_user = RT->Config->Get('DatabaseUser');
my $status = $dbh->do( "ALTER SESSION SET CURRENT_SCHEMA=$db_user" );
unless ( $status ) {
return $status, "Couldn't set current schema to $db_user."
."\nError: ". $dbh->errstr;
}
}
local $@;
eval { require $path; 1 }
or return (0, "Couldn't execute '$path': " . $@);
return (1);
}
=head1 GetVersionFile
Takes base name of the file as argument, scans for <base name>-<version> named
files and returns file name with closest version to the version of the RT DB.
=cut
sub GetVersionFile {
my $self = shift;
my $dbh = shift;
my $base_name = shift;
my $db_version = ref $self
? $self->DatabaseVersion
: do {
my $tmp = RT::Handle->new;
$tmp->dbh($dbh);
$tmp->DatabaseVersion;
};
require File::Glob;
my @files = File::Glob::bsd_glob("$base_name*");
return '' unless @files;
my %version = map { $_ =~ /\.\w+-([-\w\.]+)$/; ($1||0) => $_ } @files;
my $version;
foreach ( reverse sort cmp_version keys %version ) {
if ( cmp_version( $db_version, $_ ) >= 0 ) {
$version = $_;
last;
}
}
return defined $version? $version{ $version } : undef;
}
{ my %word = (
a => -4,
alpha => -4,
b => -3,
beta => -3,
pre => -2,
rc => -1,
head => 9999,
);
sub cmp_version($$) {
my ($a, $b) = (@_);
my @a = grep defined, map { /^[0-9]+$/? $_ : /^[a-zA-Z]+$/? $word{$_}|| -10 : undef }
split /([^0-9]+)/, $a;
my @b = grep defined, map { /^[0-9]+$/? $_ : /^[a-zA-Z]+$/? $word{$_}|| -10 : undef }
split /([^0-9]+)/, $b;
@a > @b
? push @b, (0) x (@a-@b)
: push @a, (0) x (@b-@a);
for ( my $i = 0; $i < @a; $i++ ) {
return $a[$i] <=> $b[$i] if $a[$i] <=> $b[$i];
}
return 0;
}
sub version_words {
return keys %word;
}
}
=head2 InsertInitialData
Inserts system objects into RT's DB, like system user or 'nobody',
internal groups and other records required. However, this method
doesn't insert any real users like 'root' and you have to use
InsertData or another way to do that.
Takes no arguments. Returns status and message tuple.
It's safe to call this method even if those objects already exist.
=cut
sub InsertInitialData {
my $self = shift;
my @warns;
# avoid trying to canonicalize system users through ExternalAuth
no warnings 'redefine';
local *RT::User::CanonicalizeUserInfo = sub { 1 };
# create RT_System user and grant him rights
{
require RT::CurrentUser;
my $test_user = RT::User->new( RT::CurrentUser->new() );
$test_user->Load('RT_System');
if ( $test_user->id ) {
push @warns, "Found system user in the DB.";
}
else {
my $user = RT::User->new( RT::CurrentUser->new() );
my ( $val, $msg ) = $user->_BootstrapCreate(
Name => 'RT_System',
RealName => 'The RT System itself',
Comments => 'Do not delete or modify this user. '
. 'It is integral to RT\'s internal database structures',
Creator => '1',
LastUpdatedBy => '1',
);
return ($val, $msg) unless $val;
}
DBIx::SearchBuilder::Record::Cachable->FlushCache;
}
# init RT::SystemUser and RT::System objects
RT::InitSystemObjects();
unless ( RT->SystemUser->id ) {
return (0, "Couldn't load system user");
}
# grant SuperUser right to system user
{
my $test_ace = RT::ACE->new( RT->SystemUser );
$test_ace->LoadByCols(
PrincipalId => ACLEquivGroupId( RT->SystemUser->Id ),
PrincipalType => 'Group',
RightName => 'SuperUser',
ObjectType => 'RT::System',
ObjectId => 1,
);
if ( $test_ace->id ) {
push @warns, "System user has global SuperUser right.";
} else {
my $ace = RT::ACE->new( RT->SystemUser );
my ( $val, $msg ) = $ace->_BootstrapCreate(
PrincipalId => ACLEquivGroupId( RT->SystemUser->Id ),
PrincipalType => 'Group',
RightName => 'SuperUser',
ObjectType => 'RT::System',
ObjectId => 1,
);
return ($val, $msg) unless $val;
}
DBIx::SearchBuilder::Record::Cachable->FlushCache;
}
# system groups
# $self->loc('Everyone'); # For the string extractor to get a string to localize
# $self->loc('Privileged'); # For the string extractor to get a string to localize
# $self->loc('Unprivileged'); # For the string extractor to get a string to localize
foreach my $name (qw(Everyone Privileged Unprivileged)) {
my $group = RT::Group->new( RT->SystemUser );
$group->LoadSystemInternalGroup( $name );
if ( $group->id ) {
push @warns, "System group '$name' already exists.";
next;
}
$group = RT::Group->new( RT->SystemUser );
my ( $val, $msg ) = $group->_Create(
Domain => 'SystemInternal',
Description => 'Pseudogroup for internal use', # loc
Name => $name,
Instance => '',
);
return ($val, $msg) unless $val;
}
# nobody
{
my $user = RT::User->new( RT->SystemUser );
$user->Load('Nobody');
if ( $user->id ) {
push @warns, "Found 'Nobody' user in the DB.";
}
else {
my ( $val, $msg ) = $user->Create(
Name => 'Nobody',
RealName => 'Nobody in particular',
Comments => 'Do not delete or modify this user. It is integral '
.'to RT\'s internal data structures',
Privileged => 0,
);
return ($val, $msg) unless $val;
}
if ( $user->HasRight( Right => 'OwnTicket', Object => $RT::System ) ) {
push @warns, "User 'Nobody' has global OwnTicket right.";
} else {
my ( $val, $msg ) = $user->PrincipalObj->GrantRight(
Right => 'OwnTicket',
Object => $RT::System,
);
return ($val, $msg) unless $val;
}
}
# rerun to get init Nobody as well
RT::InitSystemObjects();
# system role groups
foreach my $name (qw(Owner Requestor Cc AdminCc)) {
my $group = RT->System->RoleGroup( $name );
if ( $group->id ) {
push @warns, "System role '$name' already exists.";
next;
}
$group = RT::Group->new( RT->SystemUser );
my ( $val, $msg ) = $group->CreateRoleGroup(
Name => $name,
Object => RT->System,
Description => 'SystemRolegroup for internal use', # loc
InsideTransaction => 0,
);
return ($val, $msg) unless $val;
}
# assets role groups
foreach my $name (RT::Asset->Roles) {
next if $name eq "Owner";
my $group = RT->System->RoleGroup( $name );
if ( $group->id ) {
push @warns, "Assets role '$name' already exists.";
next;
}
$group = RT::Group->new( RT->SystemUser );
my ($val, $msg) = $group->CreateRoleGroup(
Object => RT->System,
Name => $name,
InsideTransaction => 0,
);
return ($val, $msg) unless $val;
}
push @warns, "You appear to have a functional RT database."
if @warns;
return (1, join "\n", @warns);
}
=head2 InsertData
Load some sort of data into the database, takes path to a file.
=cut
sub InsertData {
my $self = shift;
my $datafile = shift;
my $root_password = shift;
my %args = (
disconnect_after => 1,
@_
);
# Slurp in stuff to insert from the datafile. Possible things to go in here:-
our (@Groups, @Users, @Members, @ACL, @Queues, @Classes, @ScripActions, @ScripConditions,
@Templates, @CustomFields, @CustomRoles, @Scrips, @Attributes, @Initial, @Final,
@Catalogs, @Assets);
local (@Groups, @Users, @Members, @ACL, @Queues, @Classes, @ScripActions, @ScripConditions,
@Templates, @CustomFields, @CustomRoles, @Scrips, @Attributes, @Initial, @Final,
@Catalogs, @Assets);
local $@;
$RT::Logger->debug("Going to load '$datafile' data file");
my $datafile_content = do {
local $/;
open (my $f, '<:encoding(UTF-8)', $datafile)
or die "Cannot open initialdata file '$datafile' for read: $@";
<$f>;
};
my $format_handler;
my $handlers = RT->Config->Get('InitialdataFormatHandlers');
foreach my $handler_candidate (@$handlers) {
next if $handler_candidate eq 'perl';
$handler_candidate->require
or die "Config option InitialdataFormatHandlers lists '$handler_candidate', but it failed to load:\n$@\n";
if ($handler_candidate->CanLoad($datafile_content)) {
$RT::Logger->debug("Initialdata file '$datafile' can be loaded by $handler_candidate");
$format_handler = $handler_candidate;
last;
} else {
$RT::Logger->debug("Initialdata file '$datafile' can not be loaded by $handler_candidate");
}
}
if ( $format_handler ) {
$format_handler->Load(
$datafile_content,
{
Groups => \@Groups,
Users => \@Users,
Members => \@Members,
ACL => \@ACL,
Queues => \@Queues,
Classes => \@Classes,
ScripActions => \@ScripActions,
ScripConditions => \@ScripConditions,
Templates => \@Templates,
CustomFields => \@CustomFields,
CustomRoles => \@CustomRoles,
Scrips => \@Scrips,
Attributes => \@Attributes,
Initial => \@Initial,
Final => \@Final,
Catalogs => \@Catalogs,
Assets => \@Assets,
},
) or return (0, "Couldn't load data from '$datafile' for import:\n\nERROR:" . $@);
}
if ( !$format_handler and grep(/^perl$/, @$handlers) ) {
# Use perl-style initialdata
# Note: eval of perl initialdata should only be done once
eval { require $datafile }
or return (0, "Couldn't load data from '$datafile':\nERROR:" . $@ . "\n\nDo you have the correct initialdata handler in RT_Config for this type of file?");
}
if ( @Initial ) {
$RT::Logger->debug("Running initial actions...");
foreach ( @Initial ) {
local $@;
eval { $_->(); 1 } or return (0, "One of initial functions failed: $@");
}
$RT::Logger->debug("Done.");
}
if ( @Groups ) {
$RT::Logger->debug("Creating groups...");
foreach my $item (@Groups) {
my $attributes = delete $item->{ Attributes };
my $new_entry = RT::Group->new( RT->SystemUser );
$item->{'Domain'} ||= 'UserDefined';
my $member_of = delete $item->{'MemberOf'};
my $members = delete $item->{'Members'};
my ( $return, $msg ) = $new_entry->_Create(%$item);
unless ( $return ) {
$RT::Logger->error( $msg );
next;
} else {
$RT::Logger->debug($return .".");
$_->{Object} = $new_entry for @{$attributes || []};
push @Attributes, @{$attributes || []};
}
if ( $member_of ) {
$member_of = [ $member_of ] unless ref $member_of eq 'ARRAY';
foreach( @$member_of ) {
my $parent = RT::Group->new(RT->SystemUser);
if ( ref $_ eq 'HASH' ) {
$parent->LoadByCols( %$_ );
}
elsif ( !ref $_ ) {
$parent->LoadUserDefinedGroup( $_ );
}
else {
$RT::Logger->error(
"(Error: wrong format of MemberOf field."
." Should be name of user defined group or"
." hash reference with 'column => value' pairs."
." Use array reference to add to multiple groups)"
);
next;
}
unless ( $parent->Id ) {
$RT::Logger->error("(Error: couldn't load group to add member)");
next;
}
my ( $return, $msg ) = $parent->AddMember( $new_entry->Id );
unless ( $return ) {
$RT::Logger->error( $msg );
} else {
$RT::Logger->debug( $return ."." );
}
}
}
push @Members, map { +{Group => $new_entry->id,
Class => "RT::User", Name => $_} }
@{ $members->{Users} || [] };
push @Members, map { +{Group => $new_entry->id,
Class => "RT::Group", Name => $_} }
@{ $members->{Groups} || [] };
}
$RT::Logger->debug("done.");
}
if ( @Users ) {
$RT::Logger->debug("Creating users...");
foreach my $item (@Users) {
my $member_of = delete $item->{'MemberOf'};
if ( $item->{'Name'} eq 'root' && $root_password ) {
$item->{'Password'} = $root_password;
}
my $attributes = delete $item->{ Attributes };
no warnings 'redefine';
local *RT::User::CanonicalizeUserInfo = sub { 1 }
if delete $item->{ SkipCanonicalize };
my $new_entry = RT::User->new( RT->SystemUser );
my ( $return, $msg ) = $new_entry->Create(%$item);
unless ( $return ) {
$RT::Logger->error( $msg );
} else {
$RT::Logger->debug( $return ."." );
$_->{Object} = $new_entry for @{$attributes || []};
push @Attributes, @{$attributes || []};
}
if ( $member_of ) {
$member_of = [ $member_of ] unless ref $member_of eq 'ARRAY';
foreach( @$member_of ) {
my $parent = RT::Group->new($RT::SystemUser);
if ( ref $_ eq 'HASH' ) {
$parent->LoadByCols( %$_ );
}
elsif ( !ref $_ ) {
$parent->LoadUserDefinedGroup( $_ );
}
else {
$RT::Logger->error(
"(Error: wrong format of MemberOf field."
." Should be name of user defined group or"
." hash reference with 'column => value' pairs."
." Use array reference to add to multiple groups)"
);
next;
}
unless ( $parent->Id ) {
$RT::Logger->error("(Error: couldn't load group to add member)");
next;
}
my ( $return, $msg ) = $parent->AddMember( $new_entry->Id );
unless ( $return ) {
$RT::Logger->error( $msg );
} else {
$RT::Logger->debug( $return ."." );
}
}
}
}
$RT::Logger->debug("done.");
}
if ( @Members ) {
$RT::Logger->debug("Adding users and groups to groups...");
for my $item (@Members) {
my $group = RT::Group->new(RT->SystemUser);
$group->LoadUserDefinedGroup( delete $item->{Group} );
unless ($group->Id) {
RT->Logger->error("Unable to find group '$group' to add members to");
next;
}
my $class = delete $item->{Class} || 'RT::User';
my $member = $class->new( RT->SystemUser );
$item->{Domain} = 'UserDefined' if $member->isa("RT::Group");
$member->LoadByCols( %$item );
unless ($member->Id) {
RT->Logger->error("Unable to find $class '".($item->{id} || $item->{Name})."' to add to ".$group->Name);
next;
}
my ( $return, $msg) = $group->AddMember( $member->PrincipalObj->Id );
unless ( $return ) {
$RT::Logger->error( $msg );
} else {
$RT::Logger->debug( $return ."." );
}
}
}
if ( @Queues ) {
$RT::Logger->debug("Creating queues...");
for my $item (@Queues) {
my $attributes = delete $item->{ Attributes };
my $new_entry = RT::Queue->new(RT->SystemUser);
my ( $return, $msg ) = $new_entry->Create(%$item);
unless ( $return ) {
$RT::Logger->error( $msg );
} else {
$RT::Logger->debug( $return ."." );
$_->{Object} = $new_entry for @{$attributes || []};
push @Attributes, @{$attributes || []};
}
}
$RT::Logger->debug("done.");
}
if ( @Classes ) {
$RT::Logger->debug("Creating classes...");
for my $item (@Classes) {
my $attributes = delete $item->{ Attributes };
# Back-compat for the old "Queue" argument
if ( exists $item->{'Queue'} ) {
$item->{'ApplyTo'} = delete $item->{'Queue'};
}
my $apply_to = delete $item->{'ApplyTo'};
my $new_entry = RT::Class->new(RT->SystemUser);
my ( $return, $msg ) = $new_entry->Create(%$item);
unless ( $return ) {
$RT::Logger->error( $msg );
} else {
$RT::Logger->debug( $return ."." );
if ( !$apply_to ) {
( $return, $msg) = $new_entry->AddToObject( RT::Queue->new(RT->SystemUser) );
$RT::Logger->error( $msg ) unless $return;
} else {
$apply_to = [ $apply_to ] unless ref $apply_to;
for my $name ( @{ $apply_to } ) {
my $queue = RT::Queue->new( RT->SystemUser );
$queue->Load( $name );
if ( $queue->id ) {
( $return, $msg) = $new_entry->AddToObject( $queue );
$RT::Logger->error( $msg ) unless $return;
}
else {
$RT::Logger->error( "Could not find RT::Queue $name to apply " . $new_entry->Name . " to" );
}
}
}
$_->{Object} = $new_entry for @{$attributes || []};
push @Attributes, @{$attributes || []};
}
}
$RT::Logger->debug("done.");
}
if ( @Catalogs ) {
$RT::Logger->debug("Creating Catalogs...");
for my $item (@Catalogs) {
my $new_entry = RT::Catalog->new(RT->SystemUser);
my ( $return, $msg ) = $new_entry->Create(%$item);
unless ( $return ) {
$RT::Logger->error( $msg );
}
else {
$RT::Logger->debug( $return ."." );
}
}
$RT::Logger->debug("done.");
}
if ( @Assets ) {
$RT::Logger->debug("Creating Assets...");
for my $item (@Catalogs) {
my $new_entry = RT::Asset->new(RT->SystemUser);
my ( $return, $msg ) = $new_entry->Create(%$item);
unless ( $return ) {
$RT::Logger->error( $msg );
}
else {
$RT::Logger->debug( $return ."." );
}
}
$RT::Logger->debug("done.");
}
if ( @CustomFields ) {
$RT::Logger->debug("Creating custom fields...");
for my $item ( @CustomFields ) {
my $attributes = delete $item->{ Attributes };
my $new_entry = RT::CustomField->new( RT->SystemUser );
my $values = delete $item->{'Values'};
# Back-compat for the old "Queue" argument
if ( exists $item->{'Queue'} ) {
$item->{'LookupType'} ||= 'RT::Queue-RT::Ticket';
$RT::Logger->warn("Queue provided for non-ticket custom field")
unless $item->{'LookupType'} =~ /^RT::Queue-/;
$item->{'ApplyTo'} = delete $item->{'Queue'};
}
my $apply_to = delete $item->{'ApplyTo'};
if ( $item->{'BasedOn'} ) {
if ( $item->{'BasedOn'} =~ /^\d+$/) {
# Already have an ID -- should be fine
} elsif ( $item->{'LookupType'} ) {
my $basedon = RT::CustomField->new($RT::SystemUser);
my ($ok, $msg ) = $basedon->LoadByCols(
Name => $item->{'BasedOn'},
LookupType => $item->{'LookupType'},
Disabled => 0 );
if ($ok) {
$item->{'BasedOn'} = $basedon->Id;
} else {
$RT::Logger->error("Unable to load $item->{BasedOn} as a $item->{LookupType} CF. Skipping BasedOn: $msg");
delete $item->{'BasedOn'};
}
} else {
$RT::Logger->error("Unable to load CF $item->{BasedOn} because no LookupType was specified. Skipping BasedOn");
delete $item->{'BasedOn'};
}
}
my ( $return, $msg ) = $new_entry->Create(%$item);
unless( $return ) {
$RT::Logger->error( $msg );
next;
}
foreach my $value ( @{$values} ) {
( $return, $msg ) = $new_entry->AddValue(%$value);
$RT::Logger->error( $msg ) unless $return;
}
my $class = $new_entry->RecordClassFromLookupType;
if ($class) {
if ($new_entry->IsOnlyGlobal and $apply_to) {
$RT::Logger->warn("ApplyTo provided for global custom field ".$new_entry->Name );
undef $apply_to;
}
if ( !$apply_to ) {
# Apply to all by default
my $ocf = RT::ObjectCustomField->new(RT->SystemUser);
( $return, $msg) = $ocf->Create( CustomField => $new_entry->Id );
$RT::Logger->error( $msg ) unless $return and $ocf->Id;
} else {
$apply_to = [ $apply_to ] unless ref $apply_to;
for my $name ( @{ $apply_to } ) {
my $obj = $class->new(RT->SystemUser);
$obj->Load($name);
if ( $obj->Id ) {
my $ocf = RT::ObjectCustomField->new(RT->SystemUser);
( $return, $msg ) = $ocf->Create(
CustomField => $new_entry->Id,
ObjectId => $obj->Id,
);
$RT::Logger->error( $msg ) unless $return and $ocf->Id;
} else {
$RT::Logger->error("Could not find $class $name to apply ".$new_entry->Name." to" );
}
}
}
}
$_->{Object} = $new_entry for @{$attributes || []};
push @Attributes, @{$attributes || []};
}
$RT::Logger->debug("done.");
}
if ( @CustomRoles ) {
$RT::Logger->debug("Creating custom roles...");
for my $item ( @CustomRoles ) {
my $attributes = delete $item->{ Attributes };
my $apply_to = delete $item->{'ApplyTo'};
my $new_entry = RT::CustomRole->new( RT->SystemUser );
my ( $ok, $msg ) = $new_entry->Create(%$item);
if (!$ok) {
$RT::Logger->error($msg);
next;
}
if ($apply_to) {
$apply_to = [ $apply_to ] unless ref $apply_to;
for my $name ( @{ $apply_to } ) {
my ($ok, $msg) = $new_entry->AddToObject($name);
$RT::Logger->error( $msg ) if !$ok;
}
}
$_->{Object} = $new_entry for @{$attributes || []};
push @Attributes, @{$attributes || []};
}
$RT::Logger->debug("done.");
}
if ( @ACL ) {
$RT::Logger->debug("Creating ACL...");
for my $item (@ACL) {
my ($princ, $object);
# Global rights or Queue rights?
if ( $item->{'CF'} ) {
$object = RT::CustomField->new( RT->SystemUser );
my @columns = ( Name => $item->{'CF'} );
push @columns, LookupType => $item->{'LookupType'} if $item->{'LookupType'};
push @columns, ObjectId => $item->{'ObjectId'} if $item->{'ObjectId'};
push @columns, Queue => $item->{'Queue'} if $item->{'Queue'} and not ref $item->{'Queue'};
my ($ok, $msg) = $object->LoadByName( @columns );
unless ( $ok ) {
RT->Logger->error("Unable to load CF ".$item->{CF}.": $msg");
next;
}
} elsif ( $item->{'Queue'} ) {
$object = RT::Queue->new(RT->SystemUser);
my ($ok, $msg) = $object->Load( $item->{'Queue'} );
unless ( $ok ) {
RT->Logger->error("Unable to load queue ".$item->{Queue}.": $msg");
next;
}
} elsif ( $item->{ObjectType} and $item->{ObjectId}) {
$object = $item->{ObjectType}->new(RT->SystemUser);
my ($ok, $msg) = $object->Load( $item->{ObjectId} );
unless ( $ok ) {
RT->Logger->error("Unable to load ".$item->{ObjectType}." ".$item->{ObjectId}.": $msg");
next;
}
} else {
$object = $RT::System;
}
# Group rights or user rights?
if ( $item->{'GroupDomain'} ) {
if (my $role_name = delete $item->{CustomRole}) {
my $role = RT::CustomRole->new(RT->SystemUser);
$role->Load($role_name);
$item->{'GroupType'} = $role->GroupType;
}
$princ = RT::Group->new(RT->SystemUser);
if ( $item->{'GroupDomain'} eq 'UserDefined' ) {
$princ->LoadUserDefinedGroup( $item->{'GroupId'} );
} elsif ( $item->{'GroupDomain'} eq 'SystemInternal' ) {
$princ->LoadSystemInternalGroup( $item->{'GroupType'} );
} elsif ( $item->{'GroupDomain'} eq 'RT::System-Role' ) {
$princ->LoadRoleGroup( Object => RT->System, Name => $item->{'GroupType'} );
} elsif ( $item->{'GroupDomain'} eq 'RT::Queue-Role' &&
$item->{'Queue'} )
{
$princ->LoadRoleGroup( Object => $object, Name => $item->{'GroupType'} );
} else {
$princ->Load( $item->{'GroupId'} );
}
unless ( $princ->Id ) {
RT->Logger->error("Unable to load Group: GroupDomain => $item->{GroupDomain}, GroupId => $item->{GroupId}, Queue => $item->{Queue}");
next;
}
} else {
$princ = RT::User->new(RT->SystemUser);
my ($ok, $msg) = $princ->Load( $item->{'UserId'} );
unless ( $ok ) {
RT->Logger->error("Unable to load user: $item->{UserId} : $msg");
next;
}
}
# Grant it
my @rights = ref($item->{'Right'}) eq 'ARRAY' ? @{$item->{'Right'}} : $item->{'Right'};
foreach my $right ( @rights ) {
my ( $return, $msg ) = $princ->PrincipalObj->GrantRight(
Right => $right,
Object => $object
);
unless ( $return ) {
$RT::Logger->error( $msg );
}
else {
$RT::Logger->debug( $return ."." );
}
}
}
$RT::Logger->debug("done.");
}
if ( @ScripActions ) {
$RT::Logger->debug("Creating ScripActions...");
for my $item (@ScripActions) {
my $new_entry = RT::ScripAction->new(RT->SystemUser);
my ( $return, $msg ) = $new_entry->Create(%$item);
unless ( $return ) {
$RT::Logger->error( $msg );
}
else {
$RT::Logger->debug( $return ."." );
}
}
$RT::Logger->debug("done.");
}
if ( @ScripConditions ) {
$RT::Logger->debug("Creating ScripConditions...");
for my $item (@ScripConditions) {
my $new_entry = RT::ScripCondition->new(RT->SystemUser);
my ( $return, $msg ) = $new_entry->Create(%$item);
unless ( $return ) {
$RT::Logger->error( $msg );
}
else {
$RT::Logger->debug( $return ."." );
}
}
$RT::Logger->debug("done.");
}
if ( @Templates ) {
$RT::Logger->debug("Creating templates...");
for my $item (@Templates) {
my $new_entry = RT::Template->new(RT->SystemUser);
my ( $return, $msg ) = $new_entry->Create(%$item);
unless ( $return ) {
$RT::Logger->error( $msg );
}
else {
$RT::Logger->debug( $return ."." );
}
}
$RT::Logger->debug("done.");
}
if ( @Scrips ) {
$RT::Logger->debug("Creating scrips...");
for my $item (@Scrips) {
my $new_entry = RT::Scrip->new(RT->SystemUser);
my @queues = ref $item->{'Queue'} eq 'ARRAY'? @{ $item->{'Queue'} }: $item->{'Queue'} || 0;
push @queues, 0 unless @queues; # add global queue at least
my ( $return, $msg ) = $new_entry->Create( %$item, Queue => shift @queues );
unless ( $return ) {
$RT::Logger->error( $msg );
next;
}
else {
$RT::Logger->debug( $return ."." );
}
foreach my $q ( @queues ) {
my ($return, $msg) = $new_entry->AddToObject(
ObjectId => $q,
Stage => $item->{'Stage'},
);
$RT::Logger->error( "Couldn't apply scrip to $q: $msg" )
unless $return;
}
}
$RT::Logger->debug("done.");
}
if ( @Attributes ) {
$RT::Logger->debug("Creating attributes...");
my $sys = RT::System->new(RT->SystemUser);
for my $item (@Attributes) {
my $obj = delete $item->{Object};
if ( ref $obj eq 'CODE' ) {
$obj = $obj->();
}
$obj ||= $sys;
my ( $return, $msg ) = $obj->AddAttribute (%$item);
unless ( $return ) {
$RT::Logger->error( $msg );
}
else {
$RT::Logger->debug( $return ."." );
}
}
$RT::Logger->debug("done.");
}
if ( @Final ) {
$RT::Logger->debug("Running final actions...");
for ( @Final ) {
local $@;
eval { $_->(); };
$RT::Logger->error( "Failed to run one of final actions: $@" )
if $@;
}
$RT::Logger->debug("done.");
}
# XXX: This disconnect doesn't really belong here; it's a relict from when
# this method was extracted from rt-setup-database. However, too much
# depends on it to change without significant testing. At the very least,
# we can provide a way to skip the side-effect.
if ( $args{disconnect_after} ) {
my $db_type = RT->Config->Get('DatabaseType');
$RT::Handle->Disconnect() unless $db_type eq 'SQLite';
}
$RT::Logger->debug("Done setting up database content.");
# TODO is it ok to return 1 here? If so, the previous codes in this sub
# should return (0, $msg) if error happens instead of just warning.
# anyway, we need to return something here to tell if everything is ok
return( 1, 'Done inserting data' );
}
=head2 ACLEquivGroupId
Given a userid, return that user's acl equivalence group
=cut
sub ACLEquivGroupId {
my $id = shift;
my $cu = RT->SystemUser;
unless ( $cu ) {
require RT::CurrentUser;
$cu = RT::CurrentUser->new;
$cu->LoadByName('RT_System');
warn "Couldn't load RT_System user" unless $cu->id;
}
my $equiv_group = RT::Group->new( $cu );
$equiv_group->LoadACLEquivalenceGroup( $id );
return $equiv_group->Id;
}
=head2 QueryHistory
Returns the SQL query history associated with this handle. The top level array
represents a lists of request. Each request is a hash with metadata about the
request (such as the URL) and a list of queries. You'll probably not be using this.
=cut
sub QueryHistory {
my $self = shift;
return $self->{QueryHistory};
}
=head2 AddRequestToHistory
Adds a web request to the query history. It must be a hash with keys Path (a
string) and Queries (an array reference of arrays, where elements are time,
sql, bind parameters, and duration).
=cut
sub AddRequestToHistory {
my $self = shift;
my $request = shift;
push @{ $self->{QueryHistory} }, $request;
}
=head2 Quote
Returns the parameter quoted by DBI. B<You almost certainly do not need this.>
Use bind parameters (C<?>) instead. This is used only outside the scope of interacting
with the database.
=cut
sub Quote {
my $self = shift;
my $value = shift;
return $self->dbh->quote($value);
}
=head2 FillIn
Takes a SQL query and an array reference of bind parameters and fills in the
query's C<?> parameters.
=cut
sub FillIn {
my $self = shift;
my $sql = shift;
my $bind = shift;
my $b = 0;
# is this regex sufficient?
$sql =~ s{\?}{$self->Quote($bind->[$b++])}eg;
return $sql;
}
sub Indexes {
my $self = shift;
my %res;
my $db_type = RT->Config->Get('DatabaseType');
my $dbh = $self->dbh;
my $list;
if ( $db_type eq 'mysql' ) {
$list = $dbh->selectall_arrayref(
'select distinct table_name, index_name from information_schema.statistics where table_schema = ?',
undef, scalar RT->Config->Get('DatabaseName')
);
}
elsif ( $db_type eq 'Pg' ) {
$list = $dbh->selectall_arrayref(
'select tablename, indexname from pg_indexes',
undef,
);
}
elsif ( $db_type eq 'SQLite' ) {
$list = $dbh->selectall_arrayref(
'select tbl_name, name from sqlite_master where type = ?',
undef, 'index'
);
}
elsif ( $db_type eq 'Oracle' ) {
$list = $dbh->selectall_arrayref(
'select table_name, index_name from all_indexes where index_name NOT LIKE ? AND lower(Owner) = ?',
undef, 'SYS_%$$', lc RT->Config->Get('DatabaseUser'),
);
}
else {
die "Not implemented";
}
push @{ $res{ lc $_->[0] } ||= [] }, lc $_->[1] foreach @$list;
return %res;
}
sub IndexesThatBeginWith {
my $self = shift;
my %args = (Table => undef, Columns => [], @_);
my %indexes = $self->Indexes;
my @check = @{ $args{'Columns'} };
my @list;
foreach my $index ( @{ $indexes{ lc $args{'Table'} } || [] } ) {
my %info = $self->IndexInfo( Table => $args{'Table'}, Name => $index );
next if @{ $info{'Columns'} } < @check;
my $check = join ',', @check;
next if join( ',', @{ $info{'Columns'} } ) !~ /^\Q$check\E(?:,|$)/i;
push @list, \%info;
}
return sort { @{ $a->{'Columns'} } <=> @{ $b->{'Columns'} } } @list;
}
sub IndexInfo {
my $self = shift;
my %args = (Table => undef, Name => undef, @_);
my $db_type = RT->Config->Get('DatabaseType');
my $dbh = $self->dbh;
my %res = (
Table => lc $args{'Table'},
Name => lc $args{'Name'},
);
if ( $db_type eq 'mysql' ) {
my $list = $dbh->selectall_arrayref(
'select NON_UNIQUE, COLUMN_NAME, SUB_PART
from information_schema.statistics
where table_schema = ? AND LOWER(table_name) = ? AND index_name = ?
ORDER BY SEQ_IN_INDEX',
undef, scalar RT->Config->Get('DatabaseName'), lc $args{'Table'}, $args{'Name'},
);
return () unless $list && @$list;
$res{'Unique'} = $list->[0][0]? 0 : 1;
$res{'Functional'} = 0;
$res{'Columns'} = [ map $_->[1], @$list ];
}
elsif ( $db_type eq 'Pg' ) {
my $index = $dbh->selectrow_hashref(
'select ix.*, pg_get_expr(ix.indexprs, ix.indrelid) as functions
from
pg_class t, pg_class i, pg_index ix
where
t.relname ilike ?
and t.relkind = ?
and i.relname ilike ?
and ix.indrelid = t.oid
and ix.indexrelid = i.oid
',
undef, $args{'Table'}, 'r', $args{'Name'},
);
return () unless $index && keys %$index;
$res{'Unique'} = $index->{'indisunique'};
$res{'Functional'} = (grep $_ == 0, split ' ', $index->{'indkey'})? 1 : 0;
$res{'Columns'} = [ map int($_), split ' ', $index->{'indkey'} ];
my $columns = $dbh->selectall_hashref(
'select a.attnum, a.attname
from pg_attribute a where a.attrelid = ?',
'attnum', undef, $index->{'indrelid'}
);
if ($index->{'functions'}) {
# XXX: this is good enough for us
$index->{'functions'} = [ split /,\s+/, $index->{'functions'} ];
}
foreach my $e ( @{ $res{'Columns'} } ) {
if (exists $columns->{$e} ) {
$e = $columns->{$e}{'attname'};
}
elsif ( !$e ) {
$e = shift @{ $index->{'functions'} };
}
}
foreach my $column ( @{$res{'Columns'}} ) {
next unless $column =~ s/^lower\( \s* \(? (\w+) \)? (?:::text)? \s* \)$/$1/ix;
$res{'CaseInsensitive'}{ lc $1 } = 1;
}
}
elsif ( $db_type eq 'SQLite' ) {
my $list = $dbh->selectall_arrayref("pragma index_info('$args{'Name'}')");
return () unless $list && @$list;
$res{'Functional'} = 0;
$res{'Columns'} = [ map $_->[2], @$list ];
$list = $dbh->selectall_arrayref("pragma index_list('$args{'Table'}')");
$res{'Unique'} = (grep lc $_->[1] eq lc $args{'Name'}, @$list)[0][2]? 1 : 0;
}
elsif ( $db_type eq 'Oracle' ) {
my $index = $dbh->selectrow_arrayref(
'select uniqueness, funcidx_status from all_indexes
where lower(table_name) = ? AND lower(index_name) = ? AND LOWER(Owner) = ?',
undef, lc $args{'Table'}, lc $args{'Name'}, lc RT->Config->Get('DatabaseUser'),
);
return () unless $index && @$index;
$res{'Unique'} = $index->[0] eq 'UNIQUE'? 1 : 0;
$res{'Functional'} = $index->[1] ? 1 : 0;
my %columns = map @$_, @{ $dbh->selectall_arrayref(
'select column_position, column_name from all_ind_columns
where lower(table_name) = ? AND lower(index_name) = ? AND LOWER(index_owner) = ?',
undef, lc $args{'Table'}, lc $args{'Name'}, lc RT->Config->Get('DatabaseUser'),
) };
$columns{ $_->[0] } = $_->[1] foreach @{ $dbh->selectall_arrayref(
'select column_position, column_expression from all_ind_expressions
where lower(table_name) = ? AND lower(index_name) = ? AND LOWER(index_owner) = ?',
undef, lc $args{'Table'}, lc $args{'Name'}, lc RT->Config->Get('DatabaseUser'),
) };
$res{'Columns'} = [ map $columns{$_}, sort { $a <=> $b } keys %columns ];
foreach my $column ( @{$res{'Columns'}} ) {
next unless $column =~ s/^lower\( \s* " (\w+) " \s* \)$/$1/ix;
$res{'CaseInsensitive'}{ lc $1 } = 1;
}
}
else {
die "Not implemented";
}
$_ = lc $_ foreach @{ $res{'Columns'} };
return %res;
}
sub DropIndex {
my $self = shift;
my %args = (Table => undef, Name => undef, @_);
my $db_type = RT->Config->Get('DatabaseType');
my $dbh = $self->dbh;
local $dbh->{'PrintError'} = 0;
local $dbh->{'RaiseError'} = 0;
my $res;
if ( $db_type eq 'mysql' ) {
$args{'Table'} = $self->_CanonicTableNameMysql( $args{'Table'} );
$res = $dbh->do(
'drop index '. $dbh->quote_identifier($args{'Name'}) ." on $args{'Table'}",
);
}
elsif ( $db_type eq 'Pg' ) {
$res = $dbh->do("drop index $args{'Name'} CASCADE");
}
elsif ( $db_type eq 'SQLite' ) {
$res = $dbh->do("drop index $args{'Name'}");
}
elsif ( $db_type eq 'Oracle' ) {
my $user = RT->Config->Get('DatabaseUser');
# Check if it has constraints associated with it
my ($constraint) = $dbh->selectrow_arrayref(
'SELECT constraint_name, table_name FROM all_constraints WHERE LOWER(owner) = ? AND LOWER(index_name) = ?',
undef, lc $user, lc $args{'Name'}
);
if ($constraint) {
my ($constraint_name, $table) = @{$constraint};
$res = $dbh->do("ALTER TABLE $user.$table DROP CONSTRAINT $constraint_name");
} else {
$res = $dbh->do("DROP INDEX $user.$args{'Name'}");
}
}
else {
die "Not implemented";
}
my $desc = $self->IndexDescription( %args );
return ($res, $res? "Dropped $desc" : "Couldn't drop $desc: ". $dbh->errstr);
}
sub _CanonicTableNameMysql {
my $self = shift;
my $table = shift;
return $table unless $table;
# table name can be case sensitivity in DDL
# use LOWER to workaround mysql "bug"
return ($self->dbh->selectrow_array(
'SELECT table_name
FROM information_schema.tables
WHERE table_schema = ? AND LOWER(table_name) = ?',
undef, scalar RT->Config->Get('DatabaseName'), lc $table
))[0] || $table;
}
sub DropIndexIfExists {
my $self = shift;
my %args = (Table => undef, Name => undef, @_);
my %indexes = $self->Indexes;
return (1, ucfirst($self->IndexDescription( %args )) ." doesn't exists")
unless grep $_ eq lc $args{'Name'},
@{ $indexes{ lc $args{'Table'} } || []};
return $self->DropIndex(%args);
}
sub CreateIndex {
my $self = shift;
my %args = ( Table => undef, Name => undef, Columns => [], CaseInsensitive => {}, @_ );
$args{'Table'} = $self->_CanonicTableNameMysql( $args{'Table'} )
if RT->Config->Get('DatabaseType') eq 'mysql';
my $name = $args{'Name'};
unless ( $name ) {
my %indexes = $self->Indexes;
%indexes = map { $_ => 1 } @{ $indexes{ lc $args{'Table'} } || [] };
my $i = 1;
$i++ while $indexes{ lc($args{'Table'}).$i };
$name = lc($args{'Table'}).$i;
}
my @columns = @{ $args{'Columns'} };
if ( $self->CaseSensitive ) {
foreach my $column ( @columns ) {
next unless $args{'CaseInsensitive'}{ lc $column };
$column = "LOWER($column)";
}
}
my $sql = "CREATE"
. ($args{'Unique'}? ' UNIQUE' : '')
." INDEX $name ON $args{'Table'}"
."(". join( ', ', @columns ) .")"
;
my $res = $self->dbh->do( $sql );
unless ( $res ) {
return (
undef, "Failed to create ". $self->IndexDescription( %args )
." (sql: $sql): ". $self->dbh->errstr
);
}
return ($name, "Created ". $self->IndexDescription( %args ) );
}
sub IndexDescription {
my $self = shift;
my %args = (@_);
my $desc =
($args{'Unique'}? 'unique ' : '')
.'index'
. ($args{'Name'}? " $args{'Name'}" : '')
. ( @{$args{'Columns'}||[]}?
" ("
. join(', ', @{$args{'Columns'}})
. (@{$args{'Optional'}||[]}? '['. join(', ', '', @{$args{'Optional'}}).']' : '' )
.")"
: ''
)
. ($args{'Table'}? " on $args{'Table'}" : '')
;
return $desc;
}
sub MakeSureIndexExists {
my $self = shift;
my %args = ( Table => undef, Columns => [], Optional => [], @_ );
my @list = $self->IndexesThatBeginWith(
Table => $args{'Table'}, Columns => [@{$args{'Columns'}}, @{$args{'Optional'}}],
);
if (@list) {
RT->Logger->debug( ucfirst $self->IndexDescription(
Table => $args{'Table'}, Columns => [@{$args{'Columns'}}, @{$args{'Optional'}}],
). ' exists.' );
return;
}
@list = $self->IndexesThatBeginWith(
Table => $args{'Table'}, Columns => $args{'Columns'},
);
if ( !@list ) {
my ($status, $msg) = $self->CreateIndex(
Table => $args{'Table'}, Columns => [@{$args{'Columns'}}, @{$args{'Optional'}}],
);
my $method = $status ? 'debug' : 'warning';
RT->Logger->$method($msg);
}
else {
RT->Logger->info(
ucfirst $self->IndexDescription(
%{$list[0]}
)
.' exists, you may consider replacing it with '
. $self->IndexDescription(
Table => $args{'Table'}, Columns => [@{$args{'Columns'}}, @{$args{'Optional'}}],
)
);
}
}
sub DropIndexesThatArePrefix {
my $self = shift;
my %args = ( Table => undef, Columns => [], @_ );
my @list = $self->IndexesThatBeginWith(
Table => $args{'Table'}, Columns => [$args{'Columns'}[0]],
);
my $checking = join ',', map lc $_, @{ $args{'Columns'} }, '';
foreach my $i ( splice @list ) {
my $columns = join ',', @{ $i->{'Columns'} }, '';
next unless $checking =~ /^\Q$columns/i;
push @list, $i;
}
pop @list;
foreach my $i ( @list ) {
my ($status, $msg) = $self->DropIndex(
Table => $i->{'Table'}, Name => $i->{'Name'},
);
my $method = $status ? 'debug' : 'warning';
RT->Logger->$method($msg);
}
}
# log a mason stack trace instead of a Carp::longmess because it's less painful
# and uses mason component paths properly
sub _LogSQLStatement {
my $self = shift;
my $statement = shift;
my $duration = shift;
my @bind = @_;
require HTML::Mason::Exceptions;
push @{$self->{'StatementLog'}} , ([Time::HiRes::time(), $statement, [@bind], $duration, HTML::Mason::Exception->new->as_string]);
}
# helper in a few cases where we do SQL by hand
sub __MakeClauseCaseInsensitive {
my $self = shift;
return join ' ', @_ unless $self->CaseSensitive;
my ($field, $op, $value) = $self->_MakeClauseCaseInsensitive(@_);
return "$field $op $value";
}
sub _TableNames {
my $self = shift;
my $dbh = shift || $self->dbh;
{
local $@;
if (
$dbh->{Driver}->{Name} eq 'Pg'
&& $dbh->{'pg_server_version'} >= 90200
&& !eval { DBD::Pg->VERSION('2.19.3'); 1 }
) {
die "You're using PostgreSQL 9.2 or newer. You have to upgrade DBD::Pg module to 2.19.3 or newer: $@";
}
}
my @res;
my $sth = $dbh->table_info( '', undef, undef, "'TABLE'");
while ( my $table = $sth->fetchrow_hashref ) {
push @res, $table->{TABLE_NAME} || $table->{table_name};
}
return @res;
}
__PACKAGE__->FinalizeDatabaseType;
RT::Base->_ImportOverlays();
1;
|