示例#1
0
 /**
  * Fix posts data
  */
 public function fixData($data)
 {
     if (!is_array($data) || empty($data)) {
         return;
     }
     $all_post_ids = $all_post_authors = array();
     // find all post id's and authors
     foreach ($data as $tmp) {
         $all_post_ids[] = $tmp['post_id'];
         $all_post_authors[] = $tmp['author_id'];
     }
     // retrieve comments for these posts
     $Comments = new Application_Model_Comments();
     $post_comments = $Comments->getCommentsForResources($all_post_ids, 'post', $this->show_hidden_comments);
     // retrieve attached images for these posts
     $Images = new Application_Model_Images();
     $post_images = $Images->getPostsImages($all_post_ids);
     // retrieve likes for these posts
     $Likes = new Application_Model_Likes();
     $post_likes = $Likes->getLikesForPosts($all_post_ids, 'post');
     // retrieve authors meta data
     $ProfilesMeta = new Application_Model_ProfilesMeta();
     $profiles_meta = $ProfilesMeta->getMetaForProfiles($all_post_authors);
     // fix posts
     foreach ($data as &$post) {
         // depreciated
         $post['is_reported'] = 0;
         // blend in comments
         if (!empty($post_comments[$post['post_id']])) {
             $comments = $post_comments[$post['post_id']];
             // trigger comments hooks
             Zend_Registry::get('hooks')->trigger('hook_data_comments', $comments);
             $post['comments'] = $comments;
         }
         // blend in images
         if (!empty($post_images[$post['post_id']])) {
             $post['post_images'] = $post_images[$post['post_id']];
         }
         // blend in likes
         if (!empty($post_likes[$post['post_id']])) {
             $post['likes_count'] = $post_likes[$post['post_id']]['likes_count'];
             $post['is_liked'] = $post_likes[$post['post_id']]['is_liked'];
         } else {
             $post['likes_count'] = 0;
             $post['is_liked'] = 0;
         }
         // blend in author meta_data
         if (!empty($profiles_meta[$post['author_id']])) {
             $post['author_meta'] = $profiles_meta[$post['author_id']];
         }
         // shares
         if (isset($post['rich_content_json'])) {
             $rich_content = json_decode($post['rich_content_json']);
             if ($rich_content->type == 'share') {
                 $original_post_id = (int) $rich_content->data->post;
                 if ($original_post_id) {
                     $original_post = $this->getPosts(null, $original_post_id, false, true);
                     if ($original_post !== null) {
                         // copy from original
                         $copycat = $post;
                         $post = $original_post[0];
                         $post['copycat'] = $copycat;
                     } else {
                         // original content was removed
                         $translator = Zend_Registry::get('Zend_Translate');
                         $post['post_content'] = $translator->translate('Resource not available');
                     }
                 }
             }
         }
         // trigger post hooks
         Zend_Registry::get('hooks')->trigger('hook_data_postcontent', $post);
     }
     return $data;
 }
