misc.php 6.5 KB

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