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
|
<?php
/* OpenDb - Open Media Lending Database
Copyright (C) 2001,2002 by Jason Pell
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
// This php file contains functions for updating item records.
include_once("./functions/database.php");
include_once("./functions/logging.php");
include_once("./functions/item_attribute.php");
include_once("./functions/item_type.php");
include_once("./functions/theme.php");
include_once("./functions/utils.php");
include_once("./functions/datetime.php");
include_once("./functions/status_type.php");
include_once("./functions/BooleanParser.class.inc");
include_once("./functions/widgets.php");
include_once("./functions/item_type_group.php");
/**
Will check that the $uid has an item_instance for item_id. If instance_no specified,
will check that the user owns the specified instance, otherwise this function is
only checking that the $uid owns at least one instance of the item.
*/
function is_user_owner_of_item($item_id, $instance_no, $uid)
{
$query = "SELECT 'x' FROM item_instance WHERE item_id = '$item_id' AND owner_id = '$uid' ";
if(is_numeric($instance_no))
$query .= " AND instance_no = '$instance_no' ";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
mysql_free_result($result);
// The very fact that at least one row was returned indicates that owner
// has at least one instance of item.
return TRUE;
}
//else
return FALSE;
}
function is_exists_child_item_with_diff_item_type_to_parent($item_id, $s_item_type)
{
$query = "SELECT 'x' FROM item WHERE parent_id = '$item_id' AND s_item_type <> '$s_item_type' ";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
mysql_free_result($result);
return TRUE;
}
//else
return FALSE;
}
/**
*/
function fetch_item_owner_id($item_id, $instance_no)
{
$query = "SELECT owner_id FROM item_instance WHERE item_id = '$item_id' AND instance_no = '$instance_no'";
$result = run_opendb_query($query);
if ($result && mysql_num_rows($result)>0)
{
$found = mysql_fetch_array($result, MYSQL_ASSOC);
if ($found)
{
mysql_free_result($result);
return $found['owner_id'];
}
}
//else
return FALSE;
}
function fetch_item_s_status_type($item_id, $instance_no)
{
$query = "SELECT s_status_type FROM item_instance WHERE item_id = '$item_id' AND instance_no = '$instance_no'";
$result = run_opendb_query($query);
if ($result && mysql_num_rows($result)>0)
{
$found = mysql_fetch_array($result, MYSQL_ASSOC);
if ($found)
{
mysql_free_result($result);
return $found['s_status_type'];
}
}
//else
return FALSE;
}
/**
Returns a count of items stored in the database, or false if none found.
NOTE: If $s_item_type is specified, only the given $s_item_type is counted (otherwise all)
*/
function fetch_item_instance_cnt($s_item_type = NULL)
{
global $HTTP_SESSION_VARS;
$query = "SELECT count(ii.item_id) as count ";
$from = "FROM item_instance ii, s_status_type sst, user u ";
$where = "WHERE u.user_id = ii.owner_id AND u.active_ind = 'Y' AND sst.s_status_type = ii.s_status_type ";
if($s_item_type)
{
$from .= ",item i";
$where .= "AND i.id = ii.item_id AND i.s_item_type='".$s_item_type."' ";
}
// Restrict certain status types, to specified user types.
$user_type_r = get_min_user_type_r($HTTP_SESSION_VARS['user_type']);
if(is_not_empty_array($user_type_r))
{
$where .= "AND ( ii.owner_id = '".$HTTP_SESSION_VARS['user_id']."' OR ".
" LENGTH(IFNULL(sst.min_display_user_type,'')) = 0 OR ".
" sst.min_display_user_type IN(".format_sql_in_clause($user_type_r).") ) ";
}
$query .= "$from $where";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
$found = mysql_fetch_array($result, MYSQL_ASSOC);
mysql_free_result($result);
if ($found!== FALSE)
return $found['count'];
}
//else
return FALSE;
}
/**
Returns resultset of child items for the particular item_id
*/
function fetch_child_item_rs($item_id)
{
// so that both resultset use item_id for the item.id or item_instance.item_id!!!
$query = "SELECT id as item_id, title, s_item_type, category FROM item WHERE parent_id='".$item_id."' order by id ASC";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
return $result;
else
return FALSE;
}
/**
Returns resultset of item_instance's for the particular item_id
*/
function fetch_item_instance_rs($item_id, $owner_id)
{
global $HTTP_SESSION_VARS;
// so that both resultset use item_id for the item.id or item_instance.item_id!!!
$query = "SELECT ii.item_id, ii.instance_no, ii.owner_id, ii.borrow_duration, ii.s_status_type, ii.status_comment ".
" FROM item_instance ii, s_status_type sst, user u".
" WHERE u.user_id = ii.owner_id AND u.active_ind = 'Y' AND sst.s_status_type = ii.s_status_type AND ii.item_id='".$item_id."' ".(strlen($owner_id)>0?"AND ii.owner_id = '$owner_id'":"");
// Restrict certain status types, to specified user types.
$user_type_r = get_min_user_type_r($HTTP_SESSION_VARS['user_type']);
if(is_not_empty_array($user_type_r))
{
$query .= " AND ( ii.owner_id = '".$HTTP_SESSION_VARS['user_id']."' OR ".
" LENGTH(IFNULL(sst.min_display_user_type,'')) = 0 OR ".
" sst.min_display_user_type IN(".format_sql_in_clause($user_type_r).") ) ";
}
$query .= " order by ii.instance_no ";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
return $result;
else
return FALSE;
}
/**
Returns a count of items owned by the specified owner_id, or FALSE if no records.
Assumes this will NOT be called for INACTIVE users, if being called from Statistics
NOTE: If $s_item_type is specified, only the given s_item_type is counted (otherwise all)
*/
function fetch_owner_item_cnt($owner_id, $s_item_type = NULL)
{
global $HTTP_SESSION_VARS;
$query = "SELECT count(ii.item_id) as count ";
$from = "FROM item_instance ii, s_status_type sst ";
$where = "WHERE sst.s_status_type = ii.s_status_type ";
if($s_item_type)
{
$from .= ",item i";
$where .= "AND i.id = ii.item_id AND i.s_item_type='".$s_item_type."' ";
}
$where .= "AND ii.owner_id = '$owner_id' ";
// Restrict certain status types, to specified user types.
$user_type_r = get_min_user_type_r($HTTP_SESSION_VARS['user_type']);
if(is_not_empty_array($user_type_r))
{
$where .= "AND ( ii.owner_id = '".$HTTP_SESSION_VARS['user_id']."' OR ".
" LENGTH(IFNULL(sst.min_display_user_type,'')) = 0 OR ".
" sst.min_display_user_type IN(".format_sql_in_clause($user_type_r).") ) ";
}
$query .= "$from $where";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
$found = mysql_fetch_array($result, MYSQL_ASSOC);
mysql_free_result($result);
if ($found!== FALSE)
return $found['count'];
}
//else
return FALSE;
}
/*
* We do not know which s_status_type's the $HTTP_SESSION_VARS['user_type']
* can have access to so we include a join to s_status_type to hide any
* items with a s_status_type the current user should not see.
*/
function fetch_owner_s_status_type_item_cnt($owner_id, $s_status_type)
{
global $HTTP_SESSION_VARS;
$query = "SELECT count(ii.item_id) as count ".
"FROM item_instance ii, s_status_type sst ".
"WHERE sst.s_status_type = ii.s_status_type AND ii.owner_id='".$owner_id."' AND ii.s_status_type = '$s_status_type' ";
// Restrict certain status types, to specified user types.
$user_type_r = get_min_user_type_r($HTTP_SESSION_VARS['user_type']);
if(is_not_empty_array($user_type_r))
{
$query .= "AND ( ii.owner_id = '".$HTTP_SESSION_VARS['user_id']."' OR ".
" LENGTH(IFNULL(sst.min_display_user_type,'')) = 0 OR ".
" sst.min_display_user_type IN(".format_sql_in_clause($user_type_r).") ) ";
}
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
$found = mysql_fetch_array($result, MYSQL_ASSOC);
mysql_free_result($result);
if ($found !== FALSE)
return $found['count'];
}
//else
return FALSE;
}
/**
Returns a count of child items for $item_id
*/
function fetch_child_item_cnt($item_id)
{
$query = "SELECT count(id) as count FROM item WHERE parent_id ='".$item_id."'";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
$found = mysql_fetch_array($result, MYSQL_ASSOC);
mysql_free_result($result);
if ($found !== FALSE)
return $found['count'];
}
//else
return FALSE;
}
/**
Returns a count of items in the specified $s_item_type category, or FALSE if no records.
NOTE: If $s_item_type is specified, only the given s_item_type is counted (otherwise all)
*/
function fetch_category_item_cnt($category, $s_item_type = NULL)
{
global $HTTP_SESSION_VARS;
$query = "SELECT count(ii.item_id) as count ".
"FROM item i,item_instance ii, s_status_type sst, user u ".
"WHERE u.user_id = ii.owner_id AND u.active_ind = 'Y' AND sst.s_status_type = ii.s_status_type AND i.id = ii.item_id AND i.parent_id IS NULL AND i.category like '%".$category."%'";
if($s_item_type)
{
$query .= " AND s_item_type='".$s_item_type."'";
}
// Restrict certain status types, to specified user types.
$user_type_r = get_min_user_type_r($HTTP_SESSION_VARS['user_type']);
if(is_not_empty_array($user_type_r))
{
$where .= "AND ( ii.owner_id = '".$HTTP_SESSION_VARS['user_id']."' OR ".
" LENGTH(IFNULL(sst.min_display_user_type,'')) = 0 OR ".
" sst.min_display_user_type IN(".format_sql_in_clause($user_type_r).") ) ";
}
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
$found = mysql_fetch_array($result, MYSQL_ASSOC);
mysql_free_result($result);
if ($found!== FALSE)
return $found['count'];
}
//else
return FALSE;
}
/*
* Returns a list of items owned by the specified owner.
* item_id,instance_no,title
*
* Note: Used exclusively in User Admin. This we can restrict
* set returned, to only those records which are accessible to
* the administrator.
*/
function fetch_owner_item_instance_rs($owner_id)
{
$query = "SELECT ii.item_id, ii.instance_no, ii.s_status_type, ii.status_comment, ii.borrow_duration, i.parent_id, ii.owner_id, i.title, i.category, i.s_item_type FROM item i, item_instance ii WHERE i.id = ii.item_id AND parent_id IS NULL AND ii.owner_id='".$owner_id."' ";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
return $result;
else
return FALSE;
}
//
// Returns an associative array for a single item.
//id,owner_id,title,category,s_item_type
//
function fetch_item_instance_r($item_id, $instance_no)
{
$query = "SELECT ii.item_id, ii.instance_no, ii.s_status_type, ii.status_comment, ii.borrow_duration, i.parent_id, ii.owner_id, i.title, i.category, i.s_item_type FROM item i,item_instance ii WHERE i.id = ii.item_id AND i.id='".$item_id."' AND ii.instance_no = '".$instance_no."'";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
$found = mysql_fetch_array($result, MYSQL_ASSOC);
mysql_free_result($result);
return $found;
}
else
return FALSE;
}
function fetch_item_r($item_id)
{
$query = "SELECT id as item_id, parent_id, title, category, s_item_type FROM item WHERE id='".$item_id."'";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
$found = mysql_fetch_array($result, MYSQL_ASSOC);
mysql_free_result($result);
return $found;
}
else
return FALSE;
}
//
// Returns an associative array for a single item.
//id,owner_id,title,category,s_item_type
//
function fetch_child_item_r($item_id)
{
return fetch_item_r($item_id);
}
/**
Return the item title.
*/
function fetch_item_title($item_id)
{
// Only load previous record if edit.
$query = "SELECT title FROM item WHERE id='".$item_id."'";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
$found = mysql_fetch_array($result, MYSQL_ASSOC);
mysql_free_result($result);
return $found['title'];
}
else
return FALSE;
}
//
// Return the item title.
//
function fetch_item_type($item_id)
{
// Only load previous record if edit.
$query = "SELECT s_item_type FROM item WHERE id='".$item_id."'";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
$found = mysql_fetch_array($result, MYSQL_ASSOC);
mysql_free_result($result);
return $found['s_item_type'];
}
else
return FALSE;
}
/**
Will ascertain whether an item already exists with the same information:
title, s_item_type, parent_id
OR
title, s_item_type, owner_id
*/
function is_exists_title($title, $s_item_type, $owner_id=NULL, $parent_id=NULL)
{
global $HTTP_SESSION_VARS;
// In this case we assume the parent id is visible and accessible to the
// current user, because otherwise validation checks would not have allowed
// the user to come this far.
if(strlen($parent_id)>0)
{
$query = "SELECT 'x' FROM item i ".
"WHERE i.title = '".addslashes($title)."' AND ".
"i.s_item_type = '".$s_item_type."' AND ".
"i.parent_id = '".$parent_id."'";
}
else
{
$query = "SELECT 'x' FROM item i,item_instance ii, s_status_type sst, user u ".
"WHERE i.id = ii.item_id AND ".
"u.user_id = ii.owner_id AND ".
"u.active_ind = 'Y' AND ".
"sst.s_status_type = ii.s_status_type AND ".
"i.title = '".addslashes($title)."' AND ".
"i.s_item_type = '".$s_item_type."' AND ".
" i.parent_id IS NULL ";
// Restrict certain status types, to specified user types.
$user_type_r = get_min_user_type_r($HTTP_SESSION_VARS['user_type']);
if(is_not_empty_array($user_type_r))
{
$where .= "AND ( ii.owner_id = '".$HTTP_SESSION_VARS['user_id']."' OR ".
" LENGTH(IFNULL(sst.min_display_user_type,'')) = 0 OR ".
" sst.min_display_user_type IN(".format_sql_in_clause($user_type_r).") ) ";
}
if(strlen($owner_id)>0)
$query .= "AND ii.owner_id = '".$owner_id."'";
}
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
mysql_free_result($result);
return TRUE;
}
else
{
return FALSE;
}
}
/**
Assumes that lock_item_instance has been called to ensure that
between delete of item_instance and delete of item, no further activity
can occur on the table.
If '$instance_no' specified, will test whether the specific instance
exists or not; Other wise will test whether any instances exist.
This will not cater for 'linked' items which do not have a
item_instance record.
*/
function is_exists_item_instance($item_id, $instance_no=NULL)
{
$query = "SELECT 'x' FROM item_instance WHERE item_id = '$item_id' ";
if($instance_no)
$query .= "AND instance_no = '$instance_no'";
$query .= " LIMIT 0,1";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
mysql_free_result($result);
return TRUE;
}
//else
return FALSE;
}
function is_exists_item_instance_with_owner($owner_id)
{
$query = "SELECT 'x' FROM item_instance WHERE owner_id = '$owner_id'";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
mysql_free_result($result);
return TRUE;
}
//else
return FALSE;
}
function is_exists_item_instance_with_owner_and_status($item_id, $s_status_type, $owner_id)
{
$query = "SELECT 'x' FROM item_instance WHERE item_id = '$item_id' AND owner_id = '$owner_id' AND s_status_type = '$s_status_type'";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
mysql_free_result($result);
return TRUE;
}
//else
return FALSE;
}
/**
Checks if the underlying item record actually exists or not.
*/
function is_exists_item($item_id)
{
$query = "SELECT 'x' FROM item WHERE id = '$item_id'";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
mysql_free_result($result);
return TRUE;
}
//else
return FALSE;
}
/**
Check if item is a child item. No need to check item_instance,
because parent-child relationship does not exist there.
*/
function is_child_item($item_id)
{
$query = "SELECT parent_id FROM item WHERE id = '$item_id'";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
$found = mysql_fetch_array($result, MYSQL_ASSOC);
mysql_free_result($result);
if ($found!== FALSE && is_numeric($found['parent_id']))
return TRUE;
}
//else
return FALSE;
}
/**
Assumes that lock_item_instance has been called to
ensure that the max_instance_no DOES NOT CHANGE between the select
and insert.
*/
function fetch_max_instance_no($item_id)
{
$query = "SELECT MAX(instance_no) as instance_no FROM item_instance WHERE item_id = $item_id";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
$found = mysql_fetch_array($result, MYSQL_ASSOC);
mysql_free_result($result);
if ($found!== FALSE)
return $found['instance_no'];
}
//else
return FALSE;
}
/**
@param item_where_clause - the result of running the item_where_clause statement.
@param $column_display_config_rs - Format of this array is:
array(
s_attribute_type => '',
order_no=>'',
value => '',
lookup => '',
attr_match => '',
include_in_list => 'Y');
Arrays where value is defined, attr_match is one of 'word' or 'partial'
and include_in_list = 'y' will be included in the select statement.
*/
function fetch_item_listing_cnt($HTTP_VARS, $column_display_config_rs=NULL)
{
// From configuration file.
global $CONFIG_VARS;
$query = "SELECT count(DISTINCT i.id, ii.instance_no";
if(is_array($column_display_config_rs))
{
for($i=0; $i<count($column_display_config_rs); $i++)
{
// ignore all other configuration columns as they are already included
if($column_display_config_rs[$i]['column_type'] == 's_attribute_type')
{
// if not an order by column, we want to generate the fields individually in the listings page.
if($column_display_config_rs[$i]['orderby']!==FALSE)
{
if(strlen($column_display_config_rs[$i]['attribute_val'])>0 &&
($column_display_config_rs[$i]['attr_match'] == 'word' || $column_display_config_rs[$i]['attr_match'] == 'partial') &&
$column_display_config_rs[$i]['include_in_list'] == 'y')
{
$query .= ', ifnull(ia'.$i.'.attribute_val,ia'.$i.'.lookup_attribute_val)';
}
}//if($column_display_config_rs[$i]['orderby']!==FALSE)
}
}
}
$query .= ") as count ";
$query .= from_and_where_clause($HTTP_VARS, $column_display_config_rs, 'COUNT');
echo "\n<!-- Count Query: $query -->";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
{
$found = mysql_fetch_array($result, MYSQL_ASSOC);
mysql_free_result($result);
if($found!==FALSE)
return $found['count'];
}
//else
return FALSE;
}
/**
Add the SELECT and ORDER BY CLAUSES
@param $HTTP_VARS
@param $column_display_config_rs
@param $order_by by should be one of "s_item_type, owner_id, title, category, update_on"
The $order_by value will control which order column is first in the list, the rest
will be filled in after with defaults.
@param $sortorder will be either "asc" or "desc" if not defined it will default to "asc"
@param $index is the LIMIT value to apply.
*/
function fetch_item_listing_rs($HTTP_VARS, &$column_display_config_rs, $order_by, $sortorder, $start_index=NULL, $items_per_page=NULL)
{
$query .= 'SELECT DISTINCT i.id as item_id, ii.instance_no, i.parent_id, ii.s_status_type, ii.status_comment, ii.owner_id, ii.borrow_duration, i.s_item_type, i.title, i.category, UNIX_TIMESTAMP(ii.update_on) as update_on';
$attr_order_by = NULL;
if(is_array($column_display_config_rs))
{
for($i=0; $i<count($column_display_config_rs); $i++)
{
if($column_display_config_rs[$i]['column_type'] == 's_attribute_type')
{
// if not an order by column, we want to generate the fields individually in the listings page.
if($column_display_config_rs[$i]['orderby']!==FALSE)
{
$fieldname = get_field_name($column_display_config_rs[$i]['s_attribute_type'], $column_display_config_rs[$i]['order_no']);
if($column_display_config_rs[$i]['numeric_orderby']==TRUE)
$query .= ', (ifnull(ia'.$i.'.attribute_val, ia'.$i.'.lookup_attribute_val)+0) as '.$fieldname;
else
$query .= ', ifnull(ia'.$i.'.attribute_val, ia'.$i.'.lookup_attribute_val) as '.$fieldname;
if( $column_order_by == NULL && strlen($order_by)>0 && strcasecmp($order_by, $fieldname) === 0)
{
$column_order_by = $fieldname;
}
}//if($column_display_config_rs[$i]['orderby']!==FALSE)
}
}
}
$query .= " ".
from_and_where_clause($HTTP_VARS, $column_display_config_rs, 'LISTING');
if($column_order_by != NULL)
{
$query .= ' ORDER BY '.$column_order_by.' '.$sortorder.', i.title, ii.instance_no ASC, i.s_item_type';
}
else if($order_by == 's_item_type')
$query .= ' ORDER BY i.s_item_type '.$sortorder.', i.title, ii.instance_no ASC';
else if($order_by == 'category')
$query .= ' ORDER BY i.category '.$sortorder.', i.title, ii.instance_no ASC, i.s_item_type';
else if($order_by == 'owner_id')
$query .= ' ORDER BY ii.owner_id '.$sortorder.', i.title, ii.instance_no ASC, i.s_item_type';
else if($order_by == 's_status_type')
$query .= ' ORDER BY ii.s_status_type '.$sortorder.', i.title, ii.instance_no ASC, i.s_item_type';
else if($order_by == 'update_on')
$query .= ' ORDER BY ii.update_on '.$sortorder.', i.title, ii.instance_no ASC, i.s_item_type';
else if($order_by === 'item_id')
$query .= ' ORDER BY i.id '.$sortorder.', ii.instance_no ASC, i.s_item_type';
else //if($order_by === 'title')
$query .= ' ORDER BY i.title '.$sortorder.', ii.instance_no ASC, i.s_item_type';
if(is_numeric($start_index) && is_numeric($items_per_page))
{
$query .= ' LIMIT ' .$start_index. ', ' .$items_per_page;
}
echo "\n<!-- Listing Query: $query -->";
$result = run_opendb_query($query);
if($result && mysql_num_rows($result)>0)
return $result;
else
return FALSE;
}
/**
* NOTE: PRIVATE FUNCTION.
Will return the FROM and WHERE clauses for a selection from the item table.
If $owner_id defined, will limit to only items owned by owner_id
If $s_item_type defined, will limit to only items of that type.
If $category defined, will limit to only items of that category.
If $letter defined will limit to item.title starting with that letter.
@param $HTTP_VARS['...'] variables supported:
owner_id, s_item_type, s_item_type_rs[], s_item_type_group, title, title_match, category,
rating, attribute_type, lookup_attribute_val, attribute_val, attr_match,
update_on, datetimemask, update_on_days, letter, start_item_id
s_status_type[], status_comment, not_s_status_type[], linked_items
*/
function from_and_where_clause($HTTP_VARS, $column_display_config_rs = NULL, $query_type = 'LISTING')
{
// For checking whether count (DISTINCT ...) is supported, and thus
// whether we have to do any special processing!
global $CONFIG_VARS;
global $HTTP_SESSION_VARS;
$from_r[] = 'item i';
$from_r[] = 'item_instance ii';
//
// Linked Item support
//
if($HTTP_VARS['linked_items'] == 'include')
{
$where_r[] =
"(".
"(i.parent_id IS NULL AND ii.item_id = i.id) OR ".
"(i.parent_id IS NOT NULL AND ii.item_id = i.parent_id)".
")";
}
else // $HTTP_VARS['linked_items'] == 'exclude'
{
$where_r[] = 'ii.item_id = i.id';// only parent items should ever be listed.
}
//
// Owner restriction
//
if(strlen($HTTP_VARS['owner_id'])>0)
$where_r[] = 'ii.owner_id = \''.$HTTP_VARS['owner_id'].'\'';
else if(strlen($HTTP_VARS['not_owner_id'])>0)//For not showing current user items.
$where_r[] = 'ii.owner_id <> \''.$HTTP_VARS['not_owner_id'].'\'';
//
// Item Type / Item Type group restriction
//
if(strlen($HTTP_VARS['s_item_type'])>0)
{
$where_r[] = 'i.s_item_type = \''.$HTTP_VARS['s_item_type'].'\'';
}
else if(strlen($HTTP_VARS['s_item_type_group'])>0)
{
$from_r[] = 's_item_type_group_rltshp sitgr';
$where_r[] = 'sitgr.s_item_type = i.s_item_type';
$where_r[] = 'sitgr.s_item_type_group = \''.$HTTP_VARS['s_item_type_group'].'\'';
}
else if(is_not_empty_array($HTTP_VARS['s_item_type_rs']))
{
$where_r[] = 'i.s_item_type IN('.format_sql_in_clause($HTTP_VARS['s_item_type_rs']).')';
}
//
// Status Type restriction
//
if(is_not_empty_array($HTTP_VARS['s_status_type']))
{
$from_r[] = 's_status_type sst';
$where_r[] = 'sst.s_status_type = ii.s_status_type';
$where_r[] = 'sst.s_status_type IN('.format_sql_in_clause($HTTP_VARS['s_status_type']).')';
}
else if($HTTP_VARS['s_status_type'] != 'ALL' && strlen($HTTP_VARS['s_status_type'])>0)
{ // ALL = Special type, which does not restrict.
$from_r[] = 's_status_type sst';
$where_r[] = 'sst.s_status_type = ii.s_status_type';
$where_r[] = 'sst.s_status_type = \''.$HTTP_VARS['s_status_type'].'\'';
}
//
// User and Status type restriction
//
if(strcmp($HTTP_VARS['owner_id'], $HTTP_SESSION_VARS['user_id'])!==0)
{
$from_r[] = 'user u';
$where_r[] = 'u.user_id = ii.owner_id';
// Join the s_status and user (to remove Deactivated user records) tables in, so we can do some restrictions if required.
$where_r[] = '(u.active_ind IS NULL OR u.active_ind = \'Y\')';
// Restrict certain status types, to specified user types.
$user_type_r = get_min_user_type_r($HTTP_SESSION_VARS['user_type']);
if(is_not_empty_array($user_type_r))
{
// Check if s_status_type table already included, if not include it.
if( array_search2('s_status_type sst', $from_r) === FALSE )
{
$from_r[] = 's_status_type sst';
$where_r[] = 'sst.s_status_type = ii.s_status_type';
}
$where_r[] = '( ii.owner_id = \''.$HTTP_SESSION_VARS['user_id'].'\' OR '.
' LENGTH(IFNULL(sst.min_display_user_type,\'\')) = 0 OR '.
' sst.min_display_user_type IN('.format_sql_in_clause($user_type_r).') )';
}
}
//
// Status Comment restriction
//
if(strlen($HTTP_VARS['status_comment'])>0)
{
// Escape only the single quote!
$HTTP_VARS['status_comment'] = str_replace("'","\\'", $HTTP_VARS['status_comment']);
if($HTTP_VARS['status_comment_match'] != 'exact')
{
$parser = new BooleanParser();
$statements = $parser->parseBooleanStatement($HTTP_VARS['status_comment']);
if(is_array($statements))
{
$where_r[] = build_boolean_clause($statements, 'ii.status_comment', $HTTP_VARS['status_comment_match']);
}
}
else
{
$where_r[] = 'ii.status_comment = \''.$HTTP_VARS['status_comment'].'\'';
}
}
//
// Title restriction
//
if(strlen($HTTP_VARS['title'])>0)
{
// Escape only the single quote!
$HTTP_VARS['title'] = str_replace("'","\\'", $HTTP_VARS['title']);
if($HTTP_VARS['title_match'] != 'exact')
{
$parser = new BooleanParser();
$statements = $parser->parseBooleanStatement($HTTP_VARS['title']);
if(is_array($statements))
{
$where_r[] = build_boolean_clause($statements, 'i.title', $HTTP_VARS['title_match']);
}
}
else
{
$where_r[] = 'i.title = \''.$HTTP_VARS['title'].'\'';
}
}
else if(strlen($HTTP_VARS['letter'])>0)
{
// Numeric match.
if($HTTP_VARS['letter'] == '#')
$where_r[] = 'left(i.title,1) BETWEEN 0 AND 9';
else
$where_r[] = 'UPPER(left(i.title,1)) = \''.strtoupper($HTTP_VARS['letter']).'\'';
}
//
// Last Updated support
//
if(strlen($HTTP_VARS['update_on'])>0)
{
if(strlen($HTTP_VARS['datetimemask'])>0)
{
$timestamp = get_timestamp_for_datetime($HTTP_VARS['update_on'], $HTTP_VARS['datetimemask']);
if($timestamp!==FALSE)
{
$where_r[] = 'ii.update_on >= FROM_UNIXTIME('.$timestamp.')';
}
else
{
// by default get items from 1 day ago, if update_on can not be parsed correctly.
$where_r[] = 'TO_DAYS(ii.update_on) >= (TO_DAYS(now())-1)';
}
}
else
{
$where_r[] = 'ii.update_on >= \''.$HTTP_VARS['update_on'].'\'';
}
}
else if(is_numeric($HTTP_VARS['update_on_days']))// GIve us all records updated in the last however many days.
{
$where_r[] = 'TO_DAYS(ii.update_on) >= (TO_DAYS(now())-'.$HTTP_VARS['update_on_days'].')';
}
//
// Category restriction
//
// NOTE: Boolean support not available for 'category' search.
//
if(strlen($HTTP_VARS['category'])>0 ||
(strcasecmp($HTTP_VARS['attr_match'], 'category')===0 &&
strlen($HTTP_VARS['attribute_val'])>0))// Support specifying $attribute_val for $category where $attr_match=="category"!
{
// If item_type && item_type_group are not set!
if(strlen($HTTP_VARS['attribute_type'])>0 && strlen($HTTP_VARS['s_item_type'])==0 && strlen($HTTP_VARS['s_item_type_group'])==0 && !is_array($HTTP_VARS['s_item_type_rs']))
{
$result = fetch_category_itemtype_rs($HTTP_VARS['attribute_type']);
if($result)
{
$inclause = '';
while($type_r = mysql_fetch_array($result, MYSQL_ASSOC))
{
if(strlen($inclause)>0)
$inclause .= ',';
$inclause .= '\''.$type_r['s_item_type'].'\'';
}
mysql_free_result($result);
if(strlen($inclause)>0)
{
$where_r[] = 'i.s_item_type IN ('.$inclause.')';
}
}
}
// Escape single quotes only.
$value = strtoupper(str_replace("'","\\'", ifempty($HTTP_VARS['category'], $HTTP_VARS['attribute_val'])));
$where_r[] = '( UPPER(i.category) = \''.str_replace('\_','_',$value).'\' OR '.
'UPPER(i.category) LIKE \'% '.$value.' %\' OR '.
'UPPER(i.category) LIKE \''.$value.' %\' OR '.
'UPPER(i.category) LIKE \'% '.$value.'\' )';
}
//
// Item Attribute listing/restriction
//
if(is_array($column_display_config_rs))
{
for($i=0; $i<count($column_display_config_rs); $i++)
{
if($column_display_config_rs[$i]['column_type'] == 's_attribute_type')
{
// if not an order by column, we want to generate the fields individually in the listings page.
if($column_display_config_rs[$i]['orderby']!==FALSE)
{
// NOT a search attribute
if(!isset($column_display_config_rs[$i]['lookup_attribute_val']) &&
!isset($column_display_config_rs[$i]['attribute_val']) &&
!isset($column_display_config_rs[$i]['attr_match']) &&
!isset($column_display_config_rs[$i]['attr_update_on']) &&
!isset($column_display_config_rs[$i]['attr_update_on_days']) )
{
// either LISTING or COUNT
if($query_type != 'COUNT')
{
$left_join = 'LEFT JOIN item_attribute ia'.$i.' ON '.
'ia'.$i.'.item_id = i.id AND ia'.$i.'.s_attribute_type = \''.$column_display_config_rs[$i]['s_attribute_type'].'\'';
// So we can work out which search attribute types to display
if(is_numeric($column_display_config_rs[$i]['order_no']))
{
$left_join .= ' AND ia'.$i.'.order_no = '.$column_display_config_rs[$i]['order_no'];
}
$left_join_from_r[] = $left_join;
}
}
else // search attribute
{
$from_r[] = 'item_attribute ia'.$i;
// now do the where clause.
$where_r[] = 'ia'.$i.'.item_id = i.id AND ia'.$i.'.s_attribute_type = \''.$column_display_config_rs[$i]['s_attribute_type'].'\' ';
if(strlen($column_display_config_rs[$i]['attribute_val'])>0 &&
$column_display_config_rs[$i]['attribute_val'] != '%' &&
$column_display_config_rs[$i]['attr_match'] != 'exact')
{
$parser = new BooleanParser();
$statements = $parser->parseBooleanStatement(strtoupper(str_replace("'","\\'", $column_display_config_rs[$i]['attribute_val'])));
if(is_array($statements))
{
if($column_display_config_rs[$i]['is_lookup_attribute_type']===TRUE)
{
$where_r[] = build_boolean_clause($statements, 'ia'.$i.'.lookup_attribute_val', 'plain');
}
else
{
$where_r[] = build_boolean_clause($statements, 'ia'.$i.'.attribute_val', $column_display_config_rs[$i]['attr_match']);
}
}
}
else if(strlen($column_display_config_rs[$i]['lookup_attribute_val'])>0 &&
$column_display_config_rs[$i]['lookup_attribute_val'] != '%' &&
$column_display_config_rs[$i]['is_lookup_attribute_type']===TRUE)
{
$value = str_replace("'","\\'", $column_display_config_rs[$i]['lookup_attribute_val']);
$where_r[] = 'ia'.$i.'.lookup_attribute_val = \''.str_replace('\_','_',$value).'\'';
}
else if(strlen($column_display_config_rs[$i]['attribute_val'])>0 &&
$column_display_config_rs[$i]['attribute_val'] != '%')
{
$value = strtoupper(str_replace("'","\\'", $column_display_config_rs[$i]['attribute_val']));
$where_r[] = '( UPPER(ia'.$i.'.attribute_val) = \''.str_replace('\_','_',$value).'\' OR '.
'UPPER(ia'.$i.'.attribute_val) LIKE \'% '.$value.' %\' OR '.
'UPPER(ia'.$i.'.attribute_val) LIKE \''.$value.' %\' OR '.
'UPPER(ia'.$i.'.attribute_val) LIKE \'% '.$value.'\')';
}
if(strlen($HTTP_VARS['attr_update_on'])>0)
{
if(strlen($HTTP_VARS['datetimemask'])>0)
{
$timestamp = get_timestamp_for_datetime($HTTP_VARS['attr_update_on'], $HTTP_VARS['datetimemask']);
if($timestamp!==FALSE)
{
$where_r[] = 'ia'.$i.'.update_on >= FROM_UNIXTIME('.$timestamp.')';
}
else
{
// by default get items from 1 day ago, if update_on can not be parsed correctly.
$where_r[] = 'TO_DAYS(ia'.$i.'.update_on) >= (TO_DAYS(now())-1)';
}
}
else
{
$where_r[] = 'ia'.$i.'.update_on >= \''.$HTTP_VARS['attr_update_on'].'\'';
}
}
else if(is_numeric($HTTP_VARS['attr_update_on_days']))// GIve us all records updated in the last however many days.
{
$where_r[] = 'TO_DAYS(ia'.$i.'.update_on) >= (TO_DAYS(now())-'.$HTTP_VARS['attr_update_on_days'].')';
}
}
}//$column_display_config_rs[$i]['orderby']!==FALSE
}//if($column_display_config_rs[$i]['column_type'] == 's_attribute_type')
}
}
// If attribute_val specified without a attribute_type, then do a loose join to item_attribute table,
// only on attribute_val column.
if(strcasecmp($HTTP_VARS['attr_match'], 'category')!==0 &&
strlen($HTTP_VARS['attribute_type'])==0 &&
(strlen($HTTP_VARS['attribute_val'])>0 ||
strlen($HTTP_VARS['attr_update_on'])>0 ||
strlen($HTTP_VARS['attr_update_on_days'])>0))
{
$from_r[] = 'item_attribute ia';
// now do the where clause.
$where_r[] = 'ia.item_id = i.id';
if($HTTP_VARS['attr_match'] != 'exact')
{
$parser = new BooleanParser();
$statements = $parser->parseBooleanStatement(strtoupper(str_replace("'","\\'", $HTTP_VARS['attribute_val'])));
if(is_array($statements))
{
if(is_lookup_attribute_type($HTTP_VARS['attribute_type']))
{
$where_r[] = build_boolean_clause($statements, 'ia.lookup_attribute_val', 'plain');
}
else
{
$where_r[] = build_boolean_clause($statements, 'ia.attribute_val', $HTTP_VARS['attr_match']);
}
}
}
else// attr_match = 'exact'
{
if(is_lookup_attribute_type($HTTP_VARS['attribute_type']))
{
$value = str_replace("'","\\'", $HTTP_VARS['attribute_val']);
$where_r[] = 'ia.lookup_attribute_val = \''.str_replace('\_','_',$value).'\'';
}
else
{
$value = strtoupper(str_replace("'","\\'", $HTTP_VARS['attribute_val']));
$where_r[] = '( UPPER(ia.attribute_val) = \''.str_replace('\_','_',$value).'\' OR '.
'UPPER(ia.attribute_val) LIKE \'% '.$value.' %\' OR '.
'UPPER(ia.attribute_val) LIKE \''.$value.' %\' OR '.
'UPPER(ia.attribute_val) LIKE \'% '.$value.'\')';
}
}
if(strlen($HTTP_VARS['attr_update_on'])>0)
{
if(strlen($HTTP_VARS['datetimemask'])>0)
{
$timestamp = get_timestamp_for_datetime($HTTP_VARS['attr_update_on'], $HTTP_VARS['datetimemask']);
if($timestamp!==FALSE)
{
$where_r[] = 'ia.update_on >= FROM_UNIXTIME('.$timestamp.')';
}
else
{
// by default get items from 1 day ago, if update_on can not be parsed correctly.
$where_r[] = 'TO_DAYS(ia.update_on) >= (TO_DAYS(now())-1)';
}
}
else
{
$where_r[] = 'ia.update_on >= \''.$HTTP_VARS['attr_update_on'].'\'';
}
}
else if(is_numeric($HTTP_VARS['attr_update_on_days']))// GIve us all records updated in the last however many days.
{
$where_r[] = 'TO_DAYS(ia.update_on) >= (TO_DAYS(now())-'.$HTTP_VARS['attr_update_on_days'].')';
}
}
//
// Review restrictions
//
if(strlen($HTTP_VARS['rating'])>0)
{
$where_r[] = 'r.item_id = i.id AND r.rating >= '.$HTTP_VARS['rating'];
$from_r[] = 'review r';
}
//
// Item ID range restriction (Used by Import script)
//
if(strlen($HTTP_VARS['item_id_range'])>0)
{
$where_r[] = 'i.id IN ('.expand_number_range($HTTP_VARS['item_id_range']).')';
}
//
// Now build the SQL query
//
if(is_array($from_r))
{
$from_clause = '';
for($i=0; $i<count($from_r); $i++)
{
if(strlen($from_clause)>0)
$from_clause .= ', ';
$from_clause .= $from_r[$i];
}
$query .= 'FROM ('.$from_clause.') ';
}
if(is_array($left_join_from_r))
{
$left_join_from_clause = '';
for($i=0; $i<count($left_join_from_r); $i++)
{
if(strlen($left_join_from_clause)>0)
$left_join_from_clause .= ' ';
$left_join_from_clause .= $left_join_from_r[$i];
}
$query .= $left_join_from_clause.' ';
}
if(is_array($where_r))
{
$where_clause = '';
for($i=0; $i<count($where_r); $i++)
{
if(strlen($where_clause)>0)
$where_clause .= ' AND ';
$where_clause .= $where_r[$i];
}
$query .= 'WHERE '.$where_clause;
}
//
// Finally format the whole thing into a FROM/WHERE class.
//
return $query;
}
/**
* Will also limit the category to 100 characters, and not
* add any partial entries, if they take it over 100 chars.
*/
function get_category_value($category_array)
{
if ( is_array( $category_array ) )
{
$category = '';
reset($category_array);
while(list(,$value) = each($category_array))
{
// we want to remove internal whitespace.
$value = addslashes(replace_newlines(preg_replace('/[\s]/', '', $value)));
if(empty($category) || strlen($category." ".$value)<=100)
{
if(!empty($category))
$category .= ' ';
$category .= $value;
}
else// do not continue past 100 chars.
{
break;
}
}
// return composite insert value.
return $category;
}
else
{
return $category_array;
}
}
//
// If successful will return the new ID for the item, otherwise will return FALSE.
//
function insert_item($parent_id, $s_item_type, $title, $category_r)
{
global $HTTP_SESSION_VARS;
if(strlen($title)>0)
{
$title = addslashes(replace_newlines(trim($title)));
// Max size of 100 characters for $category.
$category = get_category_value($category_r);
$query = "INSERT INTO item (parent_id, s_item_type, title, category)".
" VALUES (".(!is_numeric($parent_id)?"NULL":"'$parent_id'").",'$s_item_type','$title', '$category')";
$insert = run_opendb_query($query);
if (mysql_affected_rows() > 0)
{
$new_item_id = mysql_insert_id();
opendb_log("Inserted item (item_id=$new_item_id, update_who=".$HTTP_SESSION_VARS['user_id'].")");
return $new_item_id;
}
else
{
opendb_log("Failed to insert item (update_who=".$HTTP_SESSION_VARS['user_id'].") [error=".mysql_error()."]");
return FALSE;
}
}
else
{
opendb_log("Failed to insert item (update_who=".$HTTP_SESSION_VARS['user_id'].") [Title not specified]");
return FALSE;
}
}
/**
Update item - only called from update_item_instance from now on.
The only problem we have is that when an update of an item occurs, none of the item_instances
will reflect this. So we cannot actually tell if an item has been updated. But since we are
probably only interested in new items, that is alright.
* @param $category - expects an array, which will be converted to a space delimited value.
*/
function update_item($item_id, $title, $category_r)
{
global $HTTP_SESSION_VARS;
$query = "UPDATE item set ";
if(strlen($title)>0)
{
$title = addslashes(replace_newlines(trim($title)));
$query .= "title = '$title',";
}
// Max size of 100 characters for $category.
$category = get_category_value($category_r);
$query .= "category = '$category' ".
"WHERE id = '$item_id'";
$update = run_opendb_query($query);
// We should not treat updates that were not actually updated because value did not change as failures.
$rows_affected = mysql_affected_rows();
if ($rows_affected !== -1)
{
if($rows_affected>0)
{
opendb_log("Updated item (item_id=$item_id, update_who=".$HTTP_SESSION_VARS['user_id'].")");
}
return TRUE;
}
else
{
opendb_log("Failed to update item (item_id=$item_id, update_who=".$HTTP_SESSION_VARS['user_id'].") [".mysql_error()."]");
return FALSE;
}
}
/**
Delete item and return boolean indicating success or failure.
This function does not check for any dependencies.
*/
function delete_item($item_id)
{
global $HTTP_SESSION_VARS;
$query ="DELETE FROM item WHERE id='".$item_id."'";
$delete = run_opendb_query($query);
if($delete && mysql_affected_rows() > 0)
{
opendb_log("Deleted item (item_id=$item_id, update_who=".$HTTP_SESSION_VARS['user_id'].")");
return TRUE;
}
else
{
opendb_log("Failed to delete item (item_id=$item_id, update_who=".$HTTP_SESSION_VARS['user_id'].") [".mysql_error()."]");
return FALSE;
}
}
/*
* Delete child item attributes, child items, item_attributes, item.
*
* Assumes instances have been deleted.
*/
function delete_item_cascaded($item_id)
{
global $HTTP_SESSION_VARS;
if(run_opendb_query("LOCK TABLES item WRITE, item_attribute WRITE, item_instance WRITE"))
{
$query = "SELECT id as item_id FROM item WHERE parent_id='".$item_id."'";
$results = run_opendb_query($query);
if($results)
{
while($item_r = mysql_fetch_array($results, MYSQL_ASSOC))
{
$child_deleted = FALSE;
if(delete_item_attributes($item_r['item_id']))
{
if(delete_item($item_r['item_id']))
{
$child_deleted = TRUE;
}
}
if(!$child_deleted)
{
mysql_free_result($results);
// Can't forget to unlock table.
run_opendb_query("UNLOCK TABLES");
opendb_log("Aborting cascade item delete - Child item(s) not deleted (item_id=$item_id, child_item_id=".$item_r['item_id'].", update_who=".$HTTP_SESSION_VARS['user_id'].")");
return FALSE;
}
}
mysql_free_result($results);
}//else no child items
if(delete_item_attributes($item_id))
{
if(delete_item($item_id))
{
// Can't forget to unlock table.
run_opendb_query("UNLOCK TABLES");
return TRUE;
}
else
{
// Can't forget to unlock table.
run_opendb_query("UNLOCK TABLES");
return FALSE;
}
}
else
{
// Can't forget to unlock table.
run_opendb_query("UNLOCK TABLES");
return FALSE;
}
}
else
{
opendb_log("Could not lock item, item_attribute, item_instance tables for write (update_who=".$HTTP_SESSION_VARS['user_id'].") [".mysql_error()."]");
return FALSE;
}
}
/**
* Used by all insert/update item_instance functions to make sure the data is valid. Will
* also update $status_comment / $borrow_duration and set them to a legal value for the
* specified $s_status_type
*/
function validate_item_instance_fields($s_status_type, &$status_comment, &$borrow_duration)
{
// At this point, a specific $s_status_type MUST be supplied.
if(strlen($s_status_type)>0)
{
$status_type_r = fetch_status_type_r($s_status_type);
}
if(is_not_empty_array($status_type_r))
{
// A $borrow_duration explicitly set to FALSE, is
// an indication that nothing should be done with it.
if($borrow_duration !== FALSE && $borrow_duration !== NULL)//if already null, no need to check again.
{
if($status_type_r['borrow_ind'] != 'Y' && $status_type_r['borrow_ind'] != 'N' && $status_type_r['borrow_ind'] != 'B')
$borrow_duration = NULL;
else
{
// Ensure we have a valid $borrow_duration
if(is_numeric($borrow_duration))//column cannot handle more than 999
{
if($borrow_duration > 999)
$borrow_duration = '999';
}
else
$borrow_duration = NULL;
}
}
// If no status comment allowed, then set to NULL
if($status_type_r['status_comment_ind'] != 'Y' && $status_type_r['status_comment_ind'] != 'H')
$status_comment = NULL;
else
$status_comment = addslashes(substr(replace_newlines(trim(strip_tags($status_comment))),0,255));
return TRUE;
}
else
{
return FALSE;
}
}
/**
This function is for the initial instance of the item.
*/
function insert_newitem_instance($item_id, $s_status_type, $status_comment, $borrow_duration, $owner_id)
{
return insert_item_instance(
$item_id,
1,
$s_status_type,
$status_comment,
$borrow_duration,
$owner_id);
}
/**
For subsequent item_instance inserts.
Does not support $s_status_type = 'W' specific functionality.
*/
function insert_item_instance($item_id, $instance_no, $s_status_type, $status_comment, $borrow_duration, $owner_id)
{
global $HTTP_SESSION_VARS;
if(validate_item_instance_fields($s_status_type, $status_comment, $borrow_duration))
{
$item_instance_locked = FALSE;
// No need to lock if new item, as no other item_instances will
// be assigned to it yet!
if(!is_numeric($instance_no))
{
if(run_opendb_query("LOCK TABLES item_instance WRITE"))
{
$item_instance_locked = TRUE;
// If not specified, work out the next one along.
$instance_no = fetch_max_instance_no($item_id);
if(is_numeric($instance_no))
{
// Add 1 to $instance_no
$instance_no = (int)$instance_no;
$instance_no++;
}
else // new item
{
$instance_no = 1;
}
}
else
{
opendb_log("Failed to lock item_instance table (update_who=".$HTTP_SESSION_VARS['user_id'].") [".mysql_error()."]");
return FALSE;
}
}
//Either the instance_no was specified to begin with, or the LOCK TABLES and fetch_max_instance_no call worked.
$query = "INSERT INTO item_instance(item_id, instance_no, owner_id, borrow_duration, s_status_type, status_comment)".
"VALUES ('$item_id','$instance_no','$owner_id',".(is_numeric($borrow_duration)?"'$borrow_duration'":"NULL").",UPPER('".$s_status_type."'),'$status_comment')";
$insert = run_opendb_query($query);
if ($insert && mysql_affected_rows() > 0)
{
// Can't forget to unlock table.
if($item_instance_locked)
{
run_opendb_query("UNLOCK TABLES");
}
opendb_log("Inserted item instance (item_id=$item_id, instance_no=$instance_no, update_who=".$HTTP_SESSION_VARS['user_id'].")");
return $instance_no;
}
else
{
// Can't forget to unlock table.
if($item_instance_locked)
{
run_opendb_query("UNLOCK TABLES");
}
opendb_log("Failed to insert item instance (item_id=$item_id, instance_no=$instance_no, update_who=".$HTTP_SESSION_VARS['user_id'].") [".mysql_error()."]");
return FALSE;
}
}
else //if(validate_item_instance_fields($s_status_type, $borrow_duration))
{
return FALSE;
}
}
/**
@param $borrow_duration If set to FALSE, no update will occur. If not numeric, will be
set to NULL otherwise.
@param $status_comment If set to FALSE, no update will occur. If not numeric, will be
set to NULL otherwise.
*/
function update_item_instance($item_id, $instance_no, $s_status_type, $status_comment, $borrow_duration)
{
global $HTTP_SESSION_VARS;
if(validate_item_instance_fields($s_status_type, $status_comment, $borrow_duration))
{
$query = "UPDATE item_instance SET ";
// If $borrow_duration explicitly set to FALSE, then no update should occur!
if($borrow_duration !== FALSE)
{
$query .= "borrow_duration = ".(is_numeric($borrow_duration)?"'$borrow_duration'":"NULL").", ";
}
if($status_comment!==FALSE)
$query .= "status_comment = '$status_comment', ";
$query .= "s_status_type = UPPER('".$s_status_type."') ".
"WHERE item_id = '$item_id' AND instance_no = '$instance_no'";
$update = run_opendb_query($query);
// We should not treat updates that were not actually updated because value did not change as failures.
$rows_affected = mysql_affected_rows();
if($update && $rows_affected !== -1)
{
if($rows_affected>0)
opendb_log("Updated item instance (item_id=$item_id, instance_no=$instance_no, update_who=".$HTTP_SESSION_VARS['user_id'].")");
return TRUE;
}
else
{
opendb_log("Failed to update item instance (item_id=$item_id, instance_no=$instance_no, update_who=".$HTTP_SESSION_VARS['user_id'].") [".mysql_error()."]");
return FALSE;
}
}
else //if(validate_item_instance_fields($s_status_type, $borrow_duration))
{
return FALSE;
}
}
/**
@param $borrow_duration If set to FALSE, no update will occur. If not numeric, will be
set to NULL otherwise.
@param $status_comment If set to FALSE, no update will occur. If not numeric, will be
set to NULL otherwise.
*/
function update_item_instance_owner($item_id, $instance_no, $old_owner_id, $owner_id)
{
global $HTTP_SESSION_VARS;
$query = "UPDATE item_instance SET owner_id = '$owner_id' "
."WHERE item_id = '$item_id' AND instance_no = '$instance_no'";
$update = run_opendb_query($query);
// We should not treat updates that were not actually updated because value did not change as failures.
$rows_affected = mysql_affected_rows();
if($update && $rows_affected !== -1)
{
if($rows_affected>0)
opendb_log("Updated item instance owner (item_id=$item_id, instance_no=$instance_no, old_owner_id=$old_owner_id, new_owner_id=$owner_id, update_who=".$HTTP_SESSION_VARS['user_id'].")");
return TRUE;
}
else
{
opendb_log("Failed to update item instance owner (item_id=$item_id, instance_no=$instance_no, old_owner_id=$old_owner_id, new_owner_id=$owner_id, update_who=".$HTTP_SESSION_VARS['user_id'].") [".mysql_error()."]");
return FALSE;
}
}
//
// Delete item and return boolean indicating success or failure.
//
function delete_item_instance($item_id, $instance_no)
{
global $HTTP_SESSION_VARS;
$query ="DELETE FROM item_instance WHERE item_id = '".$item_id."' AND instance_no = '$instance_no'";
$delete = run_opendb_query($query);
if(mysql_affected_rows() > 0)
{
opendb_log("Deleted item instance (item_id=$item_id, instance_no=$instance_no, update_who=".$HTTP_SESSION_VARS['user_id'].")");
return TRUE;
}
else
{
opendb_log("Failed to delete item instance (item_id=$item_id, instance_no=$instance_no, update_who=".$HTTP_SESSION_VARS['user_id'].") [".mysql_error()."]");
return FALSE;
}
}
?>
|