Import.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. # Parse
  24. $urls = str_replace(' ', '%20', $urls);
  25. $urls = explode(',', $urls);
  26. # Set path
  27. $path = __DIR__ . '/../../data/';
  28. foreach ($urls as &$url) {
  29. if (@getimagesize($url)) {
  30. $pathinfo = pathinfo($url);
  31. $filename = $pathinfo['filename'] . '.' . $pathinfo['extension'];
  32. $tmp_name = $path . $filename;
  33. if (!@copy($url, $tmp_name)) return false;
  34. }
  35. }
  36. return Import::server($albumID, $path);
  37. }
  38. static function server($albumID = 0, $path) {
  39. if (!isset($path)) $path = __DIR__ . '/../../uploads/import/';
  40. global $database, $plugins, $settings;
  41. $files = glob($path . '*');
  42. $contains['photos'] = false;
  43. $contains['albums'] = false;
  44. foreach ($files as $file) {
  45. if (@getimagesize($file)) {
  46. # Photo
  47. if (!Import::photo($database, $plugins, $settings, $file, $albumID)) return false;
  48. $contains['photos'] = true;
  49. } else if (is_dir($file)) {
  50. # Folder
  51. $name = mysqli_real_escape_string($database, basename($file));
  52. $album = new Album($database, null, null, null);
  53. $newAlbumID = $album->add('[Import] ' . $name);
  54. if ($newAlbumID!==false) Import::server($newAlbumID, $file . '/');
  55. $contains['albums'] = true;
  56. }
  57. }
  58. if ($contains['photos']===false&&$contains['albums']===false) return 'Warning: Folder empty!';
  59. if ($contains['photos']===false&&$contains['albums']===true) return 'Notice: Import only contains albums!';
  60. return true;
  61. }
  62. }
  63. ?>