0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
htdocs
/
[
Home
]
File: tiki-browse_gallery.php
<?php // $Header: /cvsroot/tikiwiki/tiki/tiki-browse_gallery.php,v 1.22.2.9 2006/11/02 14:35:43 sylvieg Exp $ // Copyright (c) 2002-2005, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // Initialization require_once ('tiki-setup.php'); include_once ("lib/imagegals/imagegallib.php"); include_once ('lib/stats/statslib.php'); if ($feature_categories == 'y') { global $categlib; if (!is_object($categlib)) { include_once('lib/categories/categlib.php'); } } if ($feature_galleries != 'y') { $smarty->assign('msg', tra("This feature is disabled").": feature_galleries"); $smarty->display("error.tpl"); die; } if ($_REQUEST["galleryId"] == 0 && $tiki_p_admin_galleries != 'y') { $smarty->assign('msg', tra("Permission denied you cannot access this gallery")); $smarty->display("error.tpl"); die; } if (!isset($_REQUEST["galleryId"])) { $smarty->assign('msg', tra("No gallery indicated")); $smarty->display("error.tpl"); die; } $smarty->assign('individual', 'n'); if ($userlib->object_has_one_permission($_REQUEST["galleryId"], 'image gallery')) { $smarty->assign('individual', 'y'); if ($tiki_p_admin != 'y') { // Now get all the permissions that are set for this type of permissions 'image gallery' $perms = $userlib->get_permissions(0, -1, 'permName_desc', '', 'image galleries'); foreach ($perms["data"] as $perm) { $permName = $perm["permName"]; if ($userlib->object_has_permission($user, $_REQUEST["galleryId"], 'image gallery', $permName)) { $$permName = 'y'; $smarty->assign("$permName", 'y'); } else { $$permName = 'n'; $smarty->assign("$permName", 'n'); } } } } elseif ($tiki_p_admin != 'y' && $feature_categories == 'y') { $perms_array = $categlib->get_object_categories_perms($user, 'image gallery', $_REQUEST['galleryId']); if ($perms_array) { $is_categorized = TRUE; foreach ($perms_array as $perm => $value) { $$perm = $value; } } else { $is_categorized = FALSE; } if ($is_categorized && isset($tiki_p_view_categories) && $tiki_p_view_categories != 'y') { if (!isset($user)){ $smarty->assign('msg',$smarty->fetch('modules/mod-login_box.tpl')); $smarty->assign('errortitle',tra("Please login")); } else { $smarty->assign('msg',tra("Permission denied you cannot view this page")); } $smarty->display("error.tpl"); die; } } if ($tiki_p_admin_galleries == 'y') { $tiki_p_view_image_gallery = 'y'; $smarty->assign("tiki_p_view_image_gallery", 'y'); $tiki_p_upload_images = 'y'; $smarty->assign("tiki_p_upload_images", 'y'); $tiki_p_create_galleries = 'y'; $smarty->assign("tiki_p_create_galleries", 'y'); } if ($tiki_p_view_image_gallery != 'y') { $smarty->assign('msg', tra("Permission denied you can not view this section")); $smarty->display("error.tpl"); die; } if (!isset($_REQUEST["galleryId"])) { $_REQUEST["galleryId"] = 0; } if ($_REQUEST["galleryId"] != 0) { // To browse the gallery the user has to be admin, the owner or the gallery has to be public $gal_info = $imagegallib->get_gallery($_REQUEST["galleryId"]); //$smarty->assign_by_ref('theme',$gal_info["theme"]); //$smarty->assign('use_theme','y'); /* if($user!='admin' && $user!=$gal_info["user"] && $gal_info["public"]!='y') { $smarty->assign('msg',tra("Permission denied you cannot browse this gallery")); $smarty->display("error.tpl"); die; } */ } else { $gal_info["galleryId"] = 0; $gal_info["user"] = 'admin'; $gal_info["name"] = 'System'; $gal_info["public"] = 'y'; $gal_info["description"] = 'System Gallery'; $gal_info['showname'] ='y'; $gal_info['showimageid'] ='n'; $gal_info['showdescription'] ='n'; $gal_info['showcreated'] ='n'; $gal_info['showuser'] ='n'; $gal_info['showhits'] ='y'; $gal_info['showxysize'] ='y'; $gal_info['showfilesize'] ='n'; $gal_info['showfilename'] ='n'; $gal_info['defaultscale'] ='o'; } $smarty->assign_by_ref('owner', $gal_info["user"]); $smarty->assign_by_ref('public', $gal_info["public"]); $smarty->assign_by_ref('galleryId', $_REQUEST["galleryId"]); $smarty->assign_by_ref('showname', $gal_info['showname']); $smarty->assign_by_ref('showimageid', $gal_info['showimageid']); $smarty->assign_by_ref('showdescription', $gal_info['showdescription']); $smarty->assign_by_ref('showcreated', $gal_info['showcreated']); $smarty->assign_by_ref('showuser', $gal_info['showuser']); $smarty->assign_by_ref('showhits', $gal_info['showhits']); $smarty->assign_by_ref('showxysize', $gal_info['showxysize']); $smarty->assign_by_ref('showfilesize', $gal_info['showfilesize']); $smarty->assign_by_ref('showfilename', $gal_info['showfilename']); $smarty->assign_by_ref('defaultscale', $gal_info['defaultscale']); $imagegallib->add_gallery_hit($_REQUEST["galleryId"]); if (isset($_REQUEST["remove"])) { check_ticket('browse-gallery'); // To remove an image the user must be the owner or admin if (($tiki_p_admin_galleries != 'y') && (!$user || $user != $gal_info["user"])) { $smarty->assign('msg', tra("Permission denied you cannot remove images from this gallery")); $smarty->display("error.tpl"); die; } $area = 'delgalimage'; if ($feature_ticketlib2 != 'y' or (isset($_POST['daconfirm']) and isset($_SESSION["ticket_$area"]))) { key_check($area); $imagegallib->remove_image($_REQUEST["remove"]); } else { key_get($area); } } if (isset($_REQUEST["rebuild"])) { check_ticket('browse-gallery'); // To rebuild thumbnails the user must be the owner or admin if (($tiki_p_admin_galleries != 'y') && (!$user || $user != $gal_info["user"])) { $smarty->assign('msg', tra("Permission denied you cannot rebuild thumbnails in this gallery")); $smarty->display("error.tpl"); die; } $imagegallib->rebuild_thumbnails($_REQUEST["rebuild"]); } if (isset($_REQUEST["rotateright"])) { check_ticket('browse-gallery'); // To rotate an image the user must be the owner or admin if (($tiki_p_admin_galleries != 'y') && (!$user || $user != $gal_info["user"])) { $smarty->assign('msg', tra("Permission denied you cannot rotate images in this gallery")); $smarty->display("error.tpl"); die; } $imagegallib->rotate_right_image($_REQUEST["rotateright"]); } if (isset($_REQUEST["rotateleft"])) { check_ticket('browse-gallery'); // To rotate an image the user must be the owner or admin if (($tiki_p_admin_galleries != 'y') && (!$user || $user != $gal_info["user"])) { $smarty->assign('msg', tra("Permission denied you cannot rotate images in this gallery")); $smarty->display("error.tpl"); die; } $imagegallib->rotate_left_image($_REQUEST["rotateleft"]); } $smarty->assign('system', 'n'); if ($_REQUEST["galleryId"] == 0) { $info["thumbSizeX"] = 100; $info["thumbSizeY"] = 100; $info["galleryId"] = 0; $info["user"] = 'admin'; $info["name"] = 'System'; $info["public"] = 'y'; $info["description"] = 'System Gallery'; $info['sortorder'] = 'created'; $info['sortdirection'] = 'desc'; $info['galleryimage'] = 'last'; $smarty->assign('system', 'y'); } else { $info = $imagegallib->get_gallery($_REQUEST["galleryId"]); $nextscaleinfo = $imagegallib->get_gallery_next_scale($_REQUEST["galleryId"]); } if (!isset($info["maxRows"])) $info["maxRows"] = 10; if (!isset($info["rowImages"])) $info["rowImages"] = 5; if (!isset($nextscaleinfo['scale'])) { $nextscaleinfo['scale'] = 0; $nextscaleinfo['scale'] = 0; } if ($info["maxRows"] == 0) $info["maxRows"] = 10; if ($info["rowImages"] == 0) $info["rowImages"] = 6; $maxImages = $info["maxRows"] * $info["rowImages"]; $smarty->assign_by_ref('maxImages', $maxImages); $smarty->assign_by_ref('rowImages', $info["rowImages"]); $smarty->assign('rowImages2', $info["rowImages"] - 1); $smarty->assign_by_ref('thx', $info["thumbSizeX"]); $smarty->assign_by_ref('thy', $info["thumbSizeY"]); $smarty->assign_by_ref('name', $info["name"]); $smarty->assign('title', $info["name"]); $smarty->assign_by_ref('description', $info["description"]); $smarty->assign_by_ref('nextscale', $nextscaleinfo['scale']); // Can we rotate images if ($imagegallib->canrotate) { $smarty->assign('imagerotate', true); } else { $smarty->assign('imagerotate', false); } if (!isset($_REQUEST["sort_mode"])) { if(isset($info['sortorder'])) { // default sortorder from gallery settings $sort_mode = $info['sortorder'].'_'.$info['sortdirection']; } else { $sort_mode = 'created_desc'; } } else { $sort_mode = $_REQUEST["sort_mode"]; } $smarty->assign_by_ref('sort_mode', $sort_mode); // If offset is set use it if not then use offset =0 // use the maxRecords php variable to set the limit // if sortMode is not set then use lastModif_desc if (!isset($_REQUEST["offset"])) { $offset = 0; } else { $offset = $_REQUEST["offset"]; } $smarty->assign_by_ref('offset', $offset); if (isset($_REQUEST["find"])) { $find = $_REQUEST["find"]; } else { $find = ''; } // get subgalleries first $subgals = $imagegallib->get_subgalleries($offset, $maxImages, $sort_mode, '', $_REQUEST["galleryId"]); $remainingImages = $maxImages-count($subgals['data']); $newoffset = $offset -$subgals['cant']; $images = $imagegallib->get_images($newoffset, $remainingImages, $sort_mode, $find, $_REQUEST["galleryId"]); $smarty->assign('num_objects',count($subgals['data'])+count($images['data'])); $smarty->assign('num_subgals',count($subgals['data'])); $smarty->assign('num_images',count($images['data'])); $cant_pages = ceil(($subgals['cant']+$images['cant']) / $maxImages); $smarty->assign_by_ref('cant_pages', $cant_pages); $smarty->assign('actual_page', 1 + ($offset / $maxImages)); if ($images["cant"] > ($offset + $maxImages)) { $smarty->assign('next_offset', $offset + $maxImages); } else { $smarty->assign('next_offset', -1); } // If offset is > 0 then prev_offset if ($offset > 0) { $smarty->assign('prev_offset', $offset - $maxImages); } else { $smarty->assign('prev_offset', -1); } $smarty->assign_by_ref('images', $images["data"]); $smarty->assign_by_ref('subgals', $subgals['data']); if ($feature_image_galleries_comments == 'y') { $comments_per_page = $image_galleries_comments_per_page; $comments_default_ordering = $image_galleries_comments_default_order; $comments_vars = array( 'galleryId', 'offset', 'sort_mode' ); $comments_prefix_var = 'image gallery:'; $comments_object_var = 'galleryId'; include_once ("comments.php"); } $section = 'galleries'; include_once ('tiki-section_options.php'); if ($feature_theme_control == 'y') { $cat_type = 'image gallery'; $cat_objid = $_REQUEST["galleryId"]; include ('tiki-tc.php'); } ask_ticket('browse-gallery'); //add a hit $statslib->stats_hit($gal_info["name"],"image gallery",$_REQUEST["galleryId"]); // Display the template $smarty->assign('mid', 'tiki-browse_gallery.tpl'); $smarty->display("tiki.tpl"); ?>