示例#2
0
 /**
  * Permanently remove all profile's associated data
  */
 public function removeAllProfilesData($profile_id)
 {
     // check if exists
     $profile = $this->getProfileByField('id', $profile_id);
     if (!$profile) {
         return false;
     }
     $Images = new Application_Model_Images();
     $Images->removeUsersImages($profile_id);
     $Albums = new Application_Model_Albums();
     $Albums->deleteAlbums($profile_id);
     $Comments = new Application_Model_Comments();
     $Comments->deleteComments($profile_id);
     $Connections = new Application_Model_Connections();
     $Connections->removeUsersConnections($profile_id);
     $Likes = new Application_Model_Likes();
     $Likes->removeUsersLikes($profile_id);
     $Notifications = new Application_Model_Notifications();
     $Notifications->removeUsersNotifications($profile_id);
     $Reports = new Application_Model_Reports();
     $Reports->removeUsersReports($profile_id);
     $Posts = new Application_Model_Posts();
     $Posts->removeUsersPosts($profile_id);
     $Messages = new Application_Model_Messages();
     $Messages->removeUsersMessages($profile_id);
     $ProfilesMeta = new Application_Model_ProfilesMeta();
     $ProfilesMeta->removeMetaForProfile($profile_id);
     return true;
 }
 /**
  * get lightbox data (via ajax)
  */
 public function getlightboxdataAction()
 {
     $Comments = new Application_Model_Comments();
     $Images = new Application_Model_Images();
     $Likes = new Application_Model_Likes();
     $Reports = new Application_Model_Reports();
     $Albums = new Application_Model_Albums();
     $add_comment_form = new Application_Form_AddComment();
     $request = $this->getRequest();
     $resource_id = $request->getParam('resource_id', 0);
     $context = $request->getParam('context');
     $image = $Images->getImage($resource_id, $context);
     if (!$image) {
         $this->getHelper('json')->sendJson(false);
         return;
     }
     $resource_type = 'image';
     $this->view->resource_type = $resource_type;
     $this->view->resource_id = $resource_id;
     $this->view->context = $context;
     $dropdown_options = array();
     $this->view->can_rotate = false;
     if (Zend_Auth::getInstance()->hasIdentity()) {
         // if owner is viewing, add albums for moving
         if ($image['data']['owner_id'] == Zend_Auth::getInstance()->getIdentity()->id) {
             $albums = $Albums->getAlbums(Zend_Auth::getInstance()->getIdentity()->id, false);
             if (!empty($albums)) {
                 foreach ($albums as $album) {
                     $dropdown_options[] = array('id' => $album['id'], 'name' => Zend_Registry::get('Zend_Translate')->translate('Move to ') . $album['name']);
                 }
             }
         }
         // add move to cover / profile options
         if (!empty($dropdown_options)) {
             $dropdown_options[] = array('id' => 'divider');
         }
         $dropdown_options[] = array('id' => 'avatar', 'name' => Zend_Registry::get('Zend_Translate')->translate('Set as profile picture'));
         $dropdown_options[] = array('id' => 'cover', 'name' => Zend_Registry::get('Zend_Translate')->translate('Set as cover picture'));
         // if owner, admin or reviewer - add trash link
         if ($image['data']['uploaded_by'] == Zend_Auth::getInstance()->getIdentity()->id || Zend_Auth::getInstance()->getIdentity()->role == 'admin' || Zend_Auth::getInstance()->getIdentity()->role == 'reviewer') {
             // add trash
             $dropdown_options[] = array('id' => 'divider');
             $dropdown_options[] = array('id' => 'trash', 'name' => Zend_Registry::get('Zend_Translate')->translate('Delete Image'));
         }
         // if owner - add rotate link
         if ($image['data']['uploaded_by'] == Zend_Auth::getInstance()->getIdentity()->id) {
             $this->view->can_rotate = true;
         }
     }
     $this->view->dropdown_options = $dropdown_options;
     // comments
     $show_hidden_comments = $context == 'single' ? true : false;
     $new_comments_data = $Comments->getCommentsForResources(array($resource_id), $resource_type, $show_hidden_comments);
     $add_comment_form->reset();
     $this->view->comments = isset($new_comments_data[$resource_id]) ? $new_comments_data[$resource_id] : array();
     $this->view->add_comment_form = $add_comment_form;
     // likes
     $this->view->is_liked = $Likes->isLiked($resource_id, $resource_type);
     $this->view->likes_count = $Likes->getLikesCount($resource_id, $resource_type);
     // reports
     $this->view->is_reported = $Reports->isReported($resource_id, $resource_type);
     $this->view->resource_owner_name = 'not-used';
     $this->view->btn_title = Zend_Registry::get('Zend_Translate')->translate('Report');
     $this->view->class = 'btn btn-default btn-xs';
     $this->view->image = $image;
     $html = $this->view->render('/partial/lightbox.phtml');
     $this->getHelper('json')->sendJson($html);
 }