mirror of
https://github.com/Terranom674/Piwigo_Bratonien_Tools.git
synced 2026-09-19 12:54:31 +00:00
Merge pull request #35 from Terranom674/fix/09713-watermark-album-overview
0.9.7.13: Wasserzeichen in Albumübersicht nach Albumregel
This commit is contained in:
@@ -27,6 +27,72 @@ function bratonien_tools_runtime_category_id()
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function bratonien_tools_watermark_album_cover_category($src_image, $category_id=null)
|
||||||
|
{
|
||||||
|
static $map = null;
|
||||||
|
|
||||||
|
if ($map === null)
|
||||||
|
{
|
||||||
|
$map = new SplObjectStorage();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!is_object($src_image))
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($category_id !== null)
|
||||||
|
{
|
||||||
|
$category_id = (int)$category_id;
|
||||||
|
if ($category_id > 0)
|
||||||
|
{
|
||||||
|
$map[$src_image] = $category_id;
|
||||||
|
}
|
||||||
|
return $category_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $map->contains($src_image) ? (int)$map[$src_image] : 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
function bratonien_tools_watermark_prepare_album_overview($thumbnails)
|
||||||
|
{
|
||||||
|
if (!is_array($thumbnails))
|
||||||
|
{
|
||||||
|
return $thumbnails;
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($thumbnails as &$thumbnail)
|
||||||
|
{
|
||||||
|
$category_id = (int)($thumbnail['id'] ?? $thumbnail['ID'] ?? 0);
|
||||||
|
if ($category_id < 1 || empty($thumbnail['representative']['src_image']) || !is_object($thumbnail['representative']['src_image']))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ein Repraesentantenbild kann fuer mehrere Alben verwendet werden. Piwigo
|
||||||
|
// reicht in der Albumuebersicht aber nur das SrcImage an get_derivative_url
|
||||||
|
// weiter. Deshalb bekommt jedes Album-Cover eine eigene SrcImage-Instanz,
|
||||||
|
// damit seine konkrete Albumregel erhalten bleibt.
|
||||||
|
$src_image = clone $thumbnail['representative']['src_image'];
|
||||||
|
$thumbnail['representative']['src_image'] = $src_image;
|
||||||
|
bratonien_tools_watermark_album_cover_category($src_image, $category_id);
|
||||||
|
}
|
||||||
|
unset($thumbnail);
|
||||||
|
|
||||||
|
return $thumbnails;
|
||||||
|
}
|
||||||
|
|
||||||
|
function bratonien_tools_runtime_derivative_category_id($src_image)
|
||||||
|
{
|
||||||
|
$category_id = bratonien_tools_runtime_category_id();
|
||||||
|
if ($category_id > 0)
|
||||||
|
{
|
||||||
|
return $category_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
return bratonien_tools_watermark_album_cover_category($src_image);
|
||||||
|
}
|
||||||
|
|
||||||
function bratonien_tools_runtime_effective_rule($category_id)
|
function bratonien_tools_runtime_effective_rule($category_id)
|
||||||
{
|
{
|
||||||
static $categories = null;
|
static $categories = null;
|
||||||
@@ -230,7 +296,7 @@ function bratonien_tools_filter_derivative_url($url, $params, $src_image, $rel_u
|
|||||||
return $url;
|
return $url;
|
||||||
}
|
}
|
||||||
|
|
||||||
$rule = bratonien_tools_runtime_effective_rule(bratonien_tools_runtime_category_id());
|
$rule = bratonien_tools_runtime_effective_rule(bratonien_tools_runtime_derivative_category_id($src_image));
|
||||||
if ($rule['mode'] !== 'profile' || empty($rule['profile_id']))
|
if ($rule['mode'] !== 'profile' || empty($rule['profile_id']))
|
||||||
{
|
{
|
||||||
return $url;
|
return $url;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
Plugin Name: Bratonien Tools
|
Plugin Name: Bratonien Tools
|
||||||
Version: 0.9.7.12
|
Version: 0.9.7.13
|
||||||
Description: Erweiterbare Administrationswerkzeuge fuer die Bratonien-Piwigo-Installation.
|
Description: Erweiterbare Administrationswerkzeuge fuer die Bratonien-Piwigo-Installation.
|
||||||
Plugin URI: https://github.com/Terranom674/Piwigo_Bratonien_Tools
|
Plugin URI: https://github.com/Terranom674/Piwigo_Bratonien_Tools
|
||||||
Author: Bratonien
|
Author: Bratonien
|
||||||
@@ -28,11 +28,13 @@ require_once(BRATONIEN_TOOLS_PATH . 'include/nc_productive_ws.inc.php');
|
|||||||
require_once(BRATONIEN_TOOLS_PATH . 'include/nc_connector_scheduler.inc.php');
|
require_once(BRATONIEN_TOOLS_PATH . 'include/nc_connector_scheduler.inc.php');
|
||||||
|
|
||||||
add_event_handler('get_admin_plugin_menu_links', 'bratonien_tools_admin_menu');
|
add_event_handler('get_admin_plugin_menu_links', 'bratonien_tools_admin_menu');
|
||||||
|
add_event_handler('loc_end_index_category_thumbnails', 'bratonien_tools_watermark_prepare_album_overview');
|
||||||
add_event_handler('get_derivative_url', 'bratonien_tools_filter_derivative_url', EVENT_HANDLER_PRIORITY_NEUTRAL, 4);
|
add_event_handler('get_derivative_url', 'bratonien_tools_filter_derivative_url', EVENT_HANDLER_PRIORITY_NEUTRAL, 4);
|
||||||
add_event_handler('get_src_image_url', 'bratonien_tools_filter_webdav_src_url', EVENT_HANDLER_PRIORITY_NEUTRAL + 50, 2);
|
add_event_handler('get_src_image_url', 'bratonien_tools_filter_webdav_src_url', EVENT_HANDLER_PRIORITY_NEUTRAL + 50, 2);
|
||||||
add_event_handler('get_derivative_url', 'bratonien_tools_filter_webdav_gallery_derivative_url', EVENT_HANDLER_PRIORITY_NEUTRAL + 50, 4);
|
add_event_handler('get_derivative_url', 'bratonien_tools_filter_webdav_gallery_derivative_url', EVENT_HANDLER_PRIORITY_NEUTRAL + 50, 4);
|
||||||
add_event_handler('loc_end_element_set_global', 'bratonien_tools_batch_titles_register_action');
|
add_event_handler('loc_end_element_set_global', 'bratonien_tools_batch_titles_register_action');
|
||||||
add_event_handler('element_set_global_action', 'bratonien_tools_batch_titles_apply', EVENT_HANDLER_PRIORITY_NEUTRAL, 2);
|
add_event_handler('element_set_global_action', 'bratonien_tools_batch_titles_apply', EVENT_HANDLER_PRIORITY_NEUTRAL, 2);
|
||||||
|
add_event_handler('init', 'bratonien_tools_watermark_cache_upgrade', EVENT_HANDLER_PRIORITY_NEUTRAL - 40);
|
||||||
add_event_handler('init', 'bratonien_tools_prepare_connector_private_import', EVENT_HANDLER_PRIORITY_NEUTRAL - 30);
|
add_event_handler('init', 'bratonien_tools_prepare_connector_private_import', EVENT_HANDLER_PRIORITY_NEUTRAL - 30);
|
||||||
add_event_handler('init', 'bratonien_tools_prepare_private_album_permissions', EVENT_HANDLER_PRIORITY_NEUTRAL - 20);
|
add_event_handler('init', 'bratonien_tools_prepare_private_album_permissions', EVENT_HANDLER_PRIORITY_NEUTRAL - 20);
|
||||||
add_event_handler('init', 'bratonien_tools_preserve_private_album_access', EVENT_HANDLER_PRIORITY_NEUTRAL - 10);
|
add_event_handler('init', 'bratonien_tools_preserve_private_album_access', EVENT_HANDLER_PRIORITY_NEUTRAL - 10);
|
||||||
|
|||||||
@@ -61,6 +61,7 @@ function bratonien_tools_save_album_rule()
|
|||||||
)));
|
)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bratonien_tools_clear_watermark_cache();
|
||||||
return array('message'=>'Albumregel gespeichert.');
|
return array('message'=>'Albumregel gespeichert.');
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -97,9 +98,6 @@ function bratonien_tools_resolve_album_rule($category_id, array $categories, arr
|
|||||||
$root = $by_id[$category_id] ?? null;
|
$root = $by_id[$category_id] ?? null;
|
||||||
$is_private = $root && isset($root['status']) && $root['status'] === 'private';
|
$is_private = $root && isset($root['status']) && $root['status'] === 'private';
|
||||||
|
|
||||||
// Privat ist eine Vererbungsgrenze. Eine direkt auf diesem privaten Album
|
|
||||||
// gesetzte Regel bleibt moeglich, aber Regeln oeffentlicher Eltern duerfen
|
|
||||||
// nicht in ein privates Album hineinvererbt werden.
|
|
||||||
if ($is_private)
|
if ($is_private)
|
||||||
{
|
{
|
||||||
if (isset($rules[$category_id]))
|
if (isset($rules[$category_id]))
|
||||||
|
|||||||
@@ -128,6 +128,7 @@ function bratonien_tools_save_watermark_profile()
|
|||||||
mass_inserts($table, array_keys($data), array($data));
|
mass_inserts($table, array_keys($data), array($data));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bratonien_tools_clear_watermark_cache();
|
||||||
return array('message'=>'Wasserzeichenprofil gespeichert.');
|
return array('message'=>'Wasserzeichenprofil gespeichert.');
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -158,6 +159,7 @@ function bratonien_tools_delete_watermark_profile()
|
|||||||
}
|
}
|
||||||
|
|
||||||
pwg_query('DELETE FROM '.bratonien_tools_table('watermark_profiles').' WHERE id='.$id);
|
pwg_query('DELETE FROM '.bratonien_tools_table('watermark_profiles').' WHERE id='.$id);
|
||||||
|
bratonien_tools_clear_watermark_cache();
|
||||||
return array('message'=>'Wasserzeichenprofil geloescht.');
|
return array('message'=>'Wasserzeichenprofil geloescht.');
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -174,6 +176,7 @@ function bratonien_tools_duplicate_watermark_profile()
|
|||||||
$profile['name'] .= ' (Kopie)';
|
$profile['name'] .= ' (Kopie)';
|
||||||
$profile['created'] = date('Y-m-d H:i:s');
|
$profile['created'] = date('Y-m-d H:i:s');
|
||||||
mass_inserts(bratonien_tools_table('watermark_profiles'), array_keys($profile), array($profile));
|
mass_inserts(bratonien_tools_table('watermark_profiles'), array_keys($profile), array($profile));
|
||||||
|
bratonien_tools_clear_watermark_cache();
|
||||||
|
|
||||||
return array('message'=>'Wasserzeichenprofil dupliziert.');
|
return array('message'=>'Wasserzeichenprofil dupliziert.');
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,6 +4,59 @@ if (!defined('PHPWG_ROOT_PATH'))
|
|||||||
die('Hacking attempt!');
|
die('Hacking attempt!');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function bratonien_tools_watermark_cache_dir()
|
||||||
|
{
|
||||||
|
return PHPWG_ROOT_PATH.PWG_DERIVATIVE_DIR.'bratonien-watermark';
|
||||||
|
}
|
||||||
|
|
||||||
|
function bratonien_tools_remove_tree($path)
|
||||||
|
{
|
||||||
|
$path = rtrim((string)$path, DIRECTORY_SEPARATOR);
|
||||||
|
if ($path === '' || !file_exists($path)) return;
|
||||||
|
|
||||||
|
if (is_file($path) || is_link($path))
|
||||||
|
{
|
||||||
|
@unlink($path);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (scandir($path) ?: array() as $entry)
|
||||||
|
{
|
||||||
|
if ($entry === '.' || $entry === '..') continue;
|
||||||
|
bratonien_tools_remove_tree($path.DIRECTORY_SEPARATOR.$entry);
|
||||||
|
}
|
||||||
|
@rmdir($path);
|
||||||
|
}
|
||||||
|
|
||||||
|
function bratonien_tools_clear_watermark_cache()
|
||||||
|
{
|
||||||
|
$dir = bratonien_tools_watermark_cache_dir();
|
||||||
|
$derivative_root = realpath(PHPWG_ROOT_PATH.PWG_DERIVATIVE_DIR);
|
||||||
|
$parent = realpath(dirname($dir));
|
||||||
|
|
||||||
|
if ($derivative_root === false || $parent === false || $parent !== $derivative_root)
|
||||||
|
{
|
||||||
|
throw new RuntimeException('Wasserzeichen-Cachepfad ist ungueltig.');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (is_dir($dir))
|
||||||
|
{
|
||||||
|
bratonien_tools_remove_tree($dir);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function bratonien_tools_watermark_cache_upgrade()
|
||||||
|
{
|
||||||
|
$version = '0.9.7.13';
|
||||||
|
if ((string)conf_get_param('bratonien_watermark_cache_version', '') === $version)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
bratonien_tools_clear_watermark_cache();
|
||||||
|
conf_update_param('bratonien_watermark_cache_version', $version);
|
||||||
|
}
|
||||||
|
|
||||||
function bratonien_tools_get_watermark_defaults()
|
function bratonien_tools_get_watermark_defaults()
|
||||||
{
|
{
|
||||||
$defaults = conf_get_param('bratonien_watermark_defaults', null);
|
$defaults = conf_get_param('bratonien_watermark_defaults', null);
|
||||||
@@ -40,6 +93,7 @@ function bratonien_tools_save_watermark_defaults()
|
|||||||
);
|
);
|
||||||
|
|
||||||
conf_update_param('bratonien_watermark_defaults', json_encode($config));
|
conf_update_param('bratonien_watermark_defaults', json_encode($config));
|
||||||
|
bratonien_tools_clear_watermark_cache();
|
||||||
|
|
||||||
return array('message'=>'Globale Wasserzeichenregeln gespeichert.');
|
return array('message'=>'Globale Wasserzeichenregeln gespeichert.');
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user