index.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. /**
  3. * ownCloud - gallery application
  4. *
  5. * @author Bartek Przybylski
  6. * @copyright 2012 Bartek Przybylski bartek@alefzero.eu
  7. *
  8. * This library is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  10. * License as published by the Free Software Foundation; either
  11. * version 3 of the License, or any later version.
  12. *
  13. * This library is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. OCP\User::checkLoggedIn();
  23. OCP\App::checkAppEnabled('gallery');
  24. OCP\App::setActiveNavigationEntry( 'gallery_index' );
  25. if (!file_exists(OCP\Config::getSystemValue("datadirectory").'/'. OCP\USER::getUser() .'/gallery')) {
  26. mkdir(OCP\Config::getSystemValue("datadirectory").'/'. OCP\USER::getUser() .'/gallery');
  27. }
  28. if (!isset($_GET['view'])) {
  29. $result = OC_Gallery_Album::find(OCP\USER::getUser());
  30. $r = array();
  31. while ($row = $result->fetchRow())
  32. $r[] = $row;
  33. $tmpl = new OCP\Template( 'gallery', 'index', 'user' );
  34. $tmpl->assign('r', $r);
  35. $tmpl->printPage();
  36. } else {
  37. $result = OC_Gallery_Photo::findForAlbum(OCP\USER::getUser(), $_GET['view']);
  38. $photos = array();
  39. while ($p = $result->fetchRow())
  40. $photos[] = $p['file_path'];
  41. $tmpl = new OCP\Template( 'gallery', 'view_album', 'user' );
  42. $tmpl->assign('photos', $photos);
  43. $tmpl->assign('albumName', $_GET['view']);
  44. $tmpl->printPage();
  45. }
  46. ?>