コード例 #1
0
 /**
  * Collect info from socials
  * (get twitter followers / facebook likes count)
  *
  * @access public
  * @param $post
  */
 public function check_for_sending($post)
 {
     try {
         $date_now = new DateTime('UTC');
         $now = $date_now->getTimestamp();
         $post['schedule_date'] = (int) $post['schedule_date'];
         $social_post = Social_post::inst((int) $post['id']);
         log_message('TASK_DEBUG', __FUNCTION__ . ' > ' . 'ID - ' . $post['id'] . '; sch_date - ' . $post['schedule_date'] . '; now - ' . $now);
         if ($post['schedule_date'] <= $now) {
             $this->load->library('Socializer/Socializer');
             $attachment = $social_post->media;
             if (!is_array($post['post_to_socials'])) {
                 $post['post_to_socials'] = unserialize($post['post_to_socials']);
             }
             if (!is_array($post['post_to_groups'])) {
                 $post['post_to_groups'] = unserialize($post['post_to_groups']);
             }
             if ($attachment->id) {
                 $post['image_name'] = basename($attachment->path);
                 if ($attachment->type == 'video') {
                     Social_post::inst()->_send_video_to_socials($post, $post['user_id']);
                 } else {
                     Social_post::inst()->_send_to_social($post, $post['user_id']);
                 }
             } else {
                 Social_post::inst()->_send_to_social($post, $post['user_id']);
             }
             $social_post->delete();
             log_message('TASK_SUCCESS', __FUNCTION__ . ' > ' . 'ID - ' . $post['id']);
         }
     } catch (Exception $e) {
         log_message('TASK_ERROR', __FUNCTION__ . ' > ' . 'ID - ' . $post['id'] . "\n" . $e->getMessage());
     }
 }
コード例 #2
0
ファイル: hard.php プロジェクト: andrewkrug/repucaution
 public function minutely_posts()
 {
     $posts = Social_post::inst()->where('posting_type', 'schedule')->get();
     foreach ($posts as $_post) {
         $post = $_post->to_array();
         $now = strtotime('now');
         $social_post = Social_post::inst((int) $post['id']);
         if ($post['schedule_date'] > $now - 60 && $post['schedule_date'] < $now + 60) {
             $post['post_to_social'] = array();
             if ($post['posted_to_twitter']) {
                 array_push($post['post_to_social'], 'twitter');
             }
             if ($post['posted_to_facebook']) {
                 array_push($post['post_to_social'], 'facebook');
             }
             $this->load->library('Socializer/Socializer');
             $attachment = $social_post->media;
             if ($attachment->id) {
                 $post['image_name'] = basename($attachment->path);
                 if ($attachment->type == 'video') {
                     Social_post::inst()->_send_video_to_socials($post, $post['user_id']);
                 } else {
                     Social_post::inst()->_send_to_social($post, $post['user_id']);
                 }
             } else {
                 Social_post::inst()->_send_to_social($post, $post['user_id']);
             }
             $social_post->delete();
         }
     }
 }
