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 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246
|
<?php
// +----------------------------------------------------------------------
// | PHP Source
// +----------------------------------------------------------------------
// | Copyright (C) 2005 by Jeffery Fernandez <developer@jefferyfernandez.id.au>
// +----------------------------------------------------------------------
// |
// | Copyright: See COPYING file that comes with this distribution
// +----------------------------------------------------------------------
//
// http://www.phpinfo.net/articles/article_php-coding-standard.html
session_start();
error_reporting(0);
if (file_exists('../flyspray.conf.php') && (count($config = parse_ini_file('../flyspray.conf.php', true)) > 0) )
{
die('Flyspray Already Installed. Delete the contents of flyspray.conf.php to run setup.');
}
// ---------------------------------------------------------------------
// Application information
// ---------------------------------------------------------------------
define('VALID_FLYSPRAY', 1 );
define('APPLICATION_NAME', 'Flyspray');
// ---------------------------------------------------------------------
// Application Web locations
// ---------------------------------------------------------------------
define('SERVER_WEB_ROOT', 'http://'.$_SERVER['SERVER_NAME']);
define('APPLICATION_SETUP_FOLDER', dirname($_SERVER['PHP_SELF']));
define('APPLICATION_SETUP_INDEX', SERVER_WEB_ROOT . APPLICATION_SETUP_FOLDER);
define('APPLICATION_WEB_ROOT', str_replace('setup',"",APPLICATION_SETUP_INDEX));
// ---------------------------------------------------------------------
// Application file system locations
// ---------------------------------------------------------------------
define('APPLICATION_PATH', realpath('../') );
define('OBJECTS_PATH', realpath('../includes') );
define('TEMPLATE_FOLDER', realpath('templates/'));
require_once(OBJECTS_PATH . '/template.php');
require_once(OBJECTS_PATH . '/functions.inc.php');
require_once(OBJECTS_PATH . '/version.php');
class Setup extends Flyspray
{
var $mPhpRequired;
var $mSupportedDatabases;
var $mAvailableDatabases;
var $mProceed;
var $mPhpVersionStatus;
var $mAdodbStatus;
var $mDatabaseStatus;
var $mConfigFileStatus;
var $mConfigText;
var $mHtaccessText;
var $mCacheFolderStatus;
var $mDbConnection;
var $mProductName;
var $mUnixName;
var $mAuthor;
/**
* @var string To store the data filter type
*/
var $mDataFilter;
/**
* @var array To store the type of database setup (install or Upgrade).
*/
var $mDatabaseSetup;
var $mPreferencesTable;
var $mUsersTable;
var $mAttachmentsTable;
var $mCommentsTable;
var $mServerSoftware;
var $mMinPasswordLength;
var $mAdminUsername;
var $mAdminPassword;
var $mCompleteAction;
var $mPhpCliStatus;
function Setup()
{
// Call parent constructor
//$this->Flyspray();
// Initialise Application values
$mApplication = & new Version();
$this->mProductName = $mApplication->mProductName;
$this->mVersion = $mApplication->mVersion;
$this->mCopyright = $mApplication->mCopyright;
$this->mUnixName = $mApplication->mUnixName;
$this->mAuthor = $mApplication->mAuthor;
$this->mPreferencesTable = 'flyspray_prefs';
$this->mUsersTable = 'flyspray_users';
$this->mMinPasswordLength = 8;
// Initialise flag for proceeding to next step.
$this->mProceed = FALSE;
$this->mPhpRequired = '4.3';
// If the database is supported in Flyspray, the function to check in PHP.
$this->mSupportedDatabases =
array(
'MySQL' => array(TRUE, 'mysql_connect', 'mysql'),
'Postgres' => array(TRUE, 'pg_connect', 'pgsql'),
);
$this->mAvailableDatabases = array();
// Array of information to setup the appropriate tables for installation
// or upgrade of flyspray.
$this->mDatabaseSetup = array (
1 => array ('Install 0.9.8' => '/sql/flyspray-0.9.8', 'dependency' => '', 'function' => 'InstallPointNineEight'),
2 => array ('Upgrade 0.9.7 - 0.9.8' => '/sql/upgrade_0.9.7_to_0.9.8', 'dependency' => '3', 'function' => 'UpgradePointNineSeven'),
// Only for testing3 => array ('Install 0.9.7' => '/sql/flyspray-0.9.7', 'dependency' => '', 'function' => 'InstallPointNineSeven'),
);
$this->mServerSoftware = (strstr($_SERVER['SERVER_SOFTWARE'], 'Apache'))
? 'apache'
: (
(strstr($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS'))
? 'iis'
: 'unknown'
);
// Process the page actions
$this->ProcessActions();
}
/**
* Function to scan include path and any additional paths for files
* @param string $includeFile Name of file to scan for
* @param string $additionalPath An additional path to scan for. eg Application path
* @return boolean/string FALSE/actual path of file
*/
function ScanIncludePath($includeFile, $additionalPath = '')
{
$where_path = '';
// Add the optional application path to the include_path
if (!empty($additionalPath))
{
ini_set('include_path', $additionalPath . PATH_SEPARATOR . ini_get('include_path'));
}
// Get the current include path settings from php config file
$paths = explode(PATH_SEPARATOR, ini_get('include_path'));
// Loop through the array of paths
foreach($paths as $path)
{
// Check to see if the last character of the path is a "directory separator"
if (substr($path, -1, 1) == DIRECTORY_SEPARATOR)
{
// If file exists, transfer the values and quit the foreach loop
if (file_exists($path . $includeFile))
{
$where_path = $path . $includeFile;
break;
}
}
else
{
// Include the "directory separator" in the scan
if (file_exists($path . DIRECTORY_SEPARATOR . $includeFile))
{
$where_path = $path . DIRECTORY_SEPARATOR . $includeFile;
break;
}
}
}
// Return success of scan
return ($where_path) ? $where_path : FALSE;
}
/**
* Function to check the availability of ADOdb libraries. It calls another
* function to scan the inlcude paths and you can include the application path
* to be scanned as well.
* @return string HTML formatted status
*/
function CheckAdodbLibrary()
{
// Get the ADOdb library path. If not found it will be FALSE
$this->mAdodbPath = $this->ScanIncludePath('adodb.inc.php', realpath('../adodb'));
// Update the status of the library
$this->mAdodbStatus = ($this->mAdodbPath) ? TRUE : FALSE;
// Return an html formated availabe/missing string
return $this->ReturnStatus($this->mAdodbStatus, $type = 'available');
}
/**
* Function to check the permission of the config file
* @param void
* @return string An html formatted boolean answer
*/
function CheckConfigFile()
{
// Get the full path to the file
$file = realpath('../flyspray.conf.php');
// Update the status of the Config file
$this->mConfigFileStatus = $this->IsWriteable($file);
// Return an html formated writeable/un-writeable string
return $this->ReturnStatus($this->mConfigFileStatus, $type = 'writeable');
}
/**
* Function to check the permission of the cache folder
* @param void
* @return string An html formatted boolean answer
*/
function CheckCacheFolder()
{
// Get the full path to the file
$file = realpath('../cache');
// Update the status of the Cache folder
$this->mCacheFolderStatus = $this->IsWriteable($file);
// Return an html formated writeable/un-writeable string
return $this->ReturnStatus($this->mCacheFolderStatus, $type = 'writeable');
}
/**
* Function to check the availability of the Database support
* @param void
* @return void
*/
function CheckDatabaseSupport()
{
$status = array();
foreach ($this->mSupportedDatabases as $which => $database)
{
// Checking if the database has libraries built into PHP. Returns TRUE/FALSE
$this->mAvailableDatabases[$which]['status'] = function_exists($database[1]);
// If the Application(Flyspray) supports the available database supported in PHP
$this->mAvailableDatabases[$which]['supported'] = ($database[0] === $this->mAvailableDatabases[$which]['status'])
? $this->mAvailableDatabases[$which]['status']
: FALSE;
// Just transferring the value for ease of veryfying Database support.
$status[] = $this->mAvailableDatabases[$which]['supported'];
// Generating the output to be displayed
$this->mAvailableDatabases[$which]['status_output'] =
$this->ReturnStatus($this->mAvailableDatabases[$which]['status'], $type = 'available');
}
//print_r($this->mAvailableDatabases);
// Check if any one database support exists.
// Update the status of database availability
$this->mDatabaseStatus = (in_array('1', $status)) ? TRUE : FALSE;
}
function CheckPreStatus()
{
$this->mProceed =
($this->mAdodbStatus && $this->mDatabaseStatus && $this->mPhpVersionStatus)
? TRUE
: FALSE;
return $this->mProceed;
}
/**
* Function to check the version of PHP available compared to the
* Applications requirements
* @param void
* @return string An html formatted boolean answer
*/
function CheckPhpCompatibility()
{
// Check the PHP version. Recommended version is 4.3 and above
$this->mPhpVersionStatus = (phpversion() >= $this->mPhpRequired) ? TRUE : FALSE;
// Return an html formated Yes/No string
return $this->ReturnStatus($this->mPhpVersionStatus, $type = 'yes');
}
function CheckPhpCli()
{
exec("php -v", $output, $php_cli);
if ($php_cli && $output)
{
$this->mPhpCliStatus = TRUE;
return $this->mPhpCliStatus;
}
else
{
return FALSE;
}
}
/**
* Function to check the posted data from forms.
* @param array $expectedFields Array of field names which needs processing
* If the array of filed names don't exist in the Posted data, then this function
* will accumulate error messages in the $_SESSION[PASS_PHRASE]['page_message'] array.
* return boolean/array $data will be returned if successful
*/
function CheckPostedData($expectedFields = array(), $pageHeading)
{
// Add slashes to the post array
$this->FilterGpc('add', 'post');
// Grab the posted data and trim it.
$data = array_filter($_POST, array($this, "TrimArgs"));
// Loop through the required values and check data
foreach($expectedFields as $key => $value)
{
// If the data is Required and is empty or not set
if (!isset($data[$key]) || empty($data[$key]))
{
if ($expectedFields[$key][2] == TRUE)
{
// Acumulate error messages
$_SESSION['page_message'][] = "<strong>{$expectedFields[$key][0]}</strong> is required";
}
}
// Check for variable types
elseif (!$this->VerifyVariableTypes($expectedFields[$key][1], $data[$key]))
{
$_SESSION['page_message'][] = "<strong>{$expectedFields[$key][0]}</strong> has to be a {$expectedFields[$key][1]}";
}
}
// If there were messages, return false
if (isset($_SESSION['page_message']))
{
$_SESSION['page_heading'] = $pageHeading;
return FALSE;
}
else
{
return $data;
}
}
function DisplayAdministration()
{
// Strip any slashes in GPC if magic_quotes is turned ON
$this->FilterGpc('strip', 'post');
// Trim the empty values in the $_POST array
$data = array_filter($_POST, array($this, "TrimArgs"));
$templates =
array(
'admin_body' => array(
'path' => TEMPLATE_FOLDER,
'template' => 'administration.tpl.php',
'vars' => array(
'product_name' => $this->mProductName,
'message' => $this->GetPageMessage(),
'site_url' => APPLICATION_WEB_ROOT,
'absolute_path' => realpath(APPLICATION_PATH),
'admin_email' => $this->GetAdminInput('admin_email', $this->GetParamValue($data, 'admin_email', ''), 'Admin Email'),
'pass_phrase' => $this->GetParamValue($data, 'pass_phrase', ''),
'admin_username' => $this->GetAdminInput('admin_username', $this->GetParamValue($data, 'admin_username', ''), 'Admin Username'),
'admin_password' => $this->GetAdminInput('admin_password', $this->GetParamValue($data, 'admin_password', $this->MakePassword($this->mMinPasswordLength)), 'Admin Password'),
'db_type' => $this->GetParamValue($data, 'db_type', ''),
'db_hostname' => $this->GetParamValue($data, 'db_hostname', ''),
'db_username' => $this->GetParamValue($data, 'db_username', ''),
'db_password' => $this->GetParamValue($data, 'db_password', ''),
'db_name' => $this->GetParamValue($data, 'db_name', ''),
'db_prefix' => $this->GetParamValue($data, 'db_prefix', ''),
'db_setup_options' => $this->GetParamValue($data, 'db_setup_options', ''),
'daemonise' => $this->GetReminderDaemonSelection($this->GetParamValue($data, 'reminder_daemon', '1')),
),
),
'structure' => array(
'path' => TEMPLATE_FOLDER,
'template' => 'structure.tpl.php',
'vars' => array(
'title' => 'Administration setup for',
'headers' => '',
'index' => APPLICATION_SETUP_INDEX,
'version' => $this->mVersion,
'copyright' => $this->mCopyright,
),
'block' => array('body' => 'admin_body')
)
);
// Output the final template.
$this->OutputPage($templates);
}
function DisplayCompletion()
{
// Strip any slashes in GPC if magic_quotes is turned ON
$this->FilterGpc('strip', 'post');
// Trim the empty values in the $_POST array
$data = array_filter($_POST, array($this, "TrimArgs"));
$templates =
array(
'complete_body' => array(
'path' => TEMPLATE_FOLDER,
'template' => 'complete_install.tpl.php',
'vars' => array(
'product_name' => $this->mProductName,
'message' => $this->GetPageMessage(),
'config_writeable' => $this->mConfigFileStatus,
'config_text' => $this->mConfigText,
'admin_username' => $this->mAdminUsername,
'admin_password' => $this->mAdminPassword,
'site_index' => $data['site_url'],
'complete_action' => $this->mCompleteAction,
'daemonise' => $this->CheckPhpCli(),
),
),
'structure' => array(
'path' => TEMPLATE_FOLDER,
'template' => 'structure.tpl.php',
'vars' => array(
'title' => 'Setup confirmation for',
'headers' => '',
'index' => APPLICATION_SETUP_INDEX,
'version' => $this->mVersion,
'copyright' => $this->mCopyright,
),
'block' => array('body' => 'complete_body')
)
);
// Output the final template.
$this->OutputPage($templates);
}
function DisplayDatabaseSetup()
{
// Strip any slashes in GPC if magic_quotes is turned ON
$this->FilterGpc('strip', 'post');
// Trim the empty values in the $_POST array
$data = array_filter($_POST, array($this, "TrimArgs"));
$templates =
array(
'database_body' => array(
'path' => TEMPLATE_FOLDER,
'template' => 'database.tpl.php',
'vars' => array(
'product_name' => $this->mProductName,
'message' => $this->GetPageMessage(),
'databases' => $this->mSupportedDatabases,
'db_type' => $this->GetParamValue($data, 'db_type', ''),
'db_hostname' => $this->GetParamValue($data, 'db_hostname', 'localhost'),
'db_username' => $this->GetParamValue($data, 'db_username', ''),
'db_password' => $this->GetParamValue($data, 'db_password', ''),
'db_name' => $this->GetParamValue($data, 'db_name', $this->mUnixName),
'db_prefix' => $this->GetParamValue($data, 'db_prefix', 'flyspray_'),
'db_delete' => (isset($data['db_delete'])) ? 1 : 0,
'db_backup' => (isset($data['db_backup'])) ? 1 : 0,
'db_setup_options' => $this->GetSetupOptions()
),
),
'structure' => array(
'path' => TEMPLATE_FOLDER,
'template' => 'structure.tpl.php',
'vars' => array(
'title' => 'Database setup for',
'headers' => '',
'index' => APPLICATION_SETUP_INDEX,
'version' => $this->mVersion,
'copyright' => $this->mCopyright,
),
'block' => array('body' => 'database_body')
)
);
// Output the final template.
$this->OutputPage($templates);
}
/**
* Function to prepare template output
*
*
*/
function DisplayPreInstall()
{
// Check the Database support on the server.
$this->CheckDatabaseSupport();
$templates =
array(
'index_body' => array(
'path' => TEMPLATE_FOLDER,
'template' => 'pre_install.tpl.php',
'vars' => array(
'product_name' => $this->mProductName,
'required_php' => $this->mPhpRequired,
'php_output' => $this->CheckPhpCompatibility(),
'database_output' => $this->GetDatabaseOutput(),
'adodb_output' => $this->CheckAdodbLibrary(),
'adodb_status' => $this->mAdodbStatus,
'config_output' => $this->CheckConfigFile(),
'config_status' => $this->mConfigFileStatus,
//'cache_output' => $this->CheckCacheFolder(),
//'cache_status' => $this->mCacheFolderStatus,
'php_settings' => $this->GetPhpSettings(),
'status' => $this->CheckPreStatus(),
'message' => $this->GetPageMessage(),
),
),
'structure' => array(
'path' => TEMPLATE_FOLDER,
'template' => 'structure.tpl.php',
'vars' => array(
'title' => 'Pre-Installation Check for',
'headers' => '',
'index' => APPLICATION_SETUP_INDEX,
'version' => $this->mVersion,
'copyright' => $this->mCopyright,
),
'block' => array('body' => 'index_body')
)
);
// Output the final template.
$this->OutputPage($templates);
}
function DisplayLicense()
{
$templates =
array(
'license_body' => array(
'path' => TEMPLATE_FOLDER,
'template' => 'license.tpl.php',
'vars' => array(
'product_name' => $this->mProductName,
'message' => $this->GetPageMessage(),
),
),
'structure' => array(
'path' => TEMPLATE_FOLDER,
'template' => 'structure.tpl.php',
'vars' => array(
'title' => 'Licence Agreement for',
'headers' => '',
'index' => APPLICATION_SETUP_INDEX,
'version' => $this->mVersion,
'copyright' => $this->mCopyright,
),
'block' => array('body' => 'license_body')
)
);
// Output the final template.
$this->OutputPage($templates);
}
function FetchThroughCurl($url, $downloadTo)
{
if (function_exists('curl_init'))
{
// Initialize a CURL session
$ch = curl_init($url);
// Get the file name of the download
$filename = basename($url);
// Open the file for writing
$fp = fopen("$downloadTo/$filename", 'w');
// Set an option for a CURL transfer
curl_setopt($ch, CURLOPT_FILE, $fp);
// Supress the cURL response headers
curl_setopt($ch, CURLOPT_HEADER, 0);
// Ge the status of the execution
$result = curl_exec($ch);
// close cURL resource and file handle
curl_close($ch);
fclose($fp);
return ($result) ? TRUE : FALSE;
}
else
{
return FALSE;
}
}
/**
* To add/strip slashes depending on the status of magic_quotes_gpc
* @param string $filter The type of filter to execute addslashes()
* or stripcslashes()
* @param string $what The Super global type to filter. It could be
* of type gpc, get, post or cookie
* @return void
*
* @todo Need to incorporate ordinary array filters
*/
function FilterGpc($filter = 'strip', $what = 'gpc')
{
// Setup the allowed filter types.
$filter_types = array('strip', 'add');
// Check for filter types.
if (!in_array($filter, $filter_types)) die("Filter '$filter' not allowed");
$this->mDataFilter = $filter;
// Check magic quotes status and filter
if ( ((!get_magic_quotes_gpc()) && ($this->mDataFilter == 'add')) ||
((get_magic_quotes_gpc()) && ($this->mDataFilter == 'strip'))
)
{
switch ($what)
{
case 'get':
// Process the $_GET super global
$_GET = array_map(array(& $this, 'DataSlasher'), $_GET);
break;
case 'post':
// Process the $_POST super global
$_POST = array_map(array(& $this, 'DataSlasher'), $_POST);
break;
case 'cookie':
// Process the $_COOKIE super global
$_COOKIE = array_map(array(& $this, 'DataSlasher'), $_COOKIE);
break;
default:
// Process the GPC super globals with the call-back function
$_GET = array_map(array(& $this, 'DataSlasher'), $_GET);
$_POST = array_map(array(& $this, 'DataSlasher'), $_POST);
$_COOKIE = array_map(array(& $this, 'DataSlasher'), $_COOKIE);
break;
}
}
}
/**
* To filter the data ie. to slash/unslash
*
* This is a function which may be called recursively depending on the
* variable type. If it is an array it recurses back to this same function.
*
* @param string $gpcData the string which needs to be filtered
* @return string $data the string after being filtered
*/
function DataSlasher($rawData)
{
// If it is an array, map it back to this same function using array_map
if (is_array($rawData))
{
array_map(array($this,'DataSlasher'), $rawData);
}
else
{
// Filter the data depending on the filter criteria.
$data = ($this->mDataFilter == 'add')
? addslashes($rawData)
: stripslashes($rawData);
// Convert to html entities ... Do we need to ???
//$data = htmlentities($data, ENT_QUOTES);
}
return $data;
}
/**
* Function to download a file from a remote server and store it to flyspray server
* @param string $url The URL of the file to download
* @param string $downloadTo The destination folder to where the file will be saved on the server.
* The destination folder needs to be world writeable.
* @return boolean TRUE if success else error message
*/
function DownloadFileToServer($url, $downloadTo, $alternate_url = '')
{
// If the download to folder is writeable
if ($this->IsWriteable($downloadTo))
{
// Get the file name of the download
$filename = basename($url);
// Set time-out for 15 minutes
set_time_limit(900);
// Grab the file contents
$contents = file_get_contents($url);
// If successful in getting file contents
if ($contents)
{
// If was able to open a handle to write to the file stream
if ($handle = fopen("$downloadTo/$filename", 'w'))
{
// If the contents was not written to file
if (fwrite($handle, $contents) === FALSE)
{
$_SESSION['page_message'][] = 'Could not write data to file';
return FALSE;
}
else
{
// Closes the open file pointer and return success
fclose($handle);
return TRUE;
}
}
else
{
$_SESSION['page_message'][] = "Cannot open file ($filename) for writing. Please make $filename writeable before continuing.";
return FALSE;
}
}
elseif ($this->FetchThroughCurl($url, $downloadTo))
{
return TRUE;
}
else
{
// Taking care of broken links or PHP URL restrictions
$_SESSION['page_message'][] = "The file <strong>$url</strong> could not be downloaded for installation. " .
(
$alternate = (!empty($alternate_url))
? "Please download the libraries from <a href=\"$alternate_url\" title=\"$alternate_url\">$alternate_url</a> and extract to <strong>$downloadTo</strong>"
: ''
);
return FALSE;
}
}
else
{
$_SESSION['page_message'][] = "Please make folder <strong>$downloadTo</strong> writeable by the web-server user or world writeable.";
$_SESSION['page_message'][] = "On a Unix/Linux platform, its as easy as executing <strong><i>chmod 777 $downloadTo</i></strong> to make it world writeable.";
$_SESSION['page_message'][] = 'It is advised to revert these permissions once you have finished the application setup.';
return FALSE;
}
}
function GetAdminInput($field, $value, $label)
{
$input_field = '';
// If its a fresh install show the admin input fields
if ($this->mDatabaseSetup[$_POST['db_setup_options']]['dependency'] == '')
{
$input_field = "
<tr>
<td align=\"right\">$label</td>
<td align=\"center\"><input class=\"inputbox\" type=\"text\" name=\"$field\" value=\"$value\" size=\"30\" /></td>
</tr>";
}
return $input_field;
}
function GetDatabaseOutput()
{
//print_r($this->mAvailableDatabases);
$output = '';
// Loop through the supported databases array
foreach ($this->mSupportedDatabases as $which => $database)
{
$output .= "
<tr>
<td> - $which support</td>
<td align=\"left\"><strong>{$this->mAvailableDatabases[$which]['status_output']}</strong></td>
<td align=\"center\"><strong>". $this->ReturnStatus($this->mAvailableDatabases[$which]['supported'], $type = 'support') . "</strong></td>
</tr>";
}
// Return the html formatted results
return $output;
}
/**
* Function to get the php ini config values
* @param string $option The ini setting name to check the status for
* @return string The status of the setting either "On" or "OFF"
*/
function GetIniSetting($option)
{
return (ini_get($option) == '1' ? 'ON' : 'OFF');
}
/**
* Function to get the error messages and generate an error output for the template
* @string $heading The value for the Error message heading
* The error message is stored in the $_SESSION Global array
* $_SESSION[PASS_PHRASE]['page_message']. If there is no value in
* this array, then there will be no error message outputed.
* @return string $message The message which needs outputting
*/
function GetPageMessage()
{
// If there is an error
if (isset($_SESSION['page_message']) && isset($_SESSION['page_heading']))
{
// Get an html formated list
$page_message = $this->OutputHtmlList($_SESSION['page_message'],'ul');
$message =
'<h1 class="error">' . $_SESSION['page_heading'] . '</h1>
<div class="box">
<div class="shade">'.
$page_message . '
</div>
</div>';
// Destroy the session value
unset($_SESSION['page_heading']);
unset($_SESSION['page_message']);
return $message;
}
else
{
return '';
}
}
/**
* Utility function to return a value from a named array or a specified default
* @param array &$arr The array to get the values from
* @param string $name The name of the key to check the value for
* @param string $default The default value if the value is not set with the array
* @return string $value The value to be returned
*/
function GetParamValue(&$arr, $name, $default=null )
{
$value = isset($arr[$name]) ? $arr[$name] : $default;
return $value;
}
/**
* Function to get a listing of recommended and actual settings
* for php.
* @param void
* @return string $output HTML formatted string.
*/
function GetPhpSettings()
{
// Array of the setting name, php ini name and the recommended value
$test_settings =
array(
array ('Safe Mode','safe_mode','OFF'),
array ('Display Errors','display_errors','ON'),
array ('File Uploads','file_uploads','ON'),
array ('Magic Quotes GPC','magic_quotes_gpc','ON'),
array ('Magic Quotes Runtime','magic_quotes_runtime','OFF'),
array ('Register Globals','register_globals','OFF'),
array ('Output Buffering','output_buffering','OFF'),
array ('Session auto start','session.auto_start','OFF'),
);
$output = '';
foreach ($test_settings as $recommended)
{
$actual_setting = $this->GetIniSetting($recommended[1]);
$result = ($actual_setting == $recommended[2] )
? '<span class="green"><strong>' . $recommended[2] . '</strong></span>'
: '<span class="red"><strong>' . $actual_setting . '</strong></span>';
$output .=
"
<tr>
<td>{$recommended[0]}</td><td align=\"center\"><strong>{$recommended[2]}</strong></td><td align=\"center\">{$result}</td>
</tr>
";
}
return $output;
}
function GetReminderDaemonSelection($value)
{
$selection = '';
if ($this->CheckPhpCli())
{
if ($value == 1)
{
$selection .= '<input type="radio" name="reminder_daemon" value="1" checked="checked" /> Enable';
$selection .= '<input type="radio" name="reminder_daemon" value="0" /> Disable';
}
else
{
$selection .= '<input type="radio" name="reminder_daemon" value="1" /> Enable';
$selection .= '<input type="radio" name="reminder_daemon" value="0" checked="checked" /> Disable';
}
return $selection;
}
else
{
return FALSE;
}
}
function GetSetupOptions()
{
//print_r($this->mDatabaseSetup);
$setup_array = array();
$setup_procedure = '<select name="db_setup_options">';
foreach ($this->mDatabaseSetup as $key_array => $key_data)
{
foreach ($key_data as $install_type => $details)
{
//echo $key_array."<br />";
//$setup_array[] = $install_type;
$selected = ( (isset($_POST['db_setup_options'])) && ($_POST['db_setup_options'] == $key_array) )
? 'selected="selected"'
: '';
$setup_procedure .= "<option value=\"$key_array\" $selected>$install_type</option>";
break;
}
}
$setup_procedure .= '</select>';
return $setup_procedure;
}
/**
* Function to install ADOdb library
*
*
*/
function InstallAdodb()
{
$_SESSION['page_heading'] = 'ADOdb Installation';
// where to download the libraries
$download_to = realpath('../adodb');
if (file_exists($download_to) && is_dir($download_to))
{
// Setup the Download URL's
$url ='http://dl.sourceforge.net/sourceforge/adodb/adodb465.tgz';
$alternate_url = 'http://sourceforge.net/project/showfiles.php?group_id=42718';
// If the libraries were downloaded successfully
if ( ($adodb_message = $this->DownloadFileToServer($url, $download_to, $alternate_url)) === TRUE)
{
// Specify locations to fetch file and un-compress archive to
$from_location = $download_to;
$uncompress_to = "$download_to/../";
// If able to uncompress the archive. It will un-compress to the download location
if ( ($adodb_message = $this->UncompressFile($from_location, basename($url), $uncompress_to)) === TRUE )
{
$_SESSION['page_message'][] = "Successfully installed ADOdb library into <strong>$download_to</strong>";
return TRUE;
}
}
}
else
{
$_SESSION['page_message'][] = "Please create the adodb folder in the root of your $this->mProductName installation.";
$_SESSION['page_message'][] = "After creating the folder, make it writeable by the webserver user or world writeable.";
$_SESSION['page_message'][] = "On a Unix/Linux platform, its as easy as executing <strong><i>chmod 777 adodb</i></strong> to make it world writeable.";
$_SESSION['page_message'][] = 'It is advised to revert these permissions once you have finished the application setup.';
return FALSE;
}
}
function InstallPointNineEight($data)
{
return TRUE;
}
function InstallPointNineSeven($data)
{
return TRUE;
}
/**
* Function to check if a particular folder/file is writeable.
* @param string $fileSystem Path to check
* $return boolean TRUE/FALSE
*/
function IsWriteable($fileSystem)
{
// Clear the cache
clearstatcache();
// Return the status of the permission
return (file_exists($fileSystem) && is_writable($fileSystem))
? TRUE
: FALSE;
}
function MakePassword($passwordLength)
{
$salt = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
$length = strlen($salt);
$password = '';
mt_srand(10000000*(double)microtime());
for ($i = 0; $i < $passwordLength; $i++)
{
$password .= $salt[mt_rand(0, $length - 1)];
}
return $password;
}
/**
* Function to Output an Ordered/Un-ordered list from an array. Default list type is un-ordered.
* @param array() $list_array An array list of data to be made into a list.
* @return string $list An HTML list
*/
function OutputHtmlList($list_array = array(), $list_type = 'ul')
{
$list = "<$list_type>";
foreach ($list_array as $list_item)
{
$list .= "<li>$list_item</li>";
}
$list .= "</$list_type>";
return $list;
}
/**
* Function to act on all the actions during Flyspray Setup
* The Post variables are extracted for deciding which function to call.
*/
function ProcessActions()
{
$action = 'index';
$what = '';
extract($_POST);
switch($action)
{
case 'index':
if ($what == 'adodb')
{
// Install the ADOdb library
$this->InstallAdodb();
// To prevent the user from getting a "Resend post request" warning if they refresh the page
header('Location: ' . APPLICATION_SETUP_INDEX);
exit;
}
$this->DisplayPreInstall();
break;
case 'licence':
$this->DisplayLicense();
break;
case 'database':
// Prepare the required data
$required_data =
array(
'agreecheck' => array(
'Licence Agreement', 'string', TRUE
)
);
if ($this->CheckPostedData($required_data, $message = 'Accept Licence'))
{
$this->DisplayDatabaseSetup();
}
else
{
$_POST['action'] = 'licence';
$this->DisplayLicense();
}
break;
case 'administration':
// Prepare the required data
$required_data =
array(
'db_hostname' => array('Database hostname', 'string', TRUE),
'db_type' => array('Database type', 'string', TRUE),
'db_username' => array('Database username', 'string', TRUE),
'db_password' => array('Database password', 'string', TRUE),
'db_name' => array('Database name', 'string', TRUE),
'db_prefix' => array('Table prefix', 'string', TRUE),
'db_delete' => array('Delete tables checkbox', 'string', FALSE),
'db_backup' => array('Database backup checkbox', 'string', FALSE),
'db_setup_options' => array('Database Setup Options', 'number', TRUE)
);
if ($data = $this->CheckPostedData($required_data, $message = 'Configuration Error'))
{
// Set a page heading in case of errors.
$_SESSION['page_heading'] = 'Database Processing';
// Process the database checks and install tables
if ($this->ProcessDatabaseSetup($data))
{
// Proceed to Administration part
$this->DisplayAdministration();
}
else
{
$_POST['action'] = 'database';
$this->DisplayDatabaseSetup();
}
}
else
{
$_POST['action'] = 'database';
$this->DisplayDatabaseSetup();
}
break;
case 'complete':
// Prepare the required data
$required_data =
array(
'db_hostname' => array('Database hostname', 'string', TRUE),
'db_type' => array('Database type', 'string', TRUE),
'db_username' => array('Database username', 'string', TRUE),
'db_password' => array('Database password', 'string', TRUE),
'db_name' => array('Database name', 'string', TRUE),
'db_prefix' => array('Table prefix', 'string', TRUE),
'db_setup_options' => array('Database type', 'number', TRUE),
'site_url' => array($this->mProductName . ' URL location', 'string', TRUE),
'absolute_path' => array($this->mProductName . ' Absolute path must exist and', 'folder', TRUE),
'admin_username' => array('Administrator\'s username', 'string', ($this->mDatabaseSetup[$_POST['db_setup_options']]['dependency'] == '')),
'admin_password' => array("Administrator's Password must be minimum {$this->mMinPasswordLength} characters long and", 'password', ($this->mDatabaseSetup[$_POST['db_setup_options']]['dependency'] == '')),
'admin_email' => array('Administrator\'s email address', 'email address', ($this->mDatabaseSetup[$_POST['db_setup_options']]['dependency'] == '')),
'reminder_daemon' => array('Reminder Daemon', 'option', FALSE),
);
if ($data = $this->CheckPostedData($required_data, $message = 'Missing config values'))
{
// Set a page heading in case of errors.
$_SESSION['page_heading'] = 'Administration Processing';
if ($this->ProcessAdminConfig($data))
{
$this->DisplayCompletion($data);
}
else
{
$_POST['action'] = 'administration';
$this->DisplayAdministration();
}
}
else
{
$_POST['action'] = 'administration';
$this->DisplayAdministration();
}
break;
default:
$this->DisplayPreInstall();
break;
}
}
function ProcessAdminConfig($data)
{
// Extract the varibales to local namespace
extract($data);
$this->CheckAdodbLibrary();
if (!$this->mAdodbPath)
{
$_SESSION['page_heading'][] = 'ADOdb Libraries not found';
return FALSE;
}
$config_intro =
"; <?php die( 'Do not access this page directly.' ); ?>
; This is the Flysplay configuration file. It contains the basic settings
; needed for Flyspray to operate. All other preferences are stored in the
; database itself and are managed directly within the Flyspray admin interface.
; You should consider putting this file somewhere that isn't accessible using
; a web browser, and editing header.php to point to wherever you put this file.\n";
$config_intro = str_replace("\t", "", $config_intro);
// Create a random cookie salt
$cookiesalt = substr(md5(microtime()), 0, 2);
// Check to see if running apache software and mod_rewrite is enabled (Can only check in PHP 4.3.2 and above)
$re_writing = 0;
if ($this->mServerSoftware == 'apache' && function_exists('apache_get_modules'))
{
$apache_modules = apache_get_modules();
if ( ($apache_modules) && (in_array('mod_rewrite', $apache_modules)) )
{
$re_writing = 1;
}
}
// check to see if to enable the Reminder Daemon.
$daemonise = ( (isset($data['reminder_daemon'])) && ($data['reminder_daemon'] == 1) )
? 1
: 0;
// Double check the urls and paths slashes.
$site_url .= (substr($site_url, -1, 1) != '/') ? '/' : '';
$absolute_path = (substr($absolute_path, -1, 1) == DIRECTORY_SEPARATOR)
? substr($absolute_path, 0, (strlen($absolute_path)-1) ) : $absolute_path;
$config = array();
$config[] = "[database]";
$config[] = "dbtype = \"$db_type\" ; Type of database (\"mysql\" or \"pgsql\" are currently supported)";
$config[] = "dbhost = \"$db_hostname\" ; Name or IP of your database server";
$config[] = "dbname = \"$db_name\" ; The name of the database";
$config[] = "dbuser = \"$db_username\" ; The user to access the database";
$config[] = "dbpass = \"$db_password\" ; The password to go with that username above";
$config[] = "dbprefix = \"$db_prefix\" ; The prefix to the {$this->mProductName} tables";
$config[] = "\n";
$config[] = '[general]';
$config[] = "basedir = \"$absolute_path\" ; Location of your {$this->mProductName} installation";
$config[] = "cookiesalt = \"$cookiesalt\" ; Randomisation value for cookie encoding";
$config[] = "adodbpath = \"{$this->mAdodbPath}\" ; Path to the main ADODB include file";
$config[] = 'output_buffering = "on" ; Available options: "on" or "gzip"';
$config[] = "passwdcrypt = \"md5\" ; Available options: \"crypt\", \"md5\", \"sha1\"";
$config[] = "baseurl = \"{$site_url}\" ; URL that points to {$this->mProductName}'s root";
$config[] = "address_rewriting = \"$re_writing\" ; Boolean. 0 = off, 1 = on.";
$config[] = "reminder_daemon = \"$daemonise\" ; Boolean. 0 = off, 1 = on.";
$config[] = "\n";
$config_text = $config_intro . implode( "\n", $config );
if (is_writable('../flyspray.conf.php') && ($fp = fopen('../flyspray.conf.php', "w")))
{
fputs($fp, $config_text, strlen($config_text));
fclose($fp);
$this->mConfigFileStatus = TRUE;
}
else
{
$this->mConfigText = $config_text;
$this->mConfigFileStatus = FALSE;
}
// Setting the database for the ADODB connection
require_once($this->mAdodbPath);
$this->mDbConnection =& NewADOConnection(strtolower($db_type));
$this->mDbConnection->Connect($db_hostname, $db_username, $db_password, $db_name);
// Get the users table name.
$users_table = ($db_prefix != '')
? str_replace("{$this->mUnixName}_", $db_prefix, $this->mUsersTable )
: $this->mUsersTable;
$sql = "SELECT * FROM $users_table WHERE user_id = '1'";
// Check if we already have an Admin user.
$result = $this->mDbConnection->Execute($sql);
if ($result)
{
// If the record exists, we update it.
$row = $result->FetchRow();
$this->mAdminUsername = $row['user_name'];
$this->mAdminPassword = $row['user_pass'];
}
// If the admin inputs have been posted.. Only for fresh install
if (isset($admin_username) && isset($admin_password) && isset($admin_email))
{
$md5_password = md5($admin_password);
$update_user = "
UPDATE
$users_table
SET
user_name = '$admin_username',
user_pass = '$md5_password',
email_address = '$admin_email'
WHERE
user_id = '1'";
$result = $this->mDbConnection->Execute($update_user);
if (!$result)
{
$_SESSION['page_heading'][] = 'Failed to update Admin users details.';
return FALSE;
}
else
{
$this->mAdminUsername = $admin_username;
$this->mAdminPassword = $admin_password;
}
$this->mCompleteAction = 'do=authenticate';
}
else
{
$this->mAdminUsername = '';
$this->mAdminPassword = '';
$this->mCompleteAction = 'do=myprofile';
$this->SetUpgradeLogin($data, $cookiesalt);
}
return TRUE;
}
function ProcessDatabaseSetup($data)
{
// Look for ADOdb
$this->mAdodbPath = $this->ScanIncludePath('adodb.inc.php', realpath('../adodb'));
require_once($this->mAdodbPath);
// Perform a number of fatality checks, then die gracefully
if (!defined('_ADODB_LAYER'))
{
trigger_error('ADODB Libraries missing or not correct version');
}
// Setting the database type for the ADODB connection
$this->mDbConnection =& NewADOConnection(strtolower($data['db_type']));
// Setting debugging for ADODB
$this->mDbConnection->debug = FALSE;
/* check hostname/username/password */
if (!$this->mDbConnection->Connect($data['db_hostname'], $data['db_username'], $data['db_password'], $data['db_name']))
{
switch($error_number = $this->mDbConnection->MetaError())
{
case '-1':
// We are using the unknown error code(-1) because ADOdb library may not have the error defined.
// It could be totally some weird error.
$_SESSION['page_message'][] = $this->mDbConnection->ErrorMsg();
return FALSE;
break;
case '-24':
// Could not connect to database with the hostname provided
$_SESSION['page_message'][] = 'Database ' . ucfirst($this->mDbConnection->MetaErrorMsg($error_number));
$_SESSION['page_message'][] = 'Usually the database host name is "localhost". In some occassions, it maybe an internal ip-address or another host name to your webserver.';
$_SESSION['page_message'][] = 'Double check with your hosting provider or System Administrator.';
return FALSE;
break;
case '-26':
// Username passwords don't match for the hostname provided
$_SESSION['page_message'][] = ucfirst($this->mDbConnection->MetaErrorMsg($error_number));
$_SESSION['page_message'][] = "Obviously you haven't set up the right permissions for the database hostname provided.";
$_SESSION['page_message'][] = 'Double check the provided credentials or contact your System Administrator for further assistance.';
return FALSE;
break;
default:
$_SESSION['page_message'][] = 'Please verify your username/password/database details.';
return FALSE;
break;
}
}
else
{
// Test to see if the database exists
//$this->mDbConnection->Execute("SHOW TABLES FROM DATABASE {$data['db_name']}");
//select * from pg_database where datname = 'jeffery_flyspray'
//switch ($error_number = $this->mDbConnection->MetaError())
//{
//case '-5':
// Can't create database. It already exists. Means now we have to do a check if we want to backup/drop database
// Now we connect to the database and do the processing since we know it exists.
//if ($this->mDbConnection->PConnect($data['db_hostname'], $data['db_username'], $data['db_password'], $data['db_name']))
//{
// Setting the Fetch mode of the database connection.
$this->mDbConnection->SetFetchMode(ADODB_FETCH_BOTH);
// Backup and delete tables if requested
if ($this->BackupDeleteTables($data))
{
if ($this->mDatabaseSetup[$_POST['db_setup_options']]['dependency'] == '')
{
// Populate the database with the new tables and return the result (boolean)
if (!$this->PopulateDb($data))
{
return FALSE;
}
}
else
{
// Call the dependency function
if (method_exists($this, $this->mDatabaseSetup[$_POST['db_setup_options']]['function']))
{
// Call the Upgrade function.
if (!$this->{$this->mDatabaseSetup[$_POST['db_setup_options']]['function']}($data))
{
return FALSE;
}
}
else
{
$_SESSION['page_message'][] = "Function {$this->mDatabaseSetup[$_POST['db_setup_options']]['function']}() not defined!";
return FALSE;
}
}
}
else
{
return FALSE;
}
//}
//else
//{
// Don't know why it woudn't work... just in case
// $_SESSION['page_message'][] = $this->mDbConnection->ErrorMsg();
// return FALSE;
//}
//break;
/*
case '-1':
// We are using the unknown error code(-1) because ADOdb library may not have the error defined.
$_SESSION['page_message'][] = $this->mDbConnection->ErrorMsg();
return FALSE;
break;
default:
$_SESSION['page_message'][] = $this->mDbConnection->ErrorMsg() . ': ' . $this->mDbConnection->ErrorNo();
$_SESSION['page_message'][] = 'Unknown error, please notify Developer quoting the error number';
return FALSE;
break;*/
//}
}
return TRUE;
}
function BackupTables($data, $table_list)
{
// Extract the data to local namespace
extract($data);
//Get the date value to rename tables with the date+time prefix if the backup option was ticked
$date_time = date("YmdHis");
$db_bu_prefix = $date_time . '_' . $db_prefix;
// Loop through the tables array
foreach ($table_list as $table)
{
// Giving the backup table a new prefix based on the date & time of action
$bu_table = str_replace($db_prefix, $db_bu_prefix, $table);
// Query to copy the existing table into a table with the new prefix
switch (strtolower($db_type))
{
case 'mysql':
$sql = "CREATE TABLE $bu_table AS SELECT * FROM $table";
break;
case 'postgres':
$sql = "CREATE TABLE \"$bu_table\" AS SELECT * FROM $table";
break;
}
$this->mDbConnection->Execute($sql);
// If any errors, record the error message in the array
if ($error_number = $this->mDbConnection->MetaError())
{
$_SESSION['page_message'][] = ucfirst($this->mDbConnection->MetaErrorMsg($error_number)) . ' Table backup error: ' . $sql;
}
}
// Check for any error messages.
if (isset($_SESSION['page_message']) && count($_SESSION['page_message']) > 0)
{
return FALSE;
}
else
{
return TRUE;
}
}
function DeleteTables($data, $table_list)
{
extract($data);
// Loop through the tables array
foreach ($table_list as $table)
{
$db_type = strtolower($db_type);
// Prepare the query to drop the existing tables
switch ($db_type)
{
case 'mysql':
$sql = "DROP TABLE $table";
break;
case 'postgres':
$sql = "DROP TABLE $table cascade";
break;
}
$this->mDbConnection->Execute($sql);
// If any errors, record the error message in the array
if ($error_number = $this->mDbConnection->MetaError())
{
$_SESSION['page_message'][] = ucfirst($this->mDbConnection->MetaErrorMsg($error_number)) . " Error deleting: $sql";
return FALSE;
}
}
return TRUE;
}
function DeleteSequences($data)
{
extract($data);
$db_type = strtolower($db_type);
if ($db_type != 'postgres') {
return TRUE;
}
$sql = "SELECT c.relname
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_user u ON u.usesysid = c.relowner
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind = 'S'
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid)";
$result = $this->mDbConnection->Execute($sql);
$sequence_list = array();
if ($result)
{
while ($row = $result->FetchRow())
{
$sequence_list[] = $row[0];
}
}
foreach ($sequence_list as $sequence) {
$sql = "DROP SEQUENCE $sequence";
$this->mDbConnection->Execute($sql);
// If any errors, record the error message in the array
if ($error_number = $this->mDbConnection->MetaError())
{
$_SESSION['page_message'][] = ucfirst($this->mDbConnection->MetaErrorMsg($error_number));
return FALSE;
}
}
return TRUE;
}
function BackupDeleteTables($data)
{
// Extract the data to local namespace
extract($data);
if ((isset($db_delete)) || (isset($db_backup)))
{
$db_type = strtolower($db_type);
// Query to get a list of tables in the database
switch ($db_type)
{
case 'mysql':
$sql = "SHOW TABLES FROM $db_name";
break;
case 'postgres':
$sql = "SELECT tablename from pg_tables where tableowner = '$db_username'";
break;
}
$result = $this->mDbConnection->Execute($sql);
$table_list = array();
if ($result)
{
while ($row = $result->FetchRow())
{
$table_list[] = $row[0];
}
}
// Filter the tables we want to work with ..... relating it to the table prefix.
// If the prefix given is the same as the prefix we have in the database
// If the prefix does not match.. we can't delete or backup the intended tables
$filtered_tables = array();
foreach ($table_list as $table)
{
if (strpos($table, $db_prefix) == 0)
{
$filtered_tables[] = $table;
}
}
// If it was requested to delete existing tables.
if (isset($db_delete))
{
// If we are deleting, backup NEEDS to be done.
if ((isset($db_delete)) && (isset($db_backup)))
{
if (!count($filtered_tables) > 0)
{
// If there were no tables at all in the database.
$_SESSION['page_message'][] = 'Tables with provided prefix not found in database.';
$_SESSION['page_message'][] = 'Make sure you have the right table prefix for the database tables you intend to backup/delete';
$_SESSION['page_message'][] = 'You are safe to proceed into the setup without dropping tables as tables with the provided prefix don\'t exist!';
return FALSE;
}
// Drop/backup tables only if there are no dependancies. eg. Fresh Install
if ( ($this->mDatabaseSetup[$_POST['db_setup_options']]['dependency'] == ''))
{
// Return error if Backup was not successful.
if (!$this->BackupTables($data, $filtered_tables))
{
return FALSE;
}
}
else
{
$_SESSION['page_message'][] = 'Tables where not dropped because you are performing an UPGRADE.';
$_SESSION['page_message'][] = 'Unckeck the "delete" checkbox to proceed into the setup.';
return FALSE;
}
// Drop tables only if there are no dependancies. eg. Fresh Install
if ( ($this->mDatabaseSetup[$_POST['db_setup_options']]['dependency'] == ''))
{
// Return the status of deleting the tables if it was not successful.
if (!$this->DeleteTables($data, $filtered_tables))
{
return FALSE;
}
if (!$this->DeleteSequences($data)) {
return FALSE;
}
}
else
{
$_SESSION['page_message'][] = 'Tables where not dropped because you are performing an UPGRADE.';
$_SESSION['page_message'][] = 'Unckeck the "delete backup" checkbox to proceed into the setup.';
return FALSE;
}
}
else
{
// Not dropping the tables unless the backup option is checked.
$_SESSION['page_message'][] = 'Please select the "backup tables" checkbox in order to drop existing tables.';
return FALSE;
}
return TRUE;
}
// Perform actions if only the backup was selected.
if (isset($db_backup))
{
if (!count($filtered_tables) > 0)
{
// If there were no tables at all in the database.
$_SESSION['page_message'][] = 'Tables with provided prefix not found in database.';
$_SESSION['page_message'][] = 'Make sure you have the right table prefix for the database tables you intend to backup';
$_SESSION['page_message'][] = 'It is safe to uncheck the "backup tables"';
return FALSE;
}
// Return error if Backup was not successful.
if (!$this->BackupTables($data, $filtered_tables))
{
return FALSE;
}
}
}
return TRUE;
}
/**
* Function to populate the database with the sql constructs which is in an sql file
* @param array $data The actual database configuration values
* @return boolean
*/
function PopulateDb($data)
{
// Get the sql file name and set the path
list($file) = array_values($this->mDatabaseSetup[$_POST['db_setup_options']]);
$sql_file = APPLICATION_PATH . "$file." . $this->mSupportedDatabases[$_POST['db_type']][2];
// Check if the install/upgrade file exists
if (file_exists($sql_file) && is_file($sql_file))
{
// Extract the variables to local namespace
extract($data);
// Get the current magic quotes runtime settings
$mqr = @get_magic_quotes_runtime();
// Disable magic quotes runtime. Some bytes in binary files may be interpreted as
// \ (backslash), " (double quotes), ' (simple quote) or any "special" character
// that has a meaning for string processing.
@set_magic_quotes_runtime(0);
$query = fread(fopen($sql_file, "r"), filesize($sql_file));
// Re-set the magic quotes runtime settings
@set_magic_quotes_runtime($mqr);
// Get the sql queries
$sql_blocks = $this->SplitSql($query, $db_type);
$sql_count = count($sql_blocks);
for ($i=0; $i < $sql_count; $i++)
{
$sql_blocks[$i] = trim($sql_blocks[$i]);
if(!empty($sql_blocks[$i]) && $sql_blocks[$i] != "#")
{
$sql_blocks[$i] = str_replace($this->mUnixName . "_", $db_prefix, $sql_blocks[$i]);
$this->mDbConnection->Execute($sql_blocks[$i]);
if (($error_no = $this->mDbConnection->MetaError()))
{
switch ($error_no)
{
case '-5':
// If there are tables with the same name
$_SESSION['page_message'][] = 'Table ' .$this->mDbConnection->MetaErrorMsg($this->mDbConnection->MetaError());
$_SESSION['page_message'][] = 'There probably are tables in the database which have the same prefix you provided.';
$_SESSION['page_message'][] = 'It is advised to change the prefix provided or you can drop the existing tables if you don\'t need them. Make a backup if you are not certain.';
return FALSE;
break;
case '-1':
// We are using the unknown error code(-1) because ADOdb library may not have the error defined.
$_SESSION['page_message'][] = $this->mDbConnection->ErrorMsg();
return FALSE;
break;
default:
$_SESSION['page_message'][] = $this->mDbConnection->ErrorMsg() . ': ' . $this->mDbConnection->ErrorNo();
$_SESSION['page_message'][] = 'Unknown error, please notify Developer quoting the error number';
return FALSE;
break;
}
}
}
}
//$_SESSION['page_message'][] = 'Successfully populated database with structure and data.';
return TRUE;
}
else
{
$_SESSION['page_message'][] = 'SQL file required for importing structure and data is missing.';
return FALSE;
}
}
/**
* Function to return status of boolean results in html format
* @param boolean $boolean The status of the result in True/False form
* @param string $type The type of html format to return
* @return string Depending on the type of format to return
*/
function ReturnStatus($boolean, $type = 'yes')
{
// Do a switch on the type of status
switch($type)
{
case 'yes':
return ($boolean)
? '<span class="green">Yes</span>'
: '<span class="red">No</span>';
break;
case 'available':
return ($boolean)
? '<span class="green">Available</span>'
: '<span class="red">Missing</span>';
break;
case 'writeable':
return ($boolean)
? '<span class="green">Writeable</span>'
: '<span class="red">Un-writeable</span>';
break;
case 'on':
return ($boolean)
? '<span class="green">ON</span>'
: '<span class="red">OFF</span>';
break;
case 'support':
return ($boolean)
? '<span class="green">Supported</span>'
: '<span class="red">X</span>';
break;
default:
return ($boolean)
? '<span class="green">True</span>'
: '<span class="red">False</span>';
break;
}
}
function SetUpgradeLogin($data, $cookiesalt)
{
// Extract the varibales to local namespace
extract($data);
// The user should be remembered on this machine
$cookie_time = time() + (60 * 60 * 24 * 30); // Set cookies for 30 days
// Get current user details. Assuming its always user_id 1
$result = $this->mDbConnection->Query("SELECT * FROM {$db_prefix}users WHERE user_id = ?", array(1));
$user = $this->mDbConnection->Execute($result);
// Get current user details. We need this to see if their account is enabled or disabled
$result = $this->mDbConnection->Execute("SELECT * FROM {$db_prefix}users WHERE user_id = ?", array(1));
$user = $result->FetchRow();
// Set a couple of cookies
setcookie('flyspray_userid', $user['user_id'], $cookie_time, "/");
setcookie('flyspray_passhash', crypt($user['user_pass'], $cookiesalt), $cookie_time, "/");
// If the user had previously requested a password change, remove the magic url
$remove_magic = $this->mDbConnection->Query("UPDATE {$db_prefix}users SET
magic_url = ''
WHERE user_id = ?",
array($user['user_id'])
);
$_SESSION['SUCCESS'] = 'Login successful.';
}
/**
* Function to split the SQL queries from a SQL file into individual queries
* Thanks to Ben Balbo http://www.benbalbo.com for the code comments
* @param string $sql The sql queries which was grabbed from a SQL file
*/
function SplitSql($sql, $db_type)
{
// Trim the SQL
$sql = trim($sql);
switch (strtolower($db_type))
{
// Removes any lines that start with a # and --
//$sql = ereg_replace("\n#[^\n]*\n", "\n", $sql); // Doesn't work as expected
case 'mysql':
$sql = ereg_replace("#[^\n]*\n", "\n", $sql);
break;
case 'postgres':
$sql = ereg_replace("--[^\n]*\n", "\n", $sql);
break;
}
// This array only ever has 2 items [0] is previous character seen - [1] is current character
$buffer = array();
// Array for returning the SQL arrays
$sql_lists = array();
// Flag for defining whether we're parsing the innards of a string (i.e. we passed a " or ' recently
$in_string = FALSE;
// Loop through each character in the sql string
for($i = 0; $i < strlen($sql)-1; $i++)
{
// If the character is equal to a semi colon and the flag is false
// this is tru if the current char is a semicolon and it's not the first char in the string (i.e. $in_string contains something)
if($sql[$i] == ";" && !$in_string)
{
// Get the characters from the beginning of the sql string up until the semi-colon
$sql_lists[] = substr($sql, 0, $i);
// Re-set the sql string to start from the current character and the rest of the string
$sql = substr($sql, $i + 1);
// Re-set the counter
$i = 0;
}
// If we're flagged as being in a string (between '' or "") and we've just found what looks like a string terminator
// check to see if previous char was not a backslash, and if so, we're not in a string anymore.
// In other words, if we recently found a " and we've just found another ", we can consider ourselves not
// in the string anymore, unless the previous char was a backslash which would escape the " we just found.
if($in_string && ($sql[$i] == $in_string) && $buffer[1] != "\\")
{
$in_string = false;
}
elseif(!$in_string && ($sql[$i] == '"' || $sql[$i] == "'") && (!isset($buffer[0]) || $buffer[0] != "\\"))
// Catches the start of the string - if we've found a ' or " and the previous char
// wasn't a \ and we're not in a string, then we are now!
{
$in_string = $sql[$i];
}
// Scroll buffer. [0] is now equal to [1] if it had a value. current char is now in [1]
if(isset($buffer[1]))
{
$buffer[0] = $buffer[1];
}
$buffer[1] = $sql[$i];
}
if(!empty($sql))
{
$sql_lists[] = $sql;
}
return $sql_lists;
}
/**
* To verify if a string was empty or not.
*
* Usually used to validate user input. If the user has inputted empty data
* or just blank spaces, we need to trim of such empty data and see if
* anything else is left after trimming. If there is data remaining, then
* the return value will be greater than 0 else it will be 0 (zero) which
* equates to a TRUE/FALSE scenario
*
* @param string $arg The data to be checked
*
* @return The result of the check.
*/
function TrimArgs($arg)
{
return strlen(trim($arg));
}
/**
* Function to un-compress file archives
* @param $from_location Location where archive resides
* @param $filename The name of the file to un-compress
* @param $to_location The location where to un-compress the archive
* @return boolean TRUE else error message
*/
function UncompressFile($from_location, $filename, $to_location)
{
// Require the Pear Archive_Tar Class
require_once(OBJECTS_PATH . "/archive_tar.php");
// use tar file
$tar = new Archive_Tar("$from_location/$filename");
// Extract the archive and return result
if ($tar->extract($to_location) || !$tar->_error_message)
{
return TRUE;
}
else
{
$_SESSION['page_message'][] = $tar->_error_message;
return FALSE;
}
}
function UpgradePointNineSeven($data)
{
// Extract the data to local namespace
extract($data);
// Get the preferences table name.
$preferences_table = ($db_prefix != '')
? str_replace("{$this->mUnixName}_", $db_prefix, $this->mPreferencesTable)
: $this->mPreferencesTable;
$attachments_table = ($db_prefix != '')
? str_replace("{$this->mUnixName}_", $db_prefix, $this->mAttachmentsTable)
: $this->mAttachmentsTable;
$comments_table = ($db_prefix != '')
? str_replace("{$this->mUnixName}_", $db_prefix, $this->mCommentsTable)
: $this->mCommentsTable;
// Query to check the current version of Flyspray
$sql = "SELECT pref_value FROM $preferences_table WHERE pref_name = 'fs_ver'";
// Check what version we are dealing with.
$result = $this->mDbConnection->Execute($sql);
if ($result)
{
$row = $result->FetchRow();
if ($row['pref_value'] == '0.9.7')
{
// Run the upgrade script.
if (!$this->PopulateDb($data))
{
return FALSE;
}
else
{
// Fix the Attachments to be within the comments
// Get a list of the attachments
$sql = "
SELECT
*
FROM
$attachments_table
WHERE
comment_id < '1'
AND
date_added > '0'";
$attachments = $this->mDbConnection->Execute($sql);
if ($attachments)
{
// Cycle through each attachment
while($row = $attachments->FetchRow())
{
// Create a comment
$sql = "
INSERT INTO
flyspray_comments
(task_id, date_added, user_id, comment_text)
VALUES
( ?, ?, ?, ? )";
$data = array($row['task_id'], $row['date_added'], $row['added_by'], $row['file_desc']);
$this->mDbConnection->Execute($sql, $data);
// Retrieve the comment ID
$comment_sql = "
SELECT
*
FROM
$comments_table
WHERE
comment_text = ?
ORDER BY
comment_id DESC";
$comment = $this->mDbConnection->FetchRow($this->mDbConnection->Execute($comment_sql, array($row['file_desc'])));
// Update the attachment entry to point it to the comment ID
$update_attachments = "
UPDATE
flyspray_attachments
SET
comment_id = ?
WHERE
attachment_id = ?";
$this->mDbConnection->Execute($update_attachments, array($comment['comment_id'], $row['attachment_id']));
}
}
return TRUE;
}
}
else
{
$_SESSION['page_message'][] = 'Upgrade not Successful!';
$_SESSION['page_message'][] = "You are trying to upgrade from the wrong {$this->mProductName} version ({$row['pref_value']}).";
$_SESSION['page_message'][] = "You need to be having a version 0.9.7 of {$this->mProductName} installed in order to proceed with the upgrade path you have choosen.";
return FALSE;
}
}
else
{
$_SESSION['page_message'][] = 'Upgrade not Successful!';
$_SESSION['page_message'][] = "Have you picked the right Upgrade path? Is your current version of {$this->mProductName}: 0.9.7 ?";
return FALSE;
}
}
function VerifyVariableTypes($type, $value)
{
$message = '';
switch($type)
{
case 'string':
return (!is_string($value))
? FALSE
: TRUE;
break;
case 'number':
return (!strval(intval($value)))
? FALSE
: TRUE;
break;
case 'email address':
$email_pattern = '/^[^@\s<&>]+@([-a-z0-9]+\.)+[a-z]{2,}$/i';
if (preg_match($email_pattern, $value))
{
return TRUE;
}
return FALSE;
break;
case 'boolean':
return ($value)
? TRUE
: FALSE;
break;
case 'password':
return (strlen($value) >= $this->mMinPasswordLength)
? TRUE
: FALSE;
break;
case 'folder':
return (file_exists($value) && is_dir($value))
? TRUE
: FALSE;
break;
default:
return TRUE;
break;
}
}
/**
* Function to output the templates
* @param array $templates The collection of templates with their associated variables
*
*/
function OutputPage($templates = array())
{
if (sizeof($templates) == 0)
{
trigger_error("Templates not configured properly", E_USER_NOTICE);
}
// Define a template array. This will be used to store the dynamically created objects
$template = array();
// Get the keyname of the last array. This always will be the final template which gets outputted
end($templates);
$last = key($templates);
// Define a set of common variables which plugin to the structure template.
$common_vars = array('product_name' => $this->mProductName);
// Loop through the templates array to dynamically create objects and assign variables to them.
foreach($templates as $name => $module)
{
// Create a new object for the template
$template[$name] = & new Template($module['path']);
// Check if any vars need to be defined for the template and set them.
if (isset($templates[$name]['vars']))
{
$template[$name]->SetVars($module['vars']);
}
// Check if any blocks have been defined.
if (isset($templates[$name]['block']))
{
// If, then loop through the blocks and associate the blocks to their sections
foreach($templates[$name]['block'] as $section => $plugin)
{
// Check if the template exists before fetching. Else trigger an error.
if (file_exists($templates[$plugin]['path'] . '/' . $templates[$plugin]['template']))
{
// Fetch the contents of the block and plug it into the appropriate section
$template[$name]->Set($section, $template[$plugin]->fetch($templates[$plugin]['template']));
}
else
{
trigger_error("Template misconfiguration: ({$templates[$plugin]['path']}{$templates[$plugin]['template']}) not found!", E_USER_NOTICE);
}
}
}
// Check if there are any variables which need appending new values
if (isset($templates[$name]['append']))
{
// If, loop through the array of append variables
foreach($templates[$name]['append'] as $vars => $value)
{
// Check if the appending variable has already been given a value
if (isset($template[$name]->vars[$vars]))
{
// Append the value to the variable $vars of the current template object
$template[$name]->Append($vars, $value);
}
}
}
// If it has reached the last template block
if($name == $last)
{
// This will and HAS to be the last template
// Associate the common variables to the template
$template[$name]->SetVars($common_vars);
// Check if the template exists before fetching and echoing. Else trigger an error.
if (file_exists($module['path'] . '/'. $module['template']))
{
// Echo the final template and exit the script
echo $template[$name]->Fetch($module['template']);
exit;
}
else
{
trigger_error("Template misconfiguration: ({$templates[$plugin]['path']}{$templates[$plugin]['template']}) not found!", E_USER_NOTICE);
}
}
}
}
}
$setup = new Setup;
?>
|