Usamos cookies para medir audiência e melhorar sua experiência. Você pode aceitar ou recusar a qualquer momento. Veja sobre o iMasters.
Boa tarde pessoal,
Então gostaria da ajuda de vocês em um plugin que venho modificando há algum tempo porem empaquei nessa parte..
O Plugin se chama Live Blog, ele funciona basicamente fazendo um chat ao vivo.... ( http://wordpress.org/plugins/liveblog/)
O sistema de imagem dele funciona basicamente assim, você arrasta a imagem pro campo de texto e um link é adicionado no campo, ai você escreve oq vc quiser e posta.. eu dei uma modificada na forma como ele aparece mas vamos ao oq interessa..
Como ele tem esse sistema de upload de imagem, eu gostaria de fazer no lado uma área com todas as imagens upadas.. ou seja pegar todas as imagens upadas no decorrer do live blog e colocar pra aparecer ali.. ( Isso automaticamente, ou seja quando eu upo a imagem, ele vai pra atualização e tbm aparece no espaço das imagens.. )
Eu tentei fazer de alguns jeitos mas n consegui..
Vou postar os 2 arquivos principais pra ver se vcs conseguem arrumar alguma solução..
** Eu não manjo muito php, ainda mais com api pra wordpress.. então me desculpem pela "noobisse"
Liveblog.php ( Arquivo principal do plugin )
<?php
/**
* Plugin Name: Liveblog
* Plugin URI: http://wordpress.org/extend/plugins/liveblog/
* Description: Blogging: at the speed of live.
* Version: 1.3
* Author: WordPress.com VIP, Automattic
* Author URI: http://vip.wordpress.com/
* Text Domain: liveblog
*/
if ( ! class_exists( 'WPCOM_Liveblog' ) ) :
/**
* The main Liveblog class used to setup everything this plugin needs.
*
* Liveblog currently uses a custom comment-type to circumvent post cache
* issues frequently experienced by other live-blog implimentations. It comes
* with a simple and effective templating mechanism, complete with all of the
* CSS, JS, and AJAX needed to make this a turn-key installation.
*
* This class is a big container for a bunch of static methods, similar to a
* factory but without object inheritance or instantiation.
*
* Things yet to be implemented:
*
* -- Change "Read More" to "View Liveblog"
* -- Manual refresh button
* -- Allow marking of liveblog as ended
* -- Allow comment modifications; need to store modified date as comment_meta
*/
final class WPCOM_Liveblog {
/ Constants ***********************************************************/
const version = '1.3';
const rewrites_version = 1;
const min_wp_version = '3.5';
const key = 'liveblog';
const url_endpoint = 'liveblog';
const edit_cap = 'publish_posts';
const nonce_key = 'liveblog_nonce';
const refresh_interval = 10; // how often should we refresh
const debug_refresh_interval = 2; // how often we refresh in development mode
const max_consecutive_retries = 100; // max number of failed tries before polling is disabled
const human_time_diff_update_interval = 60; // how often we change the entry human timestamps: "a minute ago"
const delay_threshold = 5; // how many failed tries after which we should increase the refresh interval
const delay_multiplier = 2; // by how much should we inscrease the refresh interval
const fade_out_duration = 5; // how much time should take fading out the background of new entries
/** Variables *************************************************************/
private static $post_id = null;
private static $entry_query = null;
private static $do_not_cache_response = false;
/** Load Methods **********************************************************/
/**
* @uses add_action() to hook methods into WordPress actions
* @uses add_filter() to hook methods into WordPress filters
*/
public static function load() {
load_plugin_textdomain( 'liveblog', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
if ( self::is_wp_too_old() ) {
self::add_old_wp_notice();
return;
}
self::includes();
self::add_actions();
self::add_filters();
self::add_admin_actions();
self::register_embed_handlers();
}
private static function add_old_wp_notice() {
add_action( 'admin_notices', array( 'WPCOM_Liveblog', 'show_old_wp_notice' ) );
}
public static function show_old_wp_notice() {
global $wp_version;
$min_version = self::min_wp_version;
echo self::get_template_part( 'old-wp-notice.php', compact( 'wp_version', 'min_version' ) );
}
/**
* Include the necessary files
*/
private static function includes() {
require( dirname( __FILE__ ) . '/classes/class-wpcom-liveblog-entry.php' );
require( dirname( __FILE__ ) . '/classes/class-wpcom-liveblog-entry-query.php' );
// Manually include ms.php theme-side in multisite environments because
// we need its filesize and available space functions.
if ( ! is_admin() && is_multisite() ) {
require_once( ABSPATH . 'wp-admin/includes/ms.php' );
}
if ( defined( 'WP_CLI' ) && WP_CLI ) {
require( dirname( __FILE__ ) . '/classes/class-wpcom-liveblog-wp-cli.php' );
}
}
/**
* Hook actions in that run on every page-load
*
* @uses add_action()
*/
private static function add_actions() {
add_action( 'init', array( __CLASS__, 'init' ) );
add_action( 'init', array( __CLASS__, 'add_rewrite_rules' ) );
add_action( 'permalink_structure_changed', array( __CLASS__, 'add_rewrite_rules' ) );
// flush the rewrite rules a lot later so that we don't interfere with other plugins using rewrite rules
add_action( 'init', array( __CLASS__, 'flush_rewrite_rules' ), 1000 );
add_action( 'wp_enqueue_scripts', array( __CLASS__, 'enqueue_scripts' ) );
add_action( 'admin_enqueue_scripts', array( __CLASS__, 'admin_enqueue_scripts' ) );
add_action( 'wp_ajax_set_liveblog_state_for_post', array( __CLASS__, 'admin_ajax_set_liveblog_state_for_post' ) );
}
/**
* Hook filters in that run on every page-load
*
* @uses add_filter()
*/
private static function add_filters() {
add_filter( 'template_redirect', array( __CLASS__, 'handle_request' ) );
add_filter( 'comment_class', array( __CLASS__, 'add_comment_class' ), 10, 3 );
}
/**
* Hook actions in that run on every admin page-load
*
* @uses add_action()
* @uses is_admin()
*/
private static function add_admin_actions() {
// Bail if not in admin area
if ( ! is_admin() )
return;
add_action( 'add_meta_boxes', array( __CLASS__, 'add_meta_box' ) );
}
private static function register_embed_handlers() {
// register it to run later, because the regex is pretty general and we don't want it to prevent more specific handlers from running
wp_embed_register_handler( 'liveblog_image', '/\.(png|jpe?g|gif)(\?.*)?$/', array( 'WPCOM_Liveblog', 'image_embed_handler' ), 99 );
}
/** Public Methods ********************************************************/
/**
* Liveblog initialization functions.
*
* This is where Liveblog sets up any additional things it needs to run
* inside of WordPress. Where some plugins would register post types or
* taxonomies, we modify endpoints and add post type support for Liveblog.
*/
public static function init() {
/**
* Add liveblog support to the 'post' post type. This is done here so
* we can possibly introduce this to other post types later.
*/
add_post_type_support( 'post', self::key );
do_action( 'after_liveblog_init' );
}
public function add_rewrite_rules() {
add_rewrite_endpoint( self::url_endpoint, EP_PERMALINK );
}
public static function flush_rewrite_rules() {
if ( get_option( 'liveblog_rewrites_version' ) != self::rewrites_version ) {
flush_rewrite_rules();
update_option( 'liveblog_rewrites_version', self::rewrites_version );
}
}
/**
* This is where a majority of the magic happens.
*
* Hooked to template_redirect, this method tries to add anything it can to
* the current post output. If nothing needs to be added, we redirect back
* to the permalink.
*
* @return If request has been handled
*/
public static function handle_request() {
if ( ! self::is_viewing_liveblog_post() )
return;
self::$post_id = get_the_ID();
self::$entry_query = new WPCOM_Liveblog_Entry_Query( self::$post_id, self::key );
if ( self::is_initial_page_request() )
add_filter( 'the_content', array( __CLASS__, 'add_liveblog_to_content' ) );
else
self::handle_ajax_request();
}
private static function handle_ajax_request() {
$endpoint_suffix = get_query_var( self::url_endpoint );
if ( !$endpoint_suffix ) {
// we redirect, because if somebody accessed <permalink>/liveblog
// they probably did that in the URL bar, not via AJAX
wp_safe_redirect( get_permalink() );
exit();
}
wp_cache_delete( self::key . '_entries_asc_' . self::$post_id, 'liveblog' );
$suffix_to_method = array(
'\d+/\d+' => 'ajax_entries_between',
'crud' => 'ajax_crud_entry',
'preview' => 'ajax_preview_entry',
);
$response_method = 'ajax_unknown';
foreach( $suffix_to_method as $suffix_re => $method ) {
if ( preg_match( "%^$suffix_re/?%", $endpoint_suffix ) ) {
$response_method = $method;
break;
}
}
self::$response_method();
}
/**
* Look for any new Liveblog entries, and return them via JSON
*/
public static function ajax_entries_between() {
// Set some defaults
$latest_timestamp = 0;
$entries_for_json = array();
// Look for entry boundaries
list( $start_timestamp, $end_timestamp ) = self::get_timestamps_from_query();
// Bail if there is no end timestamp
if ( empty( $end_timestamp ) ) {
self::send_user_error( __( 'A timestamp is missing. Correct URL: <permalink>/liveblog/<from>/</to>/', 'liveblog' ) );
}
// Do not cache if it's too soon
if ( $end_timestamp > time() )
self::$do_not_cache_response = true;
// Get liveblog entries within the start and end boundaries
$entries = self::$entry_query->get_between_timestamps( $start_timestamp, $end_timestamp );
if ( empty( $entries ) ) {
do_action( 'liveblog_entry_request_empty' );
self::json_return( array(
'entries' => array(),
'latest_timestamp' => null
) );
}
/**
* Loop through each liveblog entry, set the most recent timestamp, and
* put the JSON data for each entry into a neat little array.
*/
foreach( $entries as $entry ) {
$latest_timestamp = max( $latest_timestamp, $entry->get_timestamp() );
$entries_for_json[] = $entry->for_json();
}
// Setup our data to return via JSON
$result_for_json = array(
'entries' => $entries_for_json,
'latest_timestamp' => $latest_timestamp,
);
do_action( 'liveblog_entry_request', $result_for_json );
self::json_return( $result_for_json );
}
/**
* Is a given post_id a liveblog enabled post?
*
* @global WP_Post $post
* @param int $post_id
* @return bool
*/
public static function is_liveblog_post( $post_id = null ) {
$state = self::get_liveblog_state( $post_id );
return (bool)$state;
}
/**
* Are we viewing a liveblog post?
*
* @uses is_single()
* @uses is_liveblog_post()
* @return bool
*/
public static function is_viewing_liveblog_post() {
return (bool) ( is_single() && self::is_liveblog_post() );
}
/**
* One of: 'enable', 'archive', false.
*/
public static function get_liveblog_state( $post_id = null ) {
if ( empty( $post_id ) ) {
global $post;
$post_id = $post->ID;
}
$state = get_post_meta( $post_id, self::key, true );
// backwards compatibility with older values
if ( 1 == $state ) {
$state = 'enable';
}
return $state;
}
/** Private _is_ Methods **************************************************/
/**
* Is this the initial page request?
*
* Note that we do not use get_query_var() - it returns '' for all requests,
* which is valid for /post-name/liveblog/
*
* @global WP_Query $wp_query
* @return bool
*/
private static function is_initial_page_request() {
global $wp_query;
return (bool) ! isset( $wp_query->query_vars[self::key] );
}
/**
* Is this an ajax request for the entries?
*
* @uses get_query_var() to check for the url_endpoint
* @return bool
*/
private static function is_entries_ajax_request() {
return (bool) get_query_var( self::url_endpoint );
}
/**
* Get timestamps from the current WP_Query
*
* Ensures that two timestamps exist, and returns a properly formatted empty
* array if not.
*
* @return array
*/
private static function get_timestamps_from_query() {
// Look for timestamps and bail if none
$stamps = rtrim( get_query_var( self::url_endpoint ), '/' );
if ( empty( $stamps ) )
return array( false, false );
// Get timestamps from the query variable
$timestamps = explode( '/', $stamps );
// Bail if there are not 2 timestamps
if ( 2 !== count( $timestamps ) )
return array( false, false );
// Return integer timestamps in an array
return array_map( 'intval', $timestamps );
}
public static function ajax_crud_entry() {
self::ajax_current_user_can_edit_liveblog();
self::ajax_check_nonce();
$args = array();
$crud_action = isset( $_POST['crud_action'] ) ? $_POST['crud_action'] : 0;
if ( !in_array( $crud_action, array( 'insert', 'update', 'delete' ) ) ) {
self::send_user_error( sprintf( __( 'Invalid entry crud_action: %s', 'liveblog' ), $crud_action ) );
}
$args['post_id'] = isset( $_POST['post_id'] ) ? intval( $_POST['post_id'] ) : 0;
$args['content'] = isset( $_POST['content'] ) ? $_POST['content'] : '';
$args['entry_id'] = isset( $_POST['entry_id'] ) ? intval( $_POST['entry_id'] ) : 0;
$args['user'] = wp_get_current_user();
$entry = call_user_func( array( 'WPCOM_Liveblog_Entry', $crud_action ), $args );
if ( is_wp_error( $entry ) ) {
self::send_server_error( $entry->get_error_message() );
}
// Do not send latest_timestamp. If we send it the client won't get
// older entries. Since we send only the new one, we don't know if there
// weren't any entries in between.
self::json_return( array(
'entries' => array( $entry->for_json() ),
'latest_timestamp' => null
) );
}
function ajax_preview_entry() {
$entry_content = isset( $_REQUEST['entry_content'] ) ? $_REQUEST['entry_content'] : '';
$entry_content = stripslashes( wp_filter_post_kses( $entry_content ) );
$entry_content = WPCOM_Liveblog_Entry::render_content( $entry_content );
do_action( 'liveblog_preview_entry', $entry_content );
self::json_return( array( 'html' => $entry_content ) );
}
public function ajax_unknown() {
self::send_user_error( __( 'Unknown liveblog action', 'liveblog' ) );
}
/** Comment Methods *******************************************************/
/**
* Add a liveblog class to each comment, so they can be styled
*
* @param array $classes
* @return string
*/
public static function add_comment_class( $classes, $class, $comment_id ) {
if ( self::key == get_comment_type( $comment_id ) )
$classes[] = 'liveblog-entry';
return $classes;
}
public static function admin_enqueue_scripts() {
wp_enqueue_style( self::key, plugins_url( 'css/liveblog-admin.css', __FILE__ ) );
wp_enqueue_script( 'liveblog-admin', plugins_url( 'js/liveblog-admin.js', __FILE__ ) );
wp_localize_script( 'liveblog-admin', 'liveblog_admin_settings', array(
'nonce_key' => self::nonce_key,
'nonce' => wp_create_nonce( self::nonce_key ),
'error_message_template' => __( 'Error {error-code}: {error-message}', 'liveblog' ),
'short_error_message_template' => __( 'Error: {error-message}', 'liveblog' ),
) );
}
/**
* Enqueue the necessary CSS and JS that liveblog needs to function.
*
* @return If not a liveblog post
*/
public static function enqueue_scripts() {
if ( ! self::is_viewing_liveblog_post() )
return;
wp_enqueue_style( self::key, plugins_url( 'css/liveblog.css', __FILE__ ) );
wp_register_script( 'jquery-throttle', plugins_url( 'js/jquery.ba-throttle-debounce.min.js', __FILE__ ) );
wp_register_script( 'moment', plugins_url( 'js/moment.min.js', __FILE__ ), array(), '1.7.2' );
wp_localize_script( 'moment', 'momentLang', array(
'locale' => get_locale(),
'relativeTime' => array(
'past' => __( '%s ago' ),
's' => __( 'a few seconds', 'liveblog' ),
'm' => __( 'a minute', 'liveblog' ),
'mm' => __( '%d minutes', 'liveblog' ),
'h' => __( 'an hour', 'liveblog' ),
'hh' => __( '%d hours', 'liveblog' ),
'd' => __( 'a day', 'liveblog' ),
'dd' => __( '%d days', 'liveblog' ),
'M' => __( 'a month', 'liveblog' ),
'MM' => __( '%d months', 'liveblog' ),
'y' => __( 'a year', 'liveblog' ),
'yy' => __( '%d years', 'liveblog' ),
),
));
wp_enqueue_script( self::key, plugins_url( 'js/liveblog.js', __FILE__ ), array( 'jquery', 'jquery-color', 'backbone', 'jquery-throttle', 'moment' ), self::version, true );
if ( self::is_liveblog_editable() ) {
wp_enqueue_script( 'liveblog-publisher', plugins_url( 'js/liveblog-publisher.js', __FILE__ ), array( self::key ), self::version, true );
wp_enqueue_script( 'liveblog-plupload', plugins_url( 'js/plupload.js', __FILE__ ), array( self::key, 'wp-plupload', 'jquery' ) );
self::add_default_plupload_settings();
}
if ( wp_script_is( 'jquery.spin', 'registered' ) ) {
wp_enqueue_script( 'jquery.spin' );
} else {
wp_enqueue_script( 'spin', plugins_url( 'js/spin.js', __FILE__ ), false, '1.2.4' );
wp_enqueue_script( 'jquery.spin', plugins_url( 'js/jquery.spin.js', __FILE__ ), array( 'jquery', 'spin' ) );
}
wp_localize_script( self::key, 'liveblog_settings',
apply_filters( 'liveblog_settings', array(
'permalink' => get_permalink(),
'post_id' => get_the_ID(),
'state' => self::get_liveblog_state(),
'key' => self::key,
'nonce_key' => self::nonce_key,
'nonce' => wp_create_nonce( self::nonce_key ),
'latest_entry_timestamp' => self::$entry_query->get_latest_timestamp(),
'refresh_interval' => WP_DEBUG? self::debug_refresh_interval : self::refresh_interval,
'max_consecutive_retries'=> self::max_consecutive_retries,
'delay_threshold' => self::delay_threshold,
'delay_multiplier' => self::delay_multiplier,
'fade_out_duration' => self::fade_out_duration,
'endpoint_url' => self::get_entries_endpoint_url(),
// i18n
'delete_confirmation' => __( 'Do you really want do delete this entry? There is no way back.', 'liveblog' ),
'error_message_template' => __( 'Error {error-code}: {error-message}', 'liveblog' ),
'short_error_message_template' => __( 'Error: {error-message}', 'liveblog' ),
'new_update' => __( 'Liveblog: {number} new update' , 'liveblog'),
'new_updates' => __( 'Liveblog: {number} new updates' , 'liveblog'),
) )
);
wp_localize_script( 'liveblog-publisher', 'liveblog_publisher_settings', array(
'loading_preview' => __( 'Loading preview…', 'liveblog' ),
'new_entry_tab_label' => __( 'New Entry', 'liveblog' ),
'new_entry_submit_label' => __( 'Publish Update', 'liveblog' ),
'edit_entry_tab_label' => __( 'Edit Entry', 'liveblog' ),
'edit_entry_submit_label' => __( 'Update', 'liveblog' ),
) );
}
/**
* Sets up some default Plupload settings so we can upload meda theme-side
*
* @global type $wp_scripts
*/
private static function add_default_plupload_settings() {
global $wp_scripts;
$defaults = array(
'runtimes' => 'html5,silverlight,flash,html4',
'file_data_name' => 'async-upload',
'multiple_queues' => true,
'max_file_size' => self::max_upload_size() . 'b',
'url' => admin_url( 'admin-ajax.php', 'relative' ),
'flash_swf_url' => includes_url( 'js/plupload/plupload.flash.swf' ),
'silverlight_xap_url' => includes_url( 'js/plupload/plupload.silverlight.xap' ),
'filters' => array( array( 'title' => __( 'Allowed Files', 'liveblog' ), 'extensions' => '*') ),
'multipart' => true,
'urlstream_upload' => true,
'multipart_params' => array(
'action' => 'upload-attachment',
'_wpnonce' => wp_create_nonce( 'media-form' )
)
);
$settings = array(
'defaults' => $defaults,
'browser' => array(
'mobile' => wp_is_mobile(),
'supported' => _device_can_upload(),
)
);
$script = 'var _wpPluploadSettings = ' . json_encode( $settings ) . ';';
$data = $wp_scripts->get_data( 'wp-plupload', 'data' );
if ( ! empty( $data ) )
$script = "$data\n$script";
$wp_scripts->add_data( 'wp-plupload', 'data', $script );
}
/**
* Get the URL of a specific liveblog entry.
*
* @return string
*/
private static function get_entries_endpoint_url() {
$post_permalink = get_permalink( self::$post_id );
if ( false !== strpos( $post_permalink, '?p=' ) )
$url = add_query_arg( self::url_endpoint, '', $post_permalink ) . '='; // returns something like ?p=1&liveblog=
else
$url = trailingslashit( trailingslashit( $post_permalink ) . self::url_endpoint ); // returns something like /2012/01/01/post/liveblog/
$url = apply_filters( 'liveblog_endpoint_url', $url, self::$post_id );
return $url;
}
/** Display Methods *******************************************************/
/**
* Filter the_content and add the liveblog theme-side UI above the normal
* content area.
*
* @param string $content
* @return string
*/
public static function add_liveblog_to_content( $content ) {
$liveblog_output = '<div id="liveblog-container" class="'. self::$post_id .'">';
$liveblog_output .= self::get_editor_output();
$liveblog_output .= '<div id="liveblog-update-spinner"></div>';
$liveblog_output .= self::get_all_entry_output();
$liveblog_output .= '</div>';
$liveblog_output = apply_filters( 'liveblog_add_to_content', $liveblog_output, $content, self::$post_id );
return $content . $liveblog_output;
}
/**
* Return the posting area for the end-user to liveblog from
*
* @return string
*/
private static function get_editor_output() {
if ( !self::is_liveblog_editable() )
return;
return self::get_template_part( 'liveblog-form.php' );
}
/**
* Get all the liveblog entries for this post
*/
private static function get_all_entry_output() {
// Get liveblog entries
$entries = (array) self::$entry_query->get_all();
$show_archived_message = 'archive' == self::get_liveblog_state() && self::current_user_can_edit_liveblog();
// Get the template part
return self::get_template_part( 'liveblog-loop.php', compact( 'entries', 'show_archived_message' ) );
}
/**
* Get the template part in an output buffer and return it
*
* @param string $template_name
* @param array $template_variables
*/
public static function get_template_part( $template_name, $template_variables = array() ) {
ob_start();
extract( $template_variables );
include( dirname( __FILE__ ) . '/templates/' . $template_name );
return ob_get_clean();
}
/** Admin Methods *********************************************************/
/**
* Register the metabox with the supporting post-type
*
* @param string $post_type
*/
public static function add_meta_box( $post_type ) {
// Bail if not supported
if ( ! post_type_supports( $post_type, self::key ) )
return;
add_meta_box( self::key, __( 'Liveblog', 'liveblog' ), array( __CLASS__, 'display_meta_box' ) );
}
public static function image_embed_handler( $matches, $attr, $url, $rawattr ) {
$embed = sprintf( '<div id="coberturaImg"><a href="%1$s" rel="lightbox[1553]" ><img src="%2$s" alt="" width="130" class="bordaImg" /></a></div>', $url, $url );
return apply_filters( 'embed_liveblog_image', $embed, $matches, $attr, $url, $rawattr );
}
/**
* Output the metabox
*
* @param WP_Post $post
*/
public static function display_meta_box( $post ) {
$current_state = self::get_liveblog_state( $post->ID );
$buttons = array(
'enable' => array( 'value' => 'enable', 'text' => __( 'Enable', 'liveblog' ),
'description' => __( 'Enables liveblog on this post. Posting tools are enabled for editors, visitors get the latest updates.' , 'liveblog'), 'active-text' => sprintf( __( 'There is an <strong>enabled</strong> liveblog on this post. <a href="%s">Visit the liveblog →</a>', 'liveblog' ), get_permalink( $post ) ), 'primary' => true, 'disabled' => false, ),
'archive' => array( 'value' => 'archive', 'text' => __( 'Archive', 'liveblog' ),
'description' => __( 'Archives the liveblog on this post. Visitors still see the liveblog entries, but posting tools are hidden.' , 'liveblog'), 'active-text' => sprintf( __( 'There is an <strong>archived</strong> liveblog on this post. <a href="%s">Visit the liveblog archive →</a>', 'liveblog' ), get_permalink( $post ) ), 'primary' => false, 'disabled' => false ),
);
if ( $current_state ) {
$active_text = $buttons[$current_state]['active-text'];
$buttons[$current_state]['disabled'] = true;
} else {
$active_text = __( 'This is a normal WordPress post, without a liveblog.', 'liveblog' );
$buttons['archive']['disabled'] = true;
}
echo self::get_template_part( 'meta-box.php', compact( 'active_text', 'buttons' ) );
}
public function admin_ajax_set_liveblog_state_for_post() {
$post_id = isset( $_REQUEST['post_id'] )? $_REQUEST['post_id'] : 0;
$new_state = isset( $_REQUEST['state'] )? $_REQUEST['state'] : '';
self::ajax_current_user_can_edit_liveblog();
self::ajax_check_nonce();
if ( !$REQUEST = get_post( $post_id ) ) {
self::send_user_error( __( "Non-existing post ID: $post_id" , 'liveblog') );
}
if ( wp_is_post_revision( $post_id ) ) {
self::send_user_error( __( "The post is a revision: $post_id" , 'liveblog') );
}
self::set_liveblog_state( $post_id, $_REQUEST['state'] );
self::display_meta_box( $REQUEST );
exit;
}
private function set_liveblog_state( $post_id, $state ) {
if ( in_array( $state, array( 'enable', 'archive' ) ) ) {
update_post_meta( $post_id, self::key, $state );
do_action( "liveblog_{$state}_post", $post_id );
} elseif ( 'disable' == $state ) {
delete_post_meta( $post_id, self::key );
do_action( 'liveblog_disable_post', $post_id );
} else {
return false;
}
}
/** Error Methods *********************************************************/
/**
* Can the current user edit liveblog data (non-ajax)
*
* @return bool
*/
public static function current_user_can_edit_liveblog() {
return (bool) current_user_can( apply_filters( 'liveblog_edit_cap', self::edit_cap ) );
}
public static function is_liveblog_editable() {
return self::current_user_can_edit_liveblog() && 'enable' == self::get_liveblog_state();
}
/**
* Can the current user edit liveblog data (ajax)
*
* Sends an error if not
*/
public static function ajax_current_user_can_edit_liveblog() {
if ( ! self::current_user_can_edit_liveblog() ) {
self::send_forbidden_error( __( "Cheatin', uh?", 'liveblog' ) );
}
}
/**
* Check for valid intention, and send an error if there is none
*
* @param string $action
*/
public static function ajax_check_nonce( $action = self::nonce_key ) {
if ( ! isset( $_REQUEST[ self::nonce_key ] ) || ! wp_verify_nonce( $_REQUEST[ self::nonce_key ], $action ) ) {
self::send_forbidden_error( __( 'Sorry, we could not authenticate you.', 'liveblog' ) );
}
}
/** Feedback **************************************************************/
/**
* Send an error message
* @param type $message
*/
private static function send_server_error( $message ) {
self::status_header_with_message( 500, $message );
exit();
}
private static function send_user_error( $message ) {
self::status_header_with_message( 406, $message );
exit();
}
private static function send_forbidden_error( $message ) {
self::status_header_with_message( 403, $message );
exit();
}
/**
* Encode some data and echo it (possibly without cached headers)
*
* @param array $data
*/
private static function json_return( $data ) {
$json_data = json_encode( $data );
header( 'Content-Type: application/json' );
if ( self::$do_not_cache_response )
nocache_headers();
echo $json_data;
exit();
}
/**
* Modify the header and description in the global array
*
* @global array $wp_header_to_desc
* @param int $status
* @param string $message
*/
private static function status_header_with_message( $status, $message ) {
global $wp_header_to_desc;
$status = absint( $status );
$official_message = isset( $wp_header_to_desc[$status] ) ? $wp_header_to_desc[$status] : '';
$wp_header_to_desc[$status] = $message;
status_header( $status );
$wp_header_to_desc[$status] = $official_message;
}
/** Plupload Helpers ******************************************************/
/**
* Convert hours to bytes
*
* @param unknown_type $size
* @return unknown
*/
private static function convert_hr_to_bytes( $size ) {
$size = strtolower( $size );
$bytes = (int) $size;
if ( strpos( $size, 'k' ) !== false )
$bytes = intval( $size ) * 1024;
elseif ( strpos( $size, 'm' ) !== false )
$bytes = intval( $size ) * 1024 * 1024;
elseif ( strpos( $size, 'g' ) !== false )
$bytes = intval( $size ) * 1024 * 1024 * 1024;
return $bytes;
}
/**
* Convert bytes to hour
*
* @param string $bytes
* @return string
*/
private static function convert_bytes_to_hr( $bytes ) {
$units = array( 0 => 'B', 1 => 'kB', 2 => 'MB', 3 => 'GB' );
$log = log( $bytes, 1024 );
$power = (int) $log;
$size = pow( 1024, $log - $power );
return $size . $units[$power];
}
/**
* Get the maximum upload file size
*
* @see wp_max_upload_size()
* @return string
*/
private static function max_upload_size() {
$u_bytes = self::convert_hr_to_bytes( ini_get( 'upload_max_filesize' ) );
$p_bytes = self::convert_hr_to_bytes( ini_get( 'post_max_size' ) );
$bytes = apply_filters( 'upload_size_limit', min( $u_bytes, $p_bytes ), $u_bytes, $p_bytes );
return $bytes;
}
private static function is_wp_too_old() {
global $wp_version;
return version_compare( $wp_version, self::min_wp_version, '<' );
}
}
/**
* Load the one true WPCOM_Liveblog instance
*
* Loaded late on the 'plugins_loaded' hook to allow any other plugin to sneak
* in ahead of it, to add actions, filters, etc...
*
* @uses WPCOM_Liveblog::load()
*/
function wpcom_liveblog_load() {
WPCOM_Liveblog::load();
}
add_action( 'plugins_loaded', 'wpcom_liveblog_load', 999 );
endif;
liveblog-single-entry.php ( Template de como as entradas irão aparecer )
<li>
<div id="liveblog-entry-<?php echo $entry_id; ?>" <?php echo $css_classes; ?> data-timestamp="<?php echo $timestamp; ?>">
<header class="liveblog-meta">
<span class="liveblog-author-avatar"></span>
<span class="liveblog-author-name"></span>
<span class="liveblog-meta-time"><a href="#liveblog-entry-<?php echo $entry_id; ?>"><span class="date"><?php echo $entry_date; ?></span><span class="time"><?php echo $entry_time; ?></span></a></span>
</header>
<div class="liveblog-entry-text" data-original-content="<?php echo esc_attr( $original_content ); ?>">
<?php echo $content; ?>
</div>
<?php if ( $is_liveblog_editable ): ?>
<ul class="liveblog-entry-actions">
<li><button class="liveblog-entry-edit"><?php _e( 'Editar', 'liveblog' ); ?></button><button class="liveblog-entry-delete"><?php _e( 'Deletar', 'liveblog' ); ?></button></li>
</ul>
<?php endif; ?>
</div>
</li>Carregando comentários...