コード例 #3
0
ファイル: dashboard.php プロジェクト: andrewkrug/repucaution
 public function index()
 {
     if ($this->c_user->isTrialPlanEnds()) {
         $this->addFlash(lang('subscription_ends_error', [site_url('subscript/plans')]), 'error');
     }
     // UNCOMMENT TO USE
     // get average google rank for all keywords for chart in range
     $keyword_rank = Keyword::average_for_range($this->c_user->id, '-30 days', 'today');
     // average result for all the range
     $keywords_trending = Keyword::average_for_range($this->c_user->id, '-30 days', 'today', FALSE);
     // average for each day in range
     // analytics data
     $google_access_token = Access_token::getByTypeAndUserId('googlea', $this->c_user->id);
     list($ga_visits_chart, $ga_visits_count) = $google_access_token->google_analytics_dashboard_visits();
     $review = new Review();
     $last_reviews_count = $review->last_period_count($this->c_user->id, $this->profile->id);
     $review->clear();
     $social_values = Social_value::inst();
     $social_values->set_values($this->c_user->id, $this->profile->id, array('from' => date('Y-m-d', strtotime('-30 days')), 'to' => date('Y-m-d', time())));
     $all_socials_data = $social_values->get_data();
     $monthly_trending = array('reviews' => $review->last_month_trending($this->c_user->id, $this->profile->id), 'traffic' => $ga_visits_chart, 'keywords' => $keywords_trending, 'twitter_followers' => $all_socials_data['twitter'], 'facebook_likes' => $all_socials_data['facebook']);
     $keywordsForHighlight = Mention_keyword::inst()->get_for_highlight($this->c_user->id, 0);
     CssJs::getInst()->add_js('www.google.com/jsapi', 'external', 'footer');
     CssJs::getInst()->add_js(array('libs/lodash.compat.js', 'libs/highcharts/highcharts.js'))->c_js();
     $opportunities = $this->getOpportunities();
     if (!empty($opportunities['web_radar'])) {
         CssJs::getInst()->add_js('controller/webradar/index.js');
     }
     JsSettings::instance()->add(array('monthly_trending' => $monthly_trending, 'dashboard' => true, 'keywords' => $keywordsForHighlight, 'opportunities' => $opportunities));
     $summary = array('reviews' => (int) $last_reviews_count, 'fb_likes' => (int) $all_socials_data['likes_count'], 'twiter_followers' => (int) $all_socials_data['followers_count'], 'web_traffic' => (int) $ga_visits_count, 'google_rank' => (int) round($keyword_rank, 3));
     $this->isSupportScheduledPosts = $this->getAAC()->isGrantedPlan('scheduled_posts');
     $this->load->helper('my_url_helper');
     $this->template->set('isSupportScheduledPosts', $this->isSupportScheduledPosts);
     $this->template->set('socials', Social_post::getActiveSocials($this->profile->id));
     $this->is_user_set_timezone = User_timezone::is_user_set_timezone($this->c_user->id);
     JsSettings::instance()->add(array('twitterLimits' => array('maxLength' => 140, 'midLength' => 117, 'lowLength' => 94), 'twitterLimitsText' => lang('twitter_error'), 'linkedinLimits' => array('maxLength' => 400), 'linkedinLimitsText' => lang('linkedin_error')));
     CssJs::getInst()->add_css(array('custom/pick-a-color-1.css'));
     CssJs::getInst()->add_js(array('libs/jq.file-uploader/jquery.iframe-transport.js', 'libs/jq.file-uploader/jquery.fileupload.js', 'libs/fabric/fabric.min.js', 'libs/fabric/StackBlur.js', 'libs/color/tinycolor-0.9.15.min.js', 'libs/color/pick-a-color-1.2.3.min.js'));
     CssJs::getInst()->c_js('social/create', 'post_update');
     CssJs::getInst()->c_js('social/create', 'post_cron');
     CssJs::getInst()->c_js('social/create', 'post_attachment');
     CssJs::getInst()->c_js('social/create', 'social_limiter');
     CssJs::getInst()->c_js('social/create', 'schedule_block');
     CssJs::getInst()->c_js('social/create', 'bulk_upload');
     $this->template->set('is_user_set_timezone', User_timezone::is_user_set_timezone($this->c_user->id));
     $user_posts = Social_post::inst()->get_user_scheduled_posts($this->c_user->id, $this->profile->id, 1, 3, 'all');
     $this->template->set('posts', $user_posts);
     $this->load->helper('Image_designer_helper');
     $this->template->set('imageDesignerImages', Image_designer::getImages());
     $this->template->set('summary', $summary);
     $this->template->set('opportunities', $opportunities);
     $this->template->set('need_welcome_notification', User_notification::needShowNotification($this->c_user->id, User_notification::WELCOME));
     $this->template->render();
 }
コード例 #4
0
 /**
  * Daily social statistic collect
  * Add new access token to Queue
  *
  * @access public
  * @return void
  */
 public function run()
 {
     $posts = Social_post::inst()->where('posting_type', 'schedule')->get();
     log_message('TASK_DEBUG', __FUNCTION__ . ' > ' . 'scheduled posts count - ' . $posts->result_count());
     $acc = $this->getAAC();
     /** @var Social_post $_post */
     foreach ($posts as $_post) {
         $user = new User($_post->user_id);
         if (!$user->exists()) {
             continue;
         }
         $acc->setUser($user);
         if (!$acc->isGrantedPlan('scheduled_posts')) {
             continue;
         }
         $args = $_post->to_array();
         $this->jobQueue->addJob('tasks/scheduled_posts_task/check_for_sending', $args, array('thread' => self::SCHEDULED_THREAD));
     }
 }
コード例 #5
0
ファイル: scheduled.php プロジェクト: andrewkrug/repucaution
 public function delete($post_id)
 {
     if (Social_post::inst()->delete_scheduled((int) $post_id, $this->c_user->id)) {
         $this->addFlash(lang('delete_scheduled_success'), 'success');
     } else {
         $this->addFlash(lang('delete_scheduled_error'));
     }
     redirect('social/scheduled');
 }
コード例 #6
0
 public static function post_video($feeds, $user_id, $profile_id)
 {
     if ($feeds['posting_type'] != 'schedule') {
         if (isset($feeds['post_id'])) {
             $post = Social_post::inst((int) $feeds['post_id']);
             $post->delete();
         }
         self::_send_video_to_socials($feeds, $user_id);
     } else {
         $post = isset($feeds['post_id']) ? new self((int) $feeds['post_id']) : new self();
         $post->from_array($feeds, array('description', 'posting_type'));
         $post->post_to_groups = serialize($feeds['post_to_groups']);
         $post->post_to_socials = serialize($feeds['post_to_socials']);
         $post->user_id = $user_id;
         $post->profile_id = $profile_id;
         $post->title = 'from ' . clear_domain(site_url());
         $post->category_id = isset($feeds['category_id']) ? (int) $feeds['category_id'] : 0;
         $post->schedule_date = self::_get_schedule_date($feeds);
         $post->timezone = $feeds['timezone'];
         self::_save_attachment($post, $feeds, $user_id);
         $post->save();
     }
 }