123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- <?php
- if (!defined('STATUSNET')) {
- exit(1);
- }
- require_once INSTALLDIR.'/lib/personalgroupnav.php';
- class PhotosAction extends Action
- {
- var $user = null;
- function prepare(array $args = array())
- {
- parent::prepare($args);
- $args = $this->returnToArgs();
- $username = $args[1]['nickname'];
- $this->albumid = $args[1]['albumid'];
- if (common_valid_profile_tag($username) == 0) {
- $this->user = null;
- } else {
- $this->user = Profile::getKV('nickname', $username);
- }
- return true;
- }
- function handle()
- {
- parent::handle();
- $this->showPage();
- }
- function title()
- {
- if (empty($this->user)) {
- return _m('No such user.');
- } else {
- return sprintf(_m("%s's Photos."), $this->user->nickname);
- }
- }
- function showLocalNav()
- {
- $nav = new PersonalGroupNav($this);
- $nav->show();
- }
- function showResizeImagesBox()
- {
- $this->elementStart('select', array('onchange' => 'return scalePhotosToSize(this.value)'));
- $this->element('option', array('value' => ''), "");
- $this->element('option', array('value' => '60'), _("Thumbnail"));
- $this->element('option', array('value' => '120'), _("Medium"));
- $this->element('option', array('value' => '400'), _("Normal"));
- $this->elementEnd('select');
- }
- function showAlbums()
- {
- $album = new GNUsocialPhotoAlbum();
- $album->profile_id = $this->user->id;
- $albums = array();
- if (!$album->find()) {
- GNUsocialPhotoAlbum::newAlbum($this->user->id, 'Default');
- }
- $this->elementStart('div', array('class' => 'galleryheader'));
-
-
-
-
-
- $this->showResizeImagesBox();
- $this->elementEnd('div');
- while ($album->fetch()) {
- $this->elementStart('div', array('class' => 'photocontainer'));
- $this->elementStart('a', array('href' => $album->getPageLink()));
- $this->element('img', array('src' => $album->getThumbUri(),
- 'class' => 'albumingallery'));
- $this->elementEnd('a');
- $this->element('h3', array(), $album->album_name);
- $this->elementEnd('div');
- }
-
- }
-
- function showAlbum($album_id)
- {
- $album = GNUsocialPhotoAlbum::getKV('album_id', $album_id);
- if (!$album) {
- return;
- }
- $page = $_GET['pageid'];
- if (!filter_var($page, FILTER_VALIDATE_INT)){
- $page = 1;
- }
- $photos = GNUsocialPhoto::getGalleryPage($page, $album->album_id, 9);
- $this->elementStart('div', array('class' => 'galleryheader'));
- if ($page > 1) {
- $this->element('a', array('href' => $album->getPageLink() . '?pageid=' . ($page-1)), 'Previous page');
- $this->raw(' | ');
- }
- if (GNUsocialPhoto::getGalleryPage($page+1, $album->album_id, 9)) {
- $this->element('a', array('href' => $album->getPageLink() . '?pageid=' . ($page+1) ), 'Next page');
- $this->raw(' | ');
- }
-
-
-
-
-
-
- $this->showResizeImagesBox();
- $this->elementEnd('div');
- foreach ($photos as $photo) {
- $this->elementStart('a', array('href' => $photo->getPageLink()));
- $this->elementStart('div', array('class' => 'photocontainer'));
- $this->element('img', array('src' => $photo->thumb_uri,
- 'class' => 'photoingallery'));
- $this->element('div', array('class' => 'phototitle'), $photo->title);
- $this->elementEnd('div');
- $this->elementEnd('a');
- }
- }
- function showContent()
- {
- if (!empty($this->albumid))
- $this->showAlbum($this->albumid);
- else
- $this->showAlbums();
- }
- }
|