X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;f=lib%2Ffunctions.php;h=a132ca1145704e363f195fd00ded4896d4848a9e;hb=28d2c6d84af075263a89025b04df438cdd762658;hp=8db2720fbcc1758ff1133fca5b59ece7faf8b533;hpb=46a6490756496e873962e54db2ad1b68921cd3c8;p=readifood.git diff --git a/lib/functions.php b/lib/functions.php index 8db2720..a132ca1 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -257,8 +257,30 @@ 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->getStrongLink($order->getId()) . ": " . get_order_displayname($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(); @@ -295,6 +317,13 @@ return $q->findOneById($address->getAreaId()); } + function get_address_map_link($address) { + $postcode = trim($address->getPostcode()); + if ($postcode) { + return " " . get_small_link("Map", "http://maps.google.co.uk/maps?q=" . urlencode($postcode)); + } + } + function get_contact_address($contact) { $q = new AddressQuery; return $q->findOneById($contact->getAddressId()); @@ -485,6 +514,52 @@ echo "Day: "; } + function validate_postcode($postcode, &$outward = null, &$inward = null) { + /* + Valid postcode formats (BS7666): + + AN NLL + ABN NLL + ANN NLL + ABNN NLL + ABND NLL + ANC NLL + + Where N is a number; A is a letter not including Q, V, X; + B is a letter not including I, J, Z; C is a letter from the set + ABCDEFGHJKSTUW; D is a letter from the set ABEHMNPRVWXY; + L is a letter from the set ABDEFGHJLNPQRSTUWXYZ. + + The postcode GIR 0AA is also valid. + */ + $outward = $inward = null; + + /* Treat blank as valid for convenience. */ + $postcode = trim($postcode); + if (! $postcode) return true; + + $A = '[ABCDEFGHIJKLMNOPRSTUWYZ]'; + $B = '[ABCDEFGHKLMNOPQRSTUVWXY]'; + $C = '[ABCDEFGHJKSTUW]'; + $D = '[ABEHMNPRVWXY]'; + $L = '[ABDEFGHJLNPQRSTUWXYZ]'; + $N = '\d'; + if (! preg_match("/^($A$N|$A$B$N|$A$N$N|$A$B$N$N|$A$B$N$D|$A$N$C|GIR)\s*($N$L$L)$/", $postcode, $m)) return false; + if ($m[1] == "GIR" && $m[2] != "0AA") return false; + list($ignored, $outward, $inward) = $m; + return true; + } + + function format_postcode($postcode, $complain = true) { + if (validate_postcode($postcode, $outward, $inward)) { + return "$outward $inward"; + } + if ($complain) { + echo "

Invalid postcode!

\n"; + return null; + } + } + function get_small_link() { /* Args are , , [ ...] */ $args = func_get_args();