Import.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <?php
  2. ###
  3. # @name Upload Module
  4. # @author Tobias Reich
  5. # @copyright 2014 by Tobias Reich
  6. ###
  7. if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
  8. class Import extends Module {
  9. static function photo($database, $plugins, $settings, $path, $albumID = 0, $description = '', $tags = '') {
  10. $info = getimagesize($path);
  11. $size = filesize($path);
  12. $photo = new Photo($database, $plugins, $settings, null);
  13. $nameFile = array(array());
  14. $nameFile[0]['name'] = $path;
  15. $nameFile[0]['type'] = $info['mime'];
  16. $nameFile[0]['tmp_name'] = $path;
  17. $nameFile[0]['error'] = 0;
  18. $nameFile[0]['size'] = $size;
  19. if (!$photo->add($nameFile, $albumID, $description, $tags)) return false;
  20. return true;
  21. }
  22. static function url($urls, $albumID = 0) {
  23. $error = false;
  24. # Parse
  25. $urls = str_replace(' ', '%20', $urls);
  26. $urls = explode(',', $urls);
  27. foreach ($urls as &$url) {
  28. if (@exif_imagetype($url)===false) {
  29. $error = true;
  30. continue;
  31. }
  32. $pathinfo = pathinfo($url);
  33. $filename = $pathinfo['filename'] . '.' . $pathinfo['extension'];
  34. $tmp_name = LYCHEE_DATA . $filename;
  35. if (@copy($url, $tmp_name)===false) $error = true;
  36. }
  37. $import = Import::server($albumID, LYCHEE_DATA);
  38. if ($error===false&&$import===true) return true;
  39. else return false;
  40. }
  41. static function move($database, $path) {
  42. # Determine OS type and set move cmd (Windows untested!)
  43. $myos = substr(PHP_OS,0,3);
  44. $myos = strtoupper($myos);
  45. if ($myos==='WIN') $osmv = 'MOVE';
  46. else $osmv = 'mv';
  47. # Generate tmp dir name by hashing epoch time & random number
  48. $tmpdirname = md5(time() . rand());
  49. # Make temporary directory
  50. if (@mkdir(LYCHEE_DATA . $tmpdirname)===false) {
  51. Log::error($database, __METHOD__, __LINE__, 'Failed to create temporary directory');
  52. return false;
  53. }
  54. # Get list of files and move them to tmpdir
  55. $files = glob($path . '*');
  56. if (isset($files)) {
  57. foreach ($files as $file) {
  58. # Prevent index.html from being moved
  59. if (basename($file)==='index.html') continue;
  60. $out = '';
  61. $ret = '';
  62. @exec($osmv . ' ' . $file . ' ' . LYCHEE_DATA . $tmpdirname, $out, $ret);
  63. if (isset($ret)&&($ret>0)) Log::error($database, __METHOD__, __LINE__, "Failed to move directory or file ($ret):" . $file);
  64. }
  65. }
  66. # If no files could be copied to the temp dir, remove
  67. $files = glob(LYCHEE_DATA . $tmpdirname . '/*');
  68. if (count($files)===0) {
  69. rmdir(LYCHEE_DATA . $tmpdirname);
  70. Log::error($database, __METHOD__, __LINE__, 'Import failed, because files could not be temporary moved to ' . LYCHEE_DATA);
  71. return false;
  72. }
  73. # Set new path
  74. $path = LYCHEE_DATA . $tmpdirname;
  75. return $path;
  76. }
  77. static function server($albumID = 0, $path, $useTemp = false) {
  78. global $database, $plugins, $settings;
  79. if (!isset($path)) $path = LYCHEE_UPLOADS_IMPORT;
  80. if ($useTemp===true) {
  81. $path = Import::move($database, $path);
  82. if ($path===false) {
  83. Log::error($database, __METHOD__, __LINE__, 'Failed to move import to temporary directory');
  84. return false;
  85. }
  86. }
  87. $error = false;
  88. $contains['photos'] = false;
  89. $contains['albums'] = false;
  90. # Get all files
  91. $files = glob($path . '/*');
  92. foreach ($files as $file) {
  93. # It is possible to move a file because of directory permissions but
  94. # the file may still be unreadable by the user
  95. if (!is_readable($file)) {
  96. $error = true;
  97. Log::error($database, __METHOD__, __LINE__, 'Could not read file or directory: ' . $file);
  98. continue;
  99. }
  100. if (@exif_imagetype($file)!==false) {
  101. # Photo
  102. if (!Import::photo($database, $plugins, $settings, $file, $albumID)) {
  103. $error = true;
  104. Log::error($database, __METHOD__, __LINE__, 'Could not import file: ' . $file);
  105. continue;
  106. }
  107. $contains['photos'] = true;
  108. } else if (is_dir($file)) {
  109. # Folder
  110. $name = mysqli_real_escape_string($database, basename($file));
  111. $album = new Album($database, null, null, null);
  112. $newAlbumID = $album->add('[Import] ' . $name);
  113. if ($newAlbumID===false) {
  114. $error = true;
  115. Log::error($database, __METHOD__, __LINE__, 'Could not create album in Lychee (' . $newAlbumID . ')');
  116. continue;
  117. }
  118. if (Import::server($newAlbumID, $file . '/', false)==='Warning: Folder empty or no readable files to process!') {
  119. $error = true;
  120. Log::error($database, __METHOD__, __LINE__, 'Could not import folder. Function returned error');
  121. continue;
  122. }
  123. $contains['albums'] = true;
  124. }
  125. }
  126. # Delete tmpdir if import was successful
  127. if ($error===false&&$useTemp===true&&file_exists(LYCHEE_DATA . $tmpdirname)) {
  128. if (@rmdir(LYCHEE_DATA . $tmpdirname)===false) Log::error($database, __METHOD__, __LINE__, 'Could not delete temp-folder (' . LYCHEE_DATA . $tmpdirname . ') after successful import');
  129. }
  130. if ($contains['photos']===false&&$contains['albums']===false) return 'Warning: Folder empty or no readable files to process!';
  131. if ($contains['photos']===false&&$contains['albums']===true) return 'Notice: Import only contains albums!';
  132. return true;
  133. }
  134. }
  135. ?>