misc.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <?php
  2. /**
  3. * @name Misc Module
  4. * @author Philipp Maurer
  5. * @author Tobias Reich
  6. * @copyright 2014 by Philipp Maurer, Tobias Reich
  7. */
  8. if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
  9. function search($database, $settings, $term) {
  10. if (!isset($database, $settings, $term)) return false;
  11. $return['albums'] = '';
  12. // Photos
  13. $query = Database::prepare($database, "SELECT id, title, tags, public, star, album, thumbUrl FROM ? WHERE title LIKE '%?%' OR description LIKE '%?%' OR tags LIKE '%?%'", array(LYCHEE_TABLE_PHOTOS, $term, $term, $term));
  14. $result = $database->query($query);
  15. while($row = $result->fetch_assoc()) {
  16. $return['photos'][$row['id']] = $row;
  17. $return['photos'][$row['id']]['thumbUrl'] = LYCHEE_URL_UPLOADS_THUMB . $row['thumbUrl'];
  18. $return['photos'][$row['id']]['sysdate'] = date('d M. Y', substr($row['id'], 0, -4));
  19. }
  20. // Albums
  21. $query = Database::prepare($database, "SELECT id, title, public, sysstamp, password FROM ? WHERE title LIKE '%?%' OR description LIKE '%?%'", array(LYCHEE_TABLE_ALBUMS, $term, $term));
  22. $result = $database->query($query);
  23. $i = 0;
  24. while($row = $result->fetch_object()) {
  25. // Info
  26. $return['albums'][$row->id]['id'] = $row->id;
  27. $return['albums'][$row->id]['title'] = $row->title;
  28. $return['albums'][$row->id]['public'] = $row->public;
  29. $return['albums'][$row->id]['sysdate'] = date('F Y', $row->sysstamp);
  30. $return['albums'][$row->id]['password'] = ($row->password=='' ? false : true);
  31. // Thumbs
  32. $query = Database::prepare($database, "SELECT thumbUrl FROM ? WHERE album = '?' " . $settings['sorting'] . " LIMIT 0, 3", array(LYCHEE_TABLE_PHOTOS, $row->id));
  33. $result2 = $database->query($query);
  34. $k = 0;
  35. while($row2 = $result2->fetch_object()){
  36. $return['albums'][$row->id]["thumb$k"] = LYCHEE_URL_UPLOADS_THUMB . $row2->thumbUrl;
  37. $k++;
  38. }
  39. $i++;
  40. }
  41. return $return;
  42. }
  43. function getGraphHeader($database, $photoID) {
  44. if (!isset($database, $photoID)) return false;
  45. $query = Database::prepare($database, "SELECT title, description, url FROM ? WHERE id = '?'", array(LYCHEE_TABLE_PHOTOS, $photoID));
  46. $result = $database->query($query);
  47. $row = $result->fetch_object();
  48. $parseUrl = parse_url("http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']);
  49. $picture = $parseUrl['scheme']."://".$parseUrl['host'].$parseUrl['path']."/../uploads/big/".$row->url;
  50. $return = '<!-- General Meta Data -->';
  51. $return .= '<meta name="title" content="'.$row->title.'" />';
  52. $return .= '<meta name="description" content="'.$row->description.' - via Lychee" />';
  53. $return .= '<link rel="image_src" type="image/jpeg" href="'.$picture.'" />';
  54. $return .= '<!-- Twitter Meta Data -->';
  55. $return .= '<meta name="twitter:card" content="photo">';
  56. $return .= '<meta name="twitter:title" content="'.$row->title.'">';
  57. $return .= '<meta name="twitter:image:src" content="'.$picture.'">';
  58. $return .= '<!-- Facebook Meta Data -->';
  59. $return .= '<meta property="og:title" content="'.$row->title.'">';
  60. $return .= '<meta property="og:image" content="'.$picture.'">';
  61. return $return;
  62. }
  63. function getExtension($filename) {
  64. $extension = strpos($filename, '.') !== false
  65. ? strrchr($filename, '.')
  66. : '';
  67. return $extension;
  68. }
  69. function get_hashed_password($password) {
  70. # Inspired by http://alias.io/2010/01/store-passwords-safely-with-php-and-mysql/
  71. # A higher $cost is more secure but consumes more processing power
  72. $cost = 10;
  73. # Create a random salt
  74. if (extension_loaded('openssl')) {
  75. $salt = strtr(substr(base64_encode(openssl_random_pseudo_bytes(17)),0,22), '+', '.');
  76. } elseif (extension_loaded('mcrypt')) {
  77. $salt = strtr(substr(base64_encode(mcrypt_create_iv(17, MCRYPT_DEV_URANDOM)),0,22), '+', '.');
  78. } else {
  79. $salt = "";
  80. for ($i = 0; $i < 22; $i++) {
  81. $salt .= substr("./ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", mt_rand(0, 63), 1);
  82. }
  83. }
  84. # Prefix information about the hash so PHP knows how to verify it later.
  85. # "$2a$" Means we're using the Blowfish algorithm. The following two digits are the cost parameter.
  86. $salt = sprintf("$2a$%02d$", $cost) . $salt;
  87. # Hash the password with the salt
  88. return crypt($password, $salt);
  89. }
  90. function hasPermissions($path, $permissions = '0777') {
  91. /* assume that if running with the same uid as the owner of the directory it's ok */
  92. $stat = @stat($path);
  93. if ($stat && ($stat['uid'] == getmyuid())) return true;
  94. if (substr(sprintf('%o', @fileperms($path)), -4)!=$permissions) return false;
  95. else return true;
  96. }
  97. function fastimagecopyresampled(&$dst_image, $src_image, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h, $quality = 4) {
  98. ###
  99. # Plug-and-Play fastimagecopyresampled function replaces much slower imagecopyresampled.
  100. # Just include this function and change all "imagecopyresampled" references to "fastimagecopyresampled".
  101. # Typically from 30 to 60 times faster when reducing high resolution images down to thumbnail size using the default quality setting.
  102. # Author: Tim Eckel - Date: 09/07/07 - Version: 1.1 - Project: FreeRingers.net - Freely distributable - These comments must remain.
  103. #
  104. # Optional "quality" parameter (defaults is 3). Fractional values are allowed, for example 1.5. Must be greater than zero.
  105. # Between 0 and 1 = Fast, but mosaic results, closer to 0 increases the mosaic effect.
  106. # 1 = Up to 350 times faster. Poor results, looks very similar to imagecopyresized.
  107. # 2 = Up to 95 times faster. Images appear a little sharp, some prefer this over a quality of 3.
  108. # 3 = Up to 60 times faster. Will give high quality smooth results very close to imagecopyresampled, just faster.
  109. # 4 = Up to 25 times faster. Almost identical to imagecopyresampled for most images.
  110. # 5 = No speedup. Just uses imagecopyresampled, no advantage over imagecopyresampled.
  111. ###
  112. if (empty($src_image) || empty($dst_image) || $quality <= 0) { return false; }
  113. if ($quality < 5 && (($dst_w * $quality) < $src_w || ($dst_h * $quality) < $src_h)) {
  114. $temp = imagecreatetruecolor($dst_w * $quality + 1, $dst_h * $quality + 1);
  115. imagecopyresized($temp, $src_image, 0, 0, $src_x, $src_y, $dst_w * $quality + 1, $dst_h * $quality + 1, $src_w, $src_h);
  116. imagecopyresampled($dst_image, $temp, $dst_x, $dst_y, 0, 0, $dst_w, $dst_h, $dst_w * $quality, $dst_h * $quality);
  117. imagedestroy($temp);
  118. } else imagecopyresampled($dst_image, $src_image, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h);
  119. return true;
  120. }
  121. ?>