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
|
<?php
/*
* Any URL that you want to use can either be accessed directly
* in the case of a standalone Gallery, or indirectly if we're
* mbedded in another app such as Nuke. makeGalleryUrl() will
* always create the appropriate URL for you.
*
* Usage: makeGalleryUrl(target, args [optional])
*
* target is a file with a relative path to the gallery base
* (eg, "album_permissions.php")
*
* args are extra key/value pairs used to send data
* (eg, array("index" => 1, "set_albumName" => "foo"))
*/
function makeGalleryUrl($target, $args=array()) {
global $gallery;
global $GALLERY_EMBEDDED_INSIDE;
global $GALLERY_EMBEDDED_INSIDE_TYPE;
global $GALLERY_MODULENAME;
/* Needed for phpBB2 */
global $userdata;
global $board_config;
/* Needed for Mambo */
global $MOS_GALLERY_PARAMS;
/* Needed for CPGNuke */
global $mainindex;
if( isset($GALLERY_EMBEDDED_INSIDE)) {
switch ($GALLERY_EMBEDDED_INSIDE_TYPE) {
case 'phpBB2':
$cookiename = $board_config['cookie_name'];
if(!isset($_COOKIE[$cookiename . '_sid'])) {
// no cookie so we need to pass the session ID manually.
$args["sid"] = $userdata['session_id'];
if(!isset($args["set_albumName"])) {
// This var is only passed some of the time and but is required so PUT IT IN when needed.
$args["set_albumName"] = $gallery->session->albumName;
}
}
case 'phpnuke':
case 'postnuke':
case 'nsnnuke':
$args["op"] = "modload";
$args["name"] = "$GALLERY_MODULENAME";
$args["file"] = "index";
/*
* include *must* be last so that the JavaScript code in
* view_album.php can append a filename to the resulting URL.
*/
$args["include"] = $target;
$target = "modules.php";
break;
case 'mambo':
$args['option'] = $GALLERY_MODULENAME;
$args['Itemid'] = $MOS_GALLERY_PARAMS['itemid'];
$args['include'] = $target;
/* We cant/wantTo load the complete Mambo Environment into the pop up
** E.g. the Upload Framwork does not work then
** So we need to put necessary infos of Mambo into session.
*/
if ((isset($args['type']) && $args['type'] == 'popup') ||
(!empty($args['gallery_popup']))) {
$target= $gallery->app->photoAlbumURL . "/index.php";
} else {
if (!empty($gallery->session->mambo->mosRoot)) {
$target = $gallery->session->mambo->mosRoot . "index.php";
} else {
$target = 'index.php';
}
}
break;
case 'cpgnuke':
$args["name"] = "$GALLERY_MODULENAME";
$args["file"] = "index";
/*
* include *must* be last so that the JavaScript code in
* view_album.php can append a filename to the resulting URL.
*/
$args["include"] = $target;
$target = $mainindex;
break;
// Maybe something went wrong, then we assume we are like standalone.
default:
$target = $gallery->app->photoAlbumURL . "/" . $target;
}
}
else {
$prefix = isset($gallery->app->photoAlbumURL) ? $gallery->app->photoAlbumURL . "/" : "";
$target = $prefix . $target;
}
$url = $target;
if ($args) {
$i = 0;
foreach ($args as $key => $value) {
if ($i++) {
$url .= "&"; // should replace with & for validatation
} else {
$url .= "?";
}
if (! is_array($value)) {
$url .= "$key=$value";
} else {
$j = 0;
foreach ($value as $subkey => $subvalue) {
if ($j++) {
$url .= "&"; // should replace with & for validatation
}
$url .= $key .'[' . $subkey . ']=' . $subvalue;
}
}
}
}
return htmlspecialchars($url);
}
function makeGalleryHeaderUrl($target, $args=array()) {
$url = makeGalleryUrl($target, $args);
return unhtmlentities($url);
}
/*
* makeAlbumUrl is a wrapper around makeGalleryUrl. You tell it what
* album (and optional photo id) and it does the rest. You can also
* specify additional key/value pairs in the optional third argument.
*/
function makeAlbumUrl($albumName="", $photoId="", $args=array()) {
global $GALLERY_EMBEDDED_INSIDE, $GALLERY_EMBEDDED_INSIDE_TYPE;
global $gallery;
// We can use GeekLog with rewrite because Gallery is embedded in a different way.
if ( $gallery->app->feature["rewrite"] == 1 &&
(! $GALLERY_EMBEDDED_INSIDE || $GALLERY_EMBEDDED_INSIDE_TYPE == 'GeekLog')) {
if ($albumName) {
$target = urlencode ($albumName);
// Can't have photo without album
if ($photoId) {
$target .= "/".urlencode ($photoId);
}
} else {
$target = "albums.php";
}
} else {
if ($albumName) {
$args["set_albumName"] = urlencode ($albumName);
if ($photoId) {
$target = "view_photo.php";
$args["id"] = urlencode ($photoId);
} else {
$target = "view_album.php";
}
} else {
$target = "albums.php";
}
}
return makeGalleryUrl($target, $args);
}
function makeAlbumHeaderUrl($albumName="", $photoId="", $args=array()) {
$url = makeAlbumUrl($albumName, $photoId, $args);
return unhtmlentities($url);
}
function addUrlArg($url, $arg) {
if (strchr($url, "?")) {
return "$url&$arg"; // should replace with & for validatation
} else {
return "$url?$arg";
}
}
?>
|