2008-12-15 23:08:18 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.");
|
|
|
|
|
/**
|
|
|
|
|
* Gallery - a web based photo album viewer and editor
|
2013-01-21 01:22:01 -05:00
|
|
|
* Copyright (C) 2000-2013 Bharat Mediratta
|
2008-12-15 23:08:18 +00:00
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
2008-12-23 00:13:22 +00:00
|
|
|
class Admin_Watermarks_Controller extends Admin_Controller {
|
2008-12-23 01:29:17 +00:00
|
|
|
public function index() {
|
2008-12-26 01:32:12 +00:00
|
|
|
$name = module::get_var("watermark", "name");
|
2008-12-16 17:30:18 +00:00
|
|
|
|
2008-12-24 04:22:22 +00:00
|
|
|
$view = new Admin_View("admin.html");
|
2010-04-30 00:08:37 -06:00
|
|
|
$view->page_title = t("Watermarks");
|
2008-12-24 04:22:22 +00:00
|
|
|
$view->content = new View("admin_watermarks.html");
|
2008-12-26 01:32:12 +00:00
|
|
|
if ($name) {
|
2008-12-26 04:34:20 +00:00
|
|
|
$view->content->name = module::get_var("watermark", "name");
|
2008-12-26 01:32:12 +00:00
|
|
|
$view->content->url = url::file("var/modules/watermark/$name");
|
2008-12-26 04:34:20 +00:00
|
|
|
$view->content->width = module::get_var("watermark", "width");
|
|
|
|
|
$view->content->height = module::get_var("watermark", "height");
|
|
|
|
|
$view->content->position = module::get_var("watermark", "position");
|
2008-12-26 01:32:12 +00:00
|
|
|
}
|
2008-12-24 04:22:22 +00:00
|
|
|
print $view;
|
2008-12-16 17:30:18 +00:00
|
|
|
}
|
|
|
|
|
|
2008-12-26 01:32:12 +00:00
|
|
|
public function form_edit() {
|
2010-07-31 21:16:17 -07:00
|
|
|
print watermark::get_edit_form();
|
2008-12-25 22:31:20 +00:00
|
|
|
}
|
|
|
|
|
|
2008-12-26 01:32:12 +00:00
|
|
|
public function edit() {
|
2009-06-01 22:40:22 -07:00
|
|
|
access::verify_csrf();
|
|
|
|
|
|
2008-12-26 01:32:12 +00:00
|
|
|
$form = watermark::get_edit_form();
|
|
|
|
|
if ($form->validate()) {
|
2008-12-29 22:30:19 +00:00
|
|
|
module::set_var("watermark", "position", $form->edit_watermark->position->value);
|
|
|
|
|
module::set_var("watermark", "transparency", $form->edit_watermark->transparency->value);
|
2008-12-29 20:17:24 +00:00
|
|
|
$this->_update_graphics_rules();
|
2008-12-26 04:52:18 +00:00
|
|
|
|
2009-01-08 17:13:06 +00:00
|
|
|
log::success("watermark", t("Watermark changed"));
|
|
|
|
|
message::success(t("Watermark changed"));
|
2010-07-21 21:30:13 -07:00
|
|
|
json::reply(
|
2008-12-26 01:32:12 +00:00
|
|
|
array("result" => "success",
|
|
|
|
|
"location" => url::site("admin/watermarks")));
|
|
|
|
|
} else {
|
2010-07-31 21:16:17 -07:00
|
|
|
json::reply(array("result" => "error", "html" => (string)$form));
|
2008-12-26 01:32:12 +00:00
|
|
|
}
|
2013-02-27 09:49:05 +01:00
|
|
|
// Override the application/json mime type for iframe compatibility. See ticket #2022.
|
|
|
|
|
header("Content-Type: text/plain; charset=" . Kohana::CHARSET);
|
2008-12-26 01:32:12 +00:00
|
|
|
}
|
2008-12-15 23:08:18 +00:00
|
|
|
|
2008-12-26 01:32:12 +00:00
|
|
|
public function form_delete() {
|
2010-07-31 21:16:17 -07:00
|
|
|
print watermark::get_delete_form();
|
2008-12-26 01:32:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function delete() {
|
2009-06-01 22:40:22 -07:00
|
|
|
access::verify_csrf();
|
|
|
|
|
|
2008-12-26 01:32:12 +00:00
|
|
|
$form = watermark::get_delete_form();
|
|
|
|
|
if ($form->validate()) {
|
2013-01-30 18:45:49 -05:00
|
|
|
if ($name = basename(module::get_var("watermark", "name"))) {
|
2013-02-17 23:19:35 +01:00
|
|
|
system::delete_later(VARPATH . "modules/watermark/$name");
|
2008-12-15 23:08:18 +00:00
|
|
|
|
2008-12-26 01:32:12 +00:00
|
|
|
module::clear_var("watermark", "name");
|
|
|
|
|
module::clear_var("watermark", "width");
|
|
|
|
|
module::clear_var("watermark", "height");
|
|
|
|
|
module::clear_var("watermark", "mime_type");
|
|
|
|
|
module::clear_var("watermark", "position");
|
2008-12-26 05:43:06 +00:00
|
|
|
$this->_update_graphics_rules();
|
2008-12-15 23:08:18 +00:00
|
|
|
|
2009-01-08 17:13:06 +00:00
|
|
|
log::success("watermark", t("Watermark deleted"));
|
|
|
|
|
message::success(t("Watermark deleted"));
|
2008-12-26 01:32:12 +00:00
|
|
|
}
|
2010-07-21 21:30:13 -07:00
|
|
|
json::reply(array("result" => "success", "location" => url::site("admin/watermarks")));
|
2008-12-26 01:32:12 +00:00
|
|
|
} else {
|
2010-07-31 21:16:17 -07:00
|
|
|
json::reply(array("result" => "error", "html" => (string)$form));
|
2008-12-26 01:32:12 +00:00
|
|
|
}
|
2013-02-27 09:49:05 +01:00
|
|
|
// Override the application/json mime type for iframe compatibility. See ticket #2022.
|
|
|
|
|
header("Content-Type: text/plain; charset=" . Kohana::CHARSET);
|
2008-12-26 01:32:12 +00:00
|
|
|
}
|
2008-12-15 23:08:18 +00:00
|
|
|
|
2008-12-26 04:34:20 +00:00
|
|
|
public function form_add() {
|
2010-07-31 21:16:17 -07:00
|
|
|
print watermark::get_add_form();
|
2008-12-26 04:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function add() {
|
2009-06-01 22:40:22 -07:00
|
|
|
access::verify_csrf();
|
|
|
|
|
|
2008-12-26 01:32:12 +00:00
|
|
|
$form = watermark::get_add_form();
|
2013-01-29 18:48:39 +01:00
|
|
|
// For TEST_MODE, we want to simulate a file upload. Because this is not a true upload, Forge's
|
|
|
|
|
// validation logic will correctly reject it. So, we skip validation when we're running tests.
|
|
|
|
|
if (TEST_MODE || $form->validate()) {
|
2008-12-26 01:32:12 +00:00
|
|
|
$file = $_POST["file"];
|
|
|
|
|
// Forge prefixes files with "uploadfile-xxxxxxx" for uniqueness
|
2013-02-12 00:37:33 +01:00
|
|
|
$name = preg_replace("/uploadfile-[^-]+-(.*)/", '$1', basename($file));
|
2008-12-15 23:08:18 +00:00
|
|
|
|
2013-02-08 13:51:41 +01:00
|
|
|
try {
|
|
|
|
|
list ($width, $height, $mime_type, $extension) = photo::get_file_metadata($file);
|
2013-02-12 00:37:33 +01:00
|
|
|
// Sanitize filename, which ensures a valid extension. This renaming prevents the issues
|
2013-01-26 00:04:55 +01:00
|
|
|
// addressed in ticket #1855, where an image that looked valid (header said jpg) with a
|
|
|
|
|
// php extension was previously accepted without changing its extension.
|
2013-02-12 00:37:33 +01:00
|
|
|
$name = legal_file::sanitize_filename($name, $extension, "photo");
|
2013-02-08 13:51:41 +01:00
|
|
|
} catch (Exception $e) {
|
|
|
|
|
message::error(t("Invalid or unidentifiable image file"));
|
2013-02-17 23:19:35 +01:00
|
|
|
system::delete_later($file);
|
2013-02-08 13:51:41 +01:00
|
|
|
return;
|
2012-05-11 14:34:27 -07:00
|
|
|
}
|
|
|
|
|
|
2008-12-26 01:32:12 +00:00
|
|
|
rename($file, VARPATH . "modules/watermark/$name");
|
|
|
|
|
module::set_var("watermark", "name", $name);
|
2013-01-26 00:04:55 +01:00
|
|
|
module::set_var("watermark", "width", $width);
|
|
|
|
|
module::set_var("watermark", "height", $height);
|
|
|
|
|
module::set_var("watermark", "mime_type", $mime_type);
|
2008-12-29 22:30:19 +00:00
|
|
|
module::set_var("watermark", "position", $form->add_watermark->position->value);
|
|
|
|
|
module::set_var("watermark", "transparency", $form->add_watermark->transparency->value);
|
2008-12-29 20:17:24 +00:00
|
|
|
$this->_update_graphics_rules();
|
2013-02-17 23:19:35 +01:00
|
|
|
system::delete_later($file);
|
2008-12-15 23:08:18 +00:00
|
|
|
|
2009-01-08 17:13:06 +00:00
|
|
|
message::success(t("Watermark saved"));
|
|
|
|
|
log::success("watermark", t("Watermark saved"));
|
2010-07-21 21:30:13 -07:00
|
|
|
json::reply(array("result" => "success", "location" => url::site("admin/watermarks")));
|
2008-12-26 01:32:12 +00:00
|
|
|
} else {
|
2013-02-27 09:49:05 +01:00
|
|
|
json::reply(array("result" => "error", "html" => (string)$form));
|
2008-12-15 23:08:18 +00:00
|
|
|
}
|
2013-02-27 09:49:05 +01:00
|
|
|
// Override the application/json mime type for iframe compatibility. See ticket #2022.
|
|
|
|
|
header("Content-Type: text/plain; charset=" . Kohana::CHARSET);
|
2008-12-15 23:08:18 +00:00
|
|
|
}
|
2008-12-26 05:43:06 +00:00
|
|
|
|
2008-12-29 20:17:24 +00:00
|
|
|
private function _update_graphics_rules() {
|
2008-12-26 05:43:06 +00:00
|
|
|
graphics::remove_rules("watermark");
|
2008-12-29 20:17:24 +00:00
|
|
|
if ($name = module::get_var("watermark", "name")) {
|
2008-12-26 05:44:02 +00:00
|
|
|
foreach (array("thumb", "resize") as $target) {
|
|
|
|
|
graphics::add_rule(
|
2009-09-27 15:24:51 -07:00
|
|
|
"watermark", $target, "gallery_graphics::composite",
|
2008-12-29 20:17:24 +00:00
|
|
|
array("file" => VARPATH . "modules/watermark/$name",
|
|
|
|
|
"width" => module::get_var("watermark", "width"),
|
|
|
|
|
"height" => module::get_var("watermark", "height"),
|
2008-12-29 22:30:19 +00:00
|
|
|
"position" => module::get_var("watermark", "position"),
|
2009-05-13 00:09:43 +00:00
|
|
|
"transparency" => 101 - module::get_var("watermark", "transparency")),
|
2008-12-26 05:44:02 +00:00
|
|
|
1000);
|
|
|
|
|
}
|
2008-12-26 05:43:06 +00:00
|
|
|
}
|
|
|
|
|
}
|
2008-12-15 23:08:18 +00:00
|
|
|
}
|