/**
  * Renderer for the Metabox.
  */
 public static function render_meta_box()
 {
     $post_id = intval(filter_input(INPUT_POST, 'post_ID'));
     $post = get_post($post_id);
     $adapter = new Instant_Articles_Post($post);
     $article = $adapter->to_instant_article();
     $canonical_url = $adapter->get_canonical_url();
     $submission_status = null;
     $published = 'publish' === $post->post_status;
     Instant_Articles_Wizard::menu_items();
     $settings_page_href = Instant_Articles_Wizard::get_url();
     if ($published) {
         try {
             $fb_app_settings = Instant_Articles_Option_FB_App::get_option_decoded();
             $fb_page_settings = Instant_Articles_Option_FB_Page::get_option_decoded();
             if (isset($fb_app_settings['app_id']) && isset($fb_app_settings['app_secret']) && isset($fb_page_settings['page_access_token']) && isset($fb_page_settings['page_id'])) {
                 // Instantiate a new Client to get the status of this article.
                 $client = Client::create($fb_app_settings['app_id'], $fb_app_settings['app_secret'], $fb_page_settings['page_access_token'], $fb_page_settings['page_id']);
                 $submission_status_id = get_post_meta($post_id, Instant_Articles_Publisher::SUBMISSION_ID_KEY, true);
                 if (!empty($submission_status_id)) {
                     $submission_status = $client->getSubmissionStatus($submission_status_id);
                 } else {
                     // Grab the latest status of this article and display.
                     $article_id = $client->getArticleIDFromCanonicalURL($canonical_url);
                     $submission_status = $client->getLastSubmissionStatus($article_id);
                 }
             }
         } catch (FacebookResponseException $e) {
             $submission_status = null;
         }
     }
     include dirname(__FILE__) . '/meta-box-template.php';
     die;
 }
 /**
  * Gets the login url.
  *
  * @since 0.4
  */
 public function get_login_url()
 {
     if (isset($this->fb_sdk)) {
         $helper = $this->fb_sdk->getRedirectLoginHelper();
         $redirect_url = Instant_Articles_Wizard::get_url();
         $login_url = $helper->getLoginUrl($redirect_url, self::$fb_app_permissions);
         return $login_url;
     }
 }
 function instant_articles_setup_admin_notice()
 {
     global $pagenow;
     if ($pagenow === 'plugins.php' && Instant_Articles_Wizard_State::get_current_state() !== Instant_Articles_Wizard_State::STATE_REVIEW_SUBMISSION) {
         $settings_url = Instant_Articles_Wizard::get_url();
         echo '<div class="updated settings-error notice is-dismissible">';
         echo '<p>Congrats, you\'ve installed the Instant Articles for WP plugin. Now <a href="' . esc_url_raw($settings_url) . '">set it up</a> to start publishing Instant Articles.';
         echo '</div>';
     }
 }
 /**
  * Renderer for the Metabox.
  */
 public static function render_meta_box()
 {
     $ajax_nonce = wp_create_nonce("instant-articles-force-submit");
     $post_id = intval($_POST['post_ID']);
     $post = get_post($post_id);
     $adapter = new Instant_Articles_Post($post);
     $article = $adapter->to_instant_article();
     $canonical_url = $adapter->get_canonical_url();
     $submission_status = null;
     $published = 'publish' === $post->post_status;
     $dev_mode = false;
     $force_submit = get_post_meta($post_id, Instant_Articles_Publisher::FORCE_SUBMIT_KEY, true);
     $should_submit_post = apply_filters('instant_articles_should_submit_post', true, $adapter);
     Instant_Articles_Wizard::menu_items();
     $settings_page_href = Instant_Articles_Wizard::get_url();
     $publishing_settings = Instant_Articles_Option_Publishing::get_option_decoded();
     $publish_with_warnings = $publishing_settings['publish_with_warnings'];
     if ($published) {
         try {
             $fb_app_settings = Instant_Articles_Option_FB_App::get_option_decoded();
             $fb_page_settings = Instant_Articles_Option_FB_Page::get_option_decoded();
             $publishing_settings = Instant_Articles_Option_Publishing::get_option_decoded();
             $dev_mode = isset($publishing_settings['dev_mode']) ? $publishing_settings['dev_mode'] ? true : false : false;
             if (isset($fb_app_settings['app_id']) && isset($fb_app_settings['app_secret']) && isset($fb_page_settings['page_access_token']) && isset($fb_page_settings['page_id'])) {
                 // Instantiate a new Client to get the status of this article.
                 $client = Client::create($fb_app_settings['app_id'], $fb_app_settings['app_secret'], $fb_page_settings['page_access_token'], $fb_page_settings['page_id'], $dev_mode);
                 $submission_status_id = get_post_meta($post_id, Instant_Articles_Publisher::SUBMISSION_ID_KEY, true);
                 if (!empty($submission_status_id)) {
                     $submission_status = $client->getSubmissionStatus($submission_status_id);
                 } else {
                     // Grab the latest status of this article and display.
                     $article_id = $client->getArticleIDFromCanonicalURL($canonical_url);
                     $submission_status = $client->getLastSubmissionStatus($article_id);
                 }
             }
         } catch (FacebookResponseException $e) {
             $submission_status = null;
         }
     }
     include dirname(__FILE__) . '/meta-box-template.php';
     die;
 }
 public static function render($ajax = false)
 {
     if (!current_user_can('manage_options')) {
         wp_die(esc_html('You do not have sufficient permissions to access this page.'));
     }
     try {
         // Read options (they are used on the templates)
         $current_state = Instant_Articles_Wizard_State::get_current_state();
         $fb_page_settings = Instant_Articles_Option_FB_Page::get_option_decoded();
         $fb_app_settings = Instant_Articles_Option_FB_App::get_option_decoded();
         $fb_helper = new Instant_Articles_Wizard_FB_Helper();
         $settings_url = self::get_url();
         // Handle redirection from Login flow
         // ----------------------------------
         // Only during STATE_APP_SETUP
         if ($current_state === Instant_Articles_Wizard_State::STATE_APP_SETUP) {
             $user_access_token = $fb_helper->get_fb_access_token();
             $permissions = $fb_helper->get_fb_permissions($user_access_token);
             // Trigger transition if all needed permissions are granted
             if ($user_access_token && isset($permissions['pages_manage_instant_articles']) && isset($permissions['pages_show_list'])) {
                 Instant_Articles_Wizard_State::do_transition(Instant_Articles_Wizard_State::STATE_PAGE_SELECTION, array('app_id' => $fb_app_settings['app_id'], 'app_secret' => $fb_app_settings['app_secret'], 'user_access_token' => $user_access_token->getValue()));
                 // Override step
                 $current_state = Instant_Articles_Wizard_State::get_current_state();
             }
         }
         // ----------------------------------
         // Handle redirection from Login flow
         // ----------------------------------
         // Only during STATE_PAGE_SELECTION
         if ($current_state === Instant_Articles_Wizard_State::STATE_PAGE_SELECTION) {
             $fb_helper = new Instant_Articles_Wizard_FB_Helper();
             try {
                 $pages = $fb_helper->get_pages();
             } catch (Exception $e) {
                 // If we couldn't fetch the pages, revert to the App setup
                 Instant_Articles_Wizard_State::do_transition(Instant_Articles_Wizard_State::STATE_APP_SETUP);
             }
         }
         // Grabs the current configured style
         // ----------------------------------
         // Only during STATE_STYLE_SELECTION
         if ($current_state === Instant_Articles_Wizard_State::STATE_STYLE_SELECTION) {
             $settings_style = Instant_Articles_Option_Styles::get_option_decoded();
             if (isset($settings_style['article_style']) && !empty($settings_style['article_style'])) {
                 $article_style = $settings_style['article_style'];
             } else {
                 $article_style = 'default';
             }
         }
         // ----------------------------------
         // Check submission status
         // ----------------------------------
         // Only during STATE_REVIEW_SUBMISSION
         if ($current_state === Instant_Articles_Wizard_State::STATE_REVIEW_SUBMISSION) {
             $review_submission_status = Instant_Articles_Wizard_Review_Submission::getReviewSubmissionStatus();
             if ($review_submission_status === Instant_Articles_Wizard_Review_Submission::STATUS_NOT_SUBMITTED) {
                 $articles_for_review = Instant_Articles_Wizard_Review_Submission::getArticlesForReview();
                 // Map to Instant_Articles_Post instances
                 $instant_articles_for_review = array_map(function ($article) {
                     $instant_articles_post = new Instant_Articles_Post($article);
                     // Call transformation to load warnings
                     $instant_articles_post->to_instant_article();
                     return $instant_articles_post;
                 }, $articles_for_review);
                 // Filter articles with warnings and not forced
                 $instant_articles_with_warnings = array_filter($instant_articles_for_review, function ($article) {
                     $has_warnings = count($article->transformer->getWarnings()) > 0;
                     $force_submit = get_post_meta($article->get_the_id(), Instant_Articles_Publisher::FORCE_SUBMIT_KEY, true);
                     return $has_warnings && !$force_submit;
                 });
             }
         }
         // ----------------------------------
         include dirname(__FILE__) . '/templates/wizard-template.php';
     } catch (Exception $e) {
         if (Instant_Articles_Wizard_State::get_current_state() !== Instant_Articles_Wizard_State::STATE_APP_SETUP) {
             // Restarts the wizard
             Instant_Articles_Wizard_State::do_transition(Instant_Articles_Wizard_State::STATE_APP_SETUP);
             echo '<div class="error settings-error notice is-dismissible"><p><strong>' . esc_html('Error processing your request. Check server log for more details. Setup and login again to renew Application credentials. Error message: ' . $e->getMessage()) . '</strong></p></div>';
             Instant_Articles_Wizard::render($ajax, true);
         }
     }
 }