X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;f=lib%2Ffunctions.php;h=34b23c790779244f0c1af6e1ad4da18dfe43317d;hb=6eac4c1286d9beeb7d1f1ef9cd26686511da533e;hp=f9da7135af116ea51ddbe2fd9f2c7b6457e336dd;hpb=637bc9bc7d65b625a322385b5700bfc169f877c0;p=readifood.git diff --git a/lib/functions.php b/lib/functions.php index f9da713..34b23c7 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -21,6 +21,52 @@ return array($name, $id, $args); } + function pagination() { + $first_page = 1; + $per_page = $GLOBALS['default_page_size']; + + parse_str($_SERVER['QUERY_STRING'], $params); + if (array_key_exists('page', $params)) if (is_numeric($params['page'])) $first_page = $params['page']; + if (array_key_exists('size', $params)) if (is_numeric($params['size'])) $per_page = $params['size']; + + return array($first_page, $per_page); + } + + function page_link($alt, $n, $cur, $max, $size) { + $links = array(); + if ($n < 1 || $n == $cur || $n > $max) return $alt; + $params = array('page' => $n); + if ($size != $GLOBALS['default_page_size']) $params['size'] = $size; + $url = http_build_query($params); + return "$alt "; + } + + function show_pagination($pager, $n = 5) { + if (! $pager->haveToPaginate()) return; + + list($first_page, $per_page) = pagination(); + + $pages = ceil($pager->getNbResults() / $per_page); + + /* Highlight the fact we skipped some pages. */ + $linked_pages = $pager->getLinks($n); + $first_link = $linked_pages[0]; + $last_link = end($linked_pages); + + $links = array(); + $links[] = page_link('First', 1, $first_page, $pages, $per_page); + $links[] = page_link('Previous', $first_page - 1, $first_page, $pages, $per_page); + if ($first_link > 1) $links[] = page_link('...', $first_page, $pages, $per_page); + foreach ($linked_pages as $link) $links[] = page_link($link, $link, $first_page, $pages, $per_page); + if ($last_link < $pages) $links[] = page_link('...', $first_page, $pages, $per_page); + $links[] = page_link('Next', $first_page + 1, $first_page, $pages, $per_page); + $links[] = page_link('Last', $pages, $first_page, $pages, $per_page); + + echo "

Page: "; + echo implode(' / ', $links); + echo "

\n"; + } + function get_city_by_name($name, $postcode_area = null, $verbose = true) { $q = new CityQuery; @@ -175,6 +221,37 @@ return $order; } + function get_order_ids_by_state($state_mask) { + $order_ids = array(); + $dbh = Propel::getConnection(); + $sth = $dbh->prepare("select * from OrderState o where updated=(select max(updated) from OrderState where order_id=o.order_id) and state & $state_mask"); + $sth->execute(); + $order_states = OrderStatePeer::populateObjects($sth); + foreach ($order_states as $order_state) $order_ids[] = $order_state->getOrderId(); + return $order_ids; + } + + function get_beneficiary_orders($contact, $state_mask = null) { + $q = new OrderQuery; + $q->filterByBeneficiaryId($contact->getId()); + if ($state_mask) $q->filterById(get_order_ids_by_state($state_mask)); + return $q->orderByDate()->find(); + } + + function get_requester_orders($contact, $state_mask = null) { + $q = new OrderQuery; + $q->filterByRequesterId($contact->getId()); + if ($state_mask) $q->filterById(get_order_ids_by_state($state_mask)); + return $q->orderByDate()->find(); + } + + function get_contact_orders($contact, $state_mask = null) { + $q = new OrderQuery; + $q->filterByBeneficiaryId($contact->getId())->_or()->filterByRequesterId($contact->getId()); + if ($state_mask) $q->filterById(get_order_ids_by_state($state_mask)); + return $q->orderByDate()->find(); + } + function get_user_by_contact_id($id, $verbose = true) { $q = new UserQuery; $user = $q->findOneByContactId($id); @@ -199,8 +276,86 @@ return sprintf("%0.2fkg on %s", $donation->getQuantity() / 1000, $donation->getDate()); } + function get_order_parcel_string($order) { + global $parcel_sizes, $parcel_contents; + + $parcel_size = null; + for ($i = 0 ; $i < count($parcel_sizes); $i++) { + if ($order->getParcel() & (1 << $i)) { + $parcel_size = $parcel_sizes[$i]; + break; + } + } + + $selected = array(); + for ($i = count($parcel_sizes); $i < count($parcel_contents); $i++) { + if ($order->getParcel() & (1 << $i)) $selected[] = $parcel_contents[$i]; + } + + $ret = implode(": ", array($parcel_size, implode(", ", $selected))); + $ret = preg_replace('/^: /', '', $ret); + $ret = preg_replace('/: $/', '', $ret); + + return $ret; + } + function get_order_displayname($order) { - return sprintf("%0.2fkg on %s", $order->getQuantity() / 1000, $order->getDate()); + return sprintf("%s on %s", get_order_parcel_string($order), $order->getDate()); + } + + function get_order_state_string($order_state = null) { + global $states; + + if (is_null($order_state)) return null; + + for ($i = 0; $i < count($states); $i++) { + if ($order_state->getState() & (1 << $i)) { + return $states[$i]; + } + } + + return "unknown"; + } + + function get_order_state($order) { + $q = new OrderStateQuery(); + return $q->filterByOrderId($order->getId())->orderByUpdated('desc')->findOne(); + } + + function get_order_summary($order) { + $ret = "Order "; + $order_state = get_order_state($order); + if ($order_state) $ret = "" . ucfirst(get_order_state_string($order_state)) . " order "; + $ret .= $order->getStrongLink($order->getId()) . ": " . get_order_displayname($order); + + if (check_admin(1)) $ret .= " " . $order->getDeleteLink(); + + /* XXX: Should pull from query. */ + $q = new ContactQuery; + $contact = $q->findOneById($order->getRequesterId()); + if ($contact) { + $ret .= " referred by " . $contact->getLink(); + $area = get_contact_area($contact); + if ($area) $ret .= " in " . $area->getLink(); + } + + $q = new ContactQuery; + $contact = $q->findOneById($order->getBeneficiaryId()); + if ($contact) { + $ret .= " for " . $contact->getLink(); + $area = get_contact_area($contact); + if ($area) $ret .= " in " . $area->getLink(); + } + + if ($order->getHubId()) { + $q = new HubQuery; + $hub = $q->findOneById($order->getHubId()); + if ($hub) $ret .= " to hub " . $hub->getLink(); + $area = get_hub_area($hub); + if ($area) $ret .= " in " . $area->getLink(); + } + + return $ret; } function get_address_area($address) { @@ -208,6 +363,38 @@ return $q->findOneById($address->getAreaId()); } + function get_address_map_link($address) { + $postcode = trim($address->getPostcode()); + if ($postcode) { + # mrt=loc specifies a location search. + $map = "maps.google.co.uk/maps?q=" . urlencode($postcode) . "&mrt=loc"; + $url = "http://$map"; + # output=embed allows display in an iframe. + # iwloc=near hides the popup window for the embedded view. + $embed = $GLOBALS['http'] . "://$map&output=embed&iwloc=near"; + $html = " "; + $html .= get_small_link_with_id("map", "Map", $url); + $html .= ""; + return $html; + } + } + function get_contact_address($contact) { $q = new AddressQuery; return $q->findOneById($contact->getAddressId()); @@ -227,6 +414,11 @@ return get_area_city($area); } + /* Parcel strings are the same so this can work. */ + function get_contact_parcel_string($contact) { + return get_order_parcel_string($contact); + } + /* Hub and Contact are similar enough that this can work. */ function get_hub_address($hub) { return get_contact_address($hub); @@ -307,9 +499,9 @@ function show_role_form($role, $roles) { for ($i = 0; $i < count($roles); $i++) { - echo " $roles[$i]\n"; + echo ">\n"; } } @@ -365,28 +557,78 @@ } function show_date_form($name, $date = null) { - echo "\n"; - return; - if (! isset($date)) $date = date('Y-m-d'); - list($y, $m, $d) = iso8601_to_ymd($date); + } + + function get_small_link_with_id() { + /* Args are , , , [ ...] */ + $args = func_get_args(); + $id = array_shift($args); + if (isset($id)) $id = " id=\"$id\""; + $html = htmlspecialchars(array_shift($args)); + $url = array_shift($args); + return vsprintf("$html\n", $args); + } + + function get_small_link() { + /* Args are , , [ ...] */ + $args = func_get_args(); + array_unshift($args, null); + return call_user_func_array("get_small_link_with_id", $args); + } - echo "Year: "; - echo "Month: "; - echo "Day: "; + function small_link() { + echo call_user_func_array("get_small_link", func_get_args()); } - include_once("$lib_root/admin.php"); - include_once("$lib_root/forms.php"); + include_once(join(DIRECTORY_SEPARATOR, array($lib_root, "admin.php"))); + include_once(join(DIRECTORY_SEPARATOR, array($lib_root, "forms.php"))); ?>