Import.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <?php
  2. ###
  3. # @name Upload Module
  4. # @copyright 2015 by Tobias Reich
  5. ###
  6. if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
  7. class Import extends Module {
  8. static function photo($database, $plugins, $settings, $path, $albumID = 0, $description = '', $tags = '') {
  9. # No need to validate photo type and extension in this function.
  10. # $photo->add will take care of it.
  11. $info = getimagesize($path);
  12. $size = filesize($path);
  13. $photo = new Photo($database, $plugins, $settings, null);
  14. $nameFile = array(array());
  15. $nameFile[0]['name'] = $path;
  16. $nameFile[0]['type'] = $info['mime'];
  17. $nameFile[0]['tmp_name'] = $path;
  18. $nameFile[0]['error'] = 0;
  19. $nameFile[0]['size'] = $size;
  20. if (!$photo->add($nameFile, $albumID, $description, $tags)) return false;
  21. return true;
  22. }
  23. static function url($urls, $albumID = 0) {
  24. global $database, $plugins, $settings;
  25. $error = false;
  26. # Parse
  27. $urls = str_replace(' ', '%20', $urls);
  28. $urls = explode(',', $urls);
  29. foreach ($urls as &$url) {
  30. # Validate photo type and extension even when Import::photo (=> $photo->add) will do the same.
  31. # This prevents us from downloading invalid photos.
  32. # Verify extension
  33. $extension = getExtension($url);
  34. if (!in_array(strtolower($extension), Photo::$validExtensions, true)) {
  35. $error = true;
  36. continue;
  37. }
  38. # Verify image
  39. $type = @exif_imagetype($url);
  40. if (!in_array($type, Photo::$validTypes, true)) {
  41. $error = true;
  42. continue;
  43. }
  44. $pathinfo = pathinfo($url);
  45. $filename = $pathinfo['filename'] . '.' . $pathinfo['extension'];
  46. $tmp_name = LYCHEE_DATA . $filename;
  47. if (@copy($url, $tmp_name)===false) {
  48. $error = true;
  49. Log::error($database, __METHOD__, __LINE__, 'Could not copy file (' . $tmp_name . ') to temp-folder (' . $tmp_name . ')');
  50. continue;
  51. }
  52. # Import photo
  53. if (!Import::photo($database, $plugins, $settings, $tmp_name, $albumID)) {
  54. $error = true;
  55. Log::error($database, __METHOD__, __LINE__, 'Could not import file: ' . $tmp_name);
  56. continue;
  57. }
  58. }
  59. if ($error===false) return true;
  60. return false;
  61. }
  62. static function server($albumID = 0, $path) {
  63. global $database, $plugins, $settings;
  64. # Parse path
  65. if (!isset($path)) $path = LYCHEE_UPLOADS_IMPORT;
  66. if (substr($path, -1)==='/') $path = substr($path, 0, -1);
  67. if (is_dir($path)===false) {
  68. Log::error($database, __METHOD__, __LINE__, 'Given path is not a directory (' . $path . ')');
  69. return 'Error: Given path is not a directory!';
  70. }
  71. # Skip folders of Lychee
  72. if ($path===LYCHEE_UPLOADS_BIG||($path . '/')===LYCHEE_UPLOADS_BIG||
  73. $path===LYCHEE_UPLOADS_MEDIUM||($path . '/')===LYCHEE_UPLOADS_MEDIUM||
  74. $path===LYCHEE_UPLOADS_THUMB||($path . '/')===LYCHEE_UPLOADS_THUMB) {
  75. Log::error($database, __METHOD__, __LINE__, 'The given path is a reserved path of Lychee (' . $path . ')');
  76. return 'Error: Given path is a reserved path of Lychee!';
  77. }
  78. $error = false;
  79. $contains['photos'] = false;
  80. $contains['albums'] = false;
  81. # Invoke plugins directly, as instance method not valid here
  82. # Note that updated albumId and path explicitly passed, rather
  83. # than using func_get_args() which will only return original ones
  84. $plugins->activate(__METHOD__ . ":before", array($albumID, $path));
  85. # Get all files
  86. $files = glob($path . '/*');
  87. foreach ($files as $file) {
  88. # It is possible to move a file because of directory permissions but
  89. # the file may still be unreadable by the user
  90. if (!is_readable($file)) {
  91. $error = true;
  92. Log::error($database, __METHOD__, __LINE__, 'Could not read file or directory: ' . $file);
  93. continue;
  94. }
  95. if (@exif_imagetype($file)!==false) {
  96. # Photo
  97. if (!Import::photo($database, $plugins, $settings, $file, $albumID)) {
  98. $error = true;
  99. Log::error($database, __METHOD__, __LINE__, 'Could not import file: ' . $file);
  100. continue;
  101. }
  102. $contains['photos'] = true;
  103. } else if (is_dir($file)) {
  104. # Folder
  105. $name = mysqli_real_escape_string($database, basename($file));
  106. $album = new Album($database, null, null, null);
  107. $newAlbumID = $album->add('[Import] ' . $name);
  108. $contains['albums'] = true;
  109. if ($newAlbumID===false) {
  110. $error = true;
  111. Log::error($database, __METHOD__, __LINE__, 'Could not create album in Lychee (' . $newAlbumID . ')');
  112. continue;
  113. }
  114. $import = Import::server($newAlbumID, $file . '/');
  115. if ($import!==true&&$import!=='Notice: Import only contains albums!') {
  116. $error = true;
  117. Log::error($database, __METHOD__, __LINE__, 'Could not import folder. Function returned warning');
  118. continue;
  119. }
  120. }
  121. }
  122. # Invoke plugins directly, as instance method not valid here
  123. # Note that updated albumId and path explicitly passed, rather
  124. # than using func_get_args() which will only return original ones
  125. $plugins->activate(__METHOD__ . ":after", array($albumID, $path));
  126. if ($contains['photos']===false&&$contains['albums']===false) return 'Warning: Folder empty or no readable files to process!';
  127. if ($contains['photos']===false&&$contains['albums']===true) return 'Notice: Import only contains albums!';
  128. return true;
  129. }
  130. }
  131. ?>