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
|
<?php
/*
* Gallery - a web based photo album viewer and editor
* Copyright (C) 2000-2008 Bharat Mediratta
*
* 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*
* $Id: do_command.php 17797 2008-08-05 21:59:33Z JensT $
*/
require_once(dirname(__FILE__) . '/init.php');
list($index, $cmd, $return, $parentName, $rebuild_type, $albumName) =
getRequestVar(array('index', 'cmd', 'return', 'parentName', 'rebuild_type', 'albumName'));
$backUrl = '';
/*
* Test for relative URL, which we know to be local. If URL contains ://
* assume that it's remote and test it against our local full URLs
* to ensure security. Don't check for http:// or https:// because
* for all we know, someone put their album URL on a gopher server...
*/
$gUrl = makeGalleryUrl();
$gUrlStripped = substr($gUrl, 0, strrpos($gUrl, '/'));
if (!empty($return) &&
strncmp($return, $gUrlStripped, strlen($gUrlStripped)) != 0 &&
strncmp($return, $gallery->app->photoAlbumURL, strlen($gallery->app->photoAlbumURL)) != 0 &&
strncmp($return, $gallery->app->albumDirURL, strlen($gallery->app->albumDirURL)) != 0 &&
! isValidUrl($return))
{
die(gTranslate('core', 'Attempted security breach.'));
}
if(isset($index) && !isValidGalleryInteger($index)) {
die(gTranslate('core', 'Attempted security breach.'));
}
/* This is used for deleting comments from stats.php */
if (!empty($albumName)) {
$gallery->album = new Album();
$gallery->album->load($albumName);
}
if (empty($rebuild_type)) {
$title = gTranslate('core', "Rebuilding thumbnails");
}
else {
$title = gTranslate('core', "Performing operation...");
}
switch ($cmd) {
case 'rebuild_highlights':
if($gallery->user->isAdmin()) {
$albumDB = new AlbumDB(true);
$albumList = $albumDB->albumList;
$i = 0;
foreach($albumList as $nr => $album) {
if($album->isRoot()) {
$i++;
echo "\n<br><b>". sprintf (gTranslate('core', "Rebuilding highlight %s"), $i) . '</b>';
$album->setHighlight($album->getHighlight());
$album->save();
}
}
}
dismissAndReload();
break;
case 'hide':
if ($gallery->user->canWriteToAlbum($gallery->album) ||
$gallery->album->isItemOwner($gallery->user->getUid(), $index))
{
$gallery->album->hidePhoto($index);
$gallery->album->save();
}
//-- this is expected to be loaded in a popup, so dismiss ---
dismissAndReload();
break;
case 'show':
if(isset($index)) {
if ($gallery->user->canWriteToAlbum($gallery->album) ||
$gallery->album->isItemOwner($gallery->user->getUid(), $index))
{
$gallery->album->unhidePhoto($index);
$gallery->album->save();
}
}
//-- this is expected to be loaded in a popup, so dismiss ---
dismissAndReload();
break;
case 'highlight':
if(isset($index)) {
if ($gallery->user->canWriteToAlbum($gallery->album)) {
$gallery->album->setHighlight($index);
$gallery->album->save(array(i18n("Changed Highlight")));
}
}
//-- this is expected to be loaded in a popup, so dismiss ---
dismissAndReload();
break;
case 'new-album':
if ($gallery->user->canCreateAlbums() ||
$gallery->user->canCreateSubAlbum($gallery->album))
{
if (!isset($parentName)) {
$parentName = null;
}
createNewAlbum($parentName);
if(!headers_sent()) {
header("Location: " . makeAlbumHeaderUrl($gallery->session->albumName));
}
else {
$backUrl = makeAlbumUrl($gallery->session->albumName);
}
}
else {
header("Location: " . makeAlbumHeaderUrl());
}
break;
case 'reset-album-clicks':
if ($gallery->user->canWriteToAlbum($gallery->album)) {
$gallery->album->resetAllClicks();
// this is a popup do dismiss and reload!
dismissAndReload();
}
else {
header("Location: " . makeAlbumHeaderUrl());
}
break;
case 'delete-comment':
$comment_index = getRequestVar('comment_index');
if ($gallery->user->canWriteToAlbum($gallery->album) ||
!isValidGalleryInteger($comment_index) && isset($index))
{
$comment = $gallery->album->getComment($index, $comment_index);
$gallery->album->deleteComment($index, $comment_index);
$gallery->album->save(array(i18n("Comment \"%s\" by %s deleted from %s"),
$comment->getCommentText(),
$comment->getName(),
makeAlbumURL($gallery->album->fields["name"],
$gallery->album->getPhotoId($index))));
if (!empty($return)) {
dismissAndLoad($return);
}
else {
dismissAndReload();
}
}
else {
header("Location: " . makeAlbumHeaderUrl());
}
break;
default:
if (!empty($return)) {
// No command; Can be used to set a session variable
header("Location: $return");
}
break;
}
?>
<div align="center">
<form>
<?php if (!empty($backUrl)) :?>
<input type="button" value="<?php echo gTranslate('core', "Close window") ?>" onclick="document.location='<?php echo $backUrl; ?>'" class="g-button">
<?php else : ?>
<input type="button" value="<?php echo gTranslate('core', "Cancel") ?>" onclick="parent.close()" class="g-button">
<?php endif ?>
</form>
</div>
</div>
</body>
</html>
|