2009-06-23 02:19:07 +00:00
< ? php
2009-06-26 11:09:54 +00:00
require_once ( 'PluginWonderfulWidget.php' );
2009-06-23 02:19:07 +00:00
class PluginWonderful {
var $messages , $adboxes_client , $publisher_info , $member_id ;
2009-06-26 01:40:41 +00:00
var $widget_prefix = " plugin-wonderful " ;
2009-06-29 10:35:40 +00:00
var $message_types = array (
'CANT_READ' => " can't read " ,
'CANT_PARSE' => " can't parse " ,
'DOWNLOADED' => " downloaded "
);
2009-06-23 02:19:07 +00:00
function PluginWonderful () {}
2009-06-26 11:18:00 +00:00
2009-06-27 13:14:33 +00:00
/**
* Wrapper around file_get_contents for testing purposes .
*/
2009-06-26 11:18:00 +00:00
function _retrieve_url ( $url ) {
return @ file_get_contents ( $url );
}
2009-06-27 13:14:33 +00:00
/**
* Initialize the object if it isn ' t already .
*/
2009-06-26 11:18:00 +00:00
function init () {
2009-07-01 02:50:55 +00:00
global $wp_version ;
2009-06-26 11:18:00 +00:00
if ( empty ( $this -> adboxes_client )) {
$this -> messages = array ();
$this -> adboxes_client = new PWAdboxesClient ();
$this -> _get_publisher_info ();
$this -> _update_database_version ();
2009-07-01 12:17:23 +00:00
$this -> _update_plugin_wonderful ();
if ( ! empty ( $_POST )) { $this -> handle_action (); }
$this -> _update_plugin_wonderful ();
}
}
/**
* Fix PHP 4 ' s full - of - fail object handling .
*/
function _update_plugin_wonderful () {
if ( version_compare ( " 5 " , phpversion (), " > " )) {
global $plugin_wonderful ;
$plugin_wonderful = $this ;
}
}
/**
* Fix PHP 4 ' s full - of - fail object handling .
*/
function _update_this () {
if ( version_compare ( " 5 " , phpversion (), " > " )) {
global $plugin_wonderful ;
foreach (( array ) $plugin_wonderful as $field => $value ) {
$this -> { $field } = $plugin_wonderful -> { $field };
2009-07-01 02:50:55 +00:00
}
2009-06-26 11:18:00 +00:00
}
}
2009-06-27 13:14:33 +00:00
/**
* Wrapper around PublisherInfo generation for testing .
*/
2009-06-26 11:18:00 +00:00
function _get_new_publisher_info_object () {
return new PublisherInfo ();
}
2009-06-27 13:14:33 +00:00
/**
* Check to see if the database schema needs to be updated .
*/
2009-06-26 11:18:00 +00:00
function _update_database_version () {
$result = get_option ( 'plugin-wonderful-database-version' );
if ( empty ( $result ) || ( $result < PLUGIN_WONDERFUL_DATABASE_VERSION )) {
if ( $this -> adboxes_client -> initialize ( true )) {
update_option ( 'plugin-wonderful-database-version' , PLUGIN_WONDERFUL_DATABASE_VERSION );
} else {
$this -> messages [] = " Unable to update database schema! " ;
}
}
}
2009-06-27 13:14:33 +00:00
/**
* Get publisher info ( adboxes ) from cache or from Project Wonderful .
* @ return PublisherInfo | boolean The PublisherInfo object with adbox information , or false if there was a problem .
*/
2009-06-26 11:18:00 +00:00
function _get_publisher_info () {
$this -> publisher_info = false ;
$member_id = get_option ( 'plugin-wonderful-memberid' );
2009-07-01 12:17:23 +00:00
2009-06-26 11:18:00 +00:00
if ( is_numeric ( $member_id )) {
$member_id = ( int ) $member_id ;
$this -> publisher_info = $this -> adboxes_client -> get_ads ( $member_id );
$last_update = get_option ( 'plugin-wonderful-last-update' ) ;
if ( ! is_numeric ( $last_update )) { $last_update = 0 ; }
$last_update = ( int ) $last_update ;
if (( $last_update + PLUGIN_WONDERFUL_UPDATE_TIME ) < time ()) {
2009-06-29 10:42:38 +00:00
$this -> _download_project_wonderful_data ( $member_id );
2009-06-26 11:18:00 +00:00
}
}
return $this -> publisher_info ;
}
2009-06-26 01:40:41 +00:00
2009-06-23 02:19:07 +00:00
function insert_rss_feed_ads ( $content ) {
2009-07-01 12:17:23 +00:00
$this -> _update_this ();
2009-06-23 02:19:07 +00:00
if ( is_feed ()) {
if ( $this -> publisher_info !== false ) {
foreach ( $this -> publisher_info -> adboxes as $adbox ) {
if ( $adbox -> in_rss_feed == 1 ) {
if ( preg_match ( " #<noscript>(.*)</noscript>#mis " , $adbox -> advancedcode , $matches ) > 0 ) {
echo $matches [ 1 ];
}
}
}
}
}
return $content ;
}
2009-06-27 13:44:18 +00:00
/**
* Inject ads into the body copy of posts .
* @ param string $body The body to search for PW () tags .
* @ return string The modified body .
*/
2009-06-23 02:19:07 +00:00
function inject_ads_into_body_copy ( $body ) {
2009-07-01 12:17:23 +00:00
$this -> _update_this ();
2009-06-23 02:19:07 +00:00
if ( $this -> publisher_info !== false ) {
if ( get_option ( " plugin-wonderful-enable-body-copy-embedding " ) == 1 ) {
return $this -> publisher_info -> inject_ads_into_body_copy ( $body , ( get_option ( " plugin-wonderful-use-standardcode " ) == 1 ));
}
}
return $body ;
}
function set_up_menu () {
add_options_page ( 'Plugin Wonderful' , __ ( " Plugin Wonderful " , 'plugin-wonderful' ), 5 , __FILE__ , array ( $this , " plugin_wonderful_main " ));
}
function handle_activation () {
2009-06-26 11:18:00 +00:00
$this -> init ();
2009-06-23 02:19:07 +00:00
$this -> adboxes_client -> initialize ();
}
function plugin_wonderful_main () {
2009-07-01 12:17:23 +00:00
$this -> _update_this ();
2009-07-01 02:50:55 +00:00
$this -> show_view ( new PluginWonderfulViewMain ());
2009-06-23 02:19:07 +00:00
}
function show_messages () {
if ( count ( $this -> messages ) > 0 ) {
echo '<div id="message" class="updated fade below-h2">' ;
foreach ( $this -> messages as $message ) { echo '<p>' . $message . '</p>' ; }
echo '</div>' ;
}
}
2009-07-01 02:50:55 +00:00
function show_view ( $view ) {
if ( is_object ( $view ) && method_exists ( $view , 'render' )) {
2009-07-02 00:55:55 +00:00
$info = get_plugin_data ( realpath ( dirname ( __FILE__ ) . '/../plugin-wonderful.php' ));
2009-06-23 02:19:07 +00:00
echo '<div class="wrap">' ;
echo '<div id="icon-edit" class="icon32"><br /></div>' ;
echo '<h2>' . __ ( " Plugin Wonderful " , 'plugin-wonderful' ) . '</h2>' ;
$this -> show_messages ();
2009-07-01 02:50:55 +00:00
$view -> render ();
2009-06-23 02:19:07 +00:00
echo '<div style="margin-top: 20px; border-top: solid #E3E3E3 1px; overflow: hidden">' ;
echo '<form style="float: right; display: inline" action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="cmd" value="_s-xclick"><input type="hidden" name="hosted_button_id" value="3215507"><input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" border="0" name="submit" alt=""><img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"></form>' ;
echo sprintf ( __ ( '%1$s Version %2$s by %3$s' , 'plugin-wonderful' ), $info [ 'Title' ], $info [ 'Version' ], $info [ 'Author' ]) . ' | ' ;
echo __ ( '<a href="http://www.projectwonderful.com/login.php">Manage your Project Wonderful publisher account</a>' , 'plugin-wonderful' );
2009-07-01 12:20:28 +00:00
if ( version_compare ( phpversion (), " 5 " , " < " )) {
echo ' | <a href="http://www.linode.com/?r=3fdf41e740d3ada4e91d4b3b86bb3e011be260f0">' . __ ( 'Move away from PHP 4 and support Plugin Wonderful' , 'plugin-wonderful' ) . '</a>' ;
}
2009-06-23 02:19:07 +00:00
echo '<br style="clear: both" />' ;
echo '</div>' ;
echo '</div>' ;
} else {
2009-07-02 02:02:03 +00:00
var_dump ( $view ); // ignore var_dump
2009-06-23 02:19:07 +00:00
}
}
function handle_action () {
2009-06-29 01:53:23 +00:00
if ( ! empty ( $_POST [ '_pw_nonce' ])) {
if ( wp_verify_nonce ( $_POST [ '_pw_nonce' ], 'plugin-wonderful' )) {
2009-07-01 04:01:48 +00:00
$action = " handle_action_ " . str_replace ( " - " , " _ " , preg_replace ( '#[^a-z0-9\-]#' , '' , strtolower ( $_POST [ '_pw_action' ])));
2009-07-01 12:17:23 +00:00
if ( method_exists ( $this , $action )) { $this -> { $action }(); }
2009-06-29 01:53:23 +00:00
}
2009-06-26 11:18:00 +00:00
}
2009-06-23 02:19:07 +00:00
}
function handle_action_change_adbox_settings () {
2009-06-29 02:32:17 +00:00
$member_id = get_option ( 'plugin-wonderful-memberid' );
if ( is_numeric ( $member_id )) {
$changes = array (
'template_tag_id' => array (),
'in_rss_feed' => array ()
);
2009-06-23 02:19:07 +00:00
if ( is_array ( $this -> publisher_info -> adboxes )) {
$new_boxes = array ();
foreach ( $this -> publisher_info -> adboxes as $box ) {
2009-06-29 02:32:17 +00:00
if ( isset ( $_POST [ 'template_tag_id' ][ $box -> adboxid ])) {
$tag = $_POST [ 'template_tag_id' ][ $box -> adboxid ];
$prior_value = $box -> template_tag_id ;
$tag = $this -> adboxes_client -> trim_field ( 'template_tag_id' , $tag );
$this -> adboxes_client -> set_template_tag ( $box -> adboxid , $tag );
$box -> template_tag_id = $tag ;
if ( ! empty ( $tag ) && ( $prior_value != $tag )) {
$this -> messages [] = sprintf ( __ ( 'Template tag identifier for ad <strong>%1$s</strong> set to <strong>%2$s</strong>.' , 'plugin-wonderful' ), $box -> adboxid , $tag );
$changes [ 'template_tag_id' ][ $box -> adboxid ] = " set " ;
} else {
if ( ! empty ( $prior_value ) && empty ( $tag )) {
$this -> messages [] = sprintf ( __ ( 'Template tag identifier for ad <strong>%s</strong> removed.' , 'plugin-wonderful' ), $box -> adboxid );
$changes [ 'template_tag_id' ][ $box -> adboxid ] = " removed " ;
}
}
}
if ( ! empty ( $_POST [ 'in_rss_feed' ][ $box -> adboxid ])) {
2009-06-23 02:19:07 +00:00
$this -> adboxes_client -> set_rss_feed_usage ( $box -> adboxid , true );
if ( $box -> in_rss_feed == 0 ) {
$this -> messages [] = sprintf ( __ ( 'RSS feed usage for ad <strong>%1$s</strong> enabled.' , 'plugin-wonderful' ), $box -> adboxid );
2009-06-29 02:32:17 +00:00
$changes [ 'in_rss_feed' ][ $box -> adboxid ] = " enabled " ;
2009-06-23 02:19:07 +00:00
}
$box -> in_rss_feed = " 1 " ;
} else {
$this -> adboxes_client -> set_rss_feed_usage ( $box -> adboxid , false );
if ( $box -> in_rss_feed == 1 ) {
$this -> messages [] = sprintf ( __ ( 'RSS feed usage for ad <strong>%1$s</strong> disabled.' , 'plugin-wonderful' ), $box -> adboxid );
2009-06-29 02:32:17 +00:00
$changes [ 'in_rss_feed' ][ $box -> adboxid ] = " disabled " ;
2009-06-23 02:19:07 +00:00
}
$box -> in_rss_feed = " 0 " ;
}
2009-06-29 02:32:17 +00:00
2009-06-23 02:19:07 +00:00
$new_boxes [] = $box ;
}
2009-06-29 02:32:17 +00:00
2009-06-23 02:19:07 +00:00
$this -> publisher_info -> adboxes = $new_boxes ;
}
2009-06-29 02:32:17 +00:00
} else {
return null ;
2009-06-23 02:19:07 +00:00
}
if ( count ( $this -> messages ) == 0 ) {
$this -> messages [] = __ ( " No changes to adboxes were made. " , 'plugin-wonderful' );
}
2009-07-01 12:17:23 +00:00
2009-06-29 02:32:17 +00:00
return $changes ;
2009-06-23 02:19:07 +00:00
}
2009-06-29 10:35:40 +00:00
function _download_project_wonderful_data ( $member_id ) {
2009-07-01 12:17:23 +00:00
global $plugin_wonderful ;
2009-06-29 10:35:40 +00:00
if (( $result = $this -> _retrieve_url ( sprintf ( PLUGIN_WONDERFUL_XML_URL , $member_id ))) !== false ) {
$this -> publisher_info = $this -> _get_new_publisher_info_object ();
2009-07-01 12:17:23 +00:00
if ( $this -> publisher_info -> parse ( $result )) {
2009-06-29 10:35:40 +00:00
$this -> adboxes_client -> post_ads ( $this -> publisher_info );
2009-07-01 12:17:31 +00:00
update_option ( 'plugin-wonderful-last-update' , time ());
2009-06-29 10:35:40 +00:00
return $this -> message_types [ 'DOWNLOADED' ];
} else {
$this -> publisher_info = false ;
return $this -> message_types [ 'CANT_PARSE' ];
}
} else {
$this -> publisher_info = false ;
return $this -> message_types [ 'CANT_READ' ];
}
}
2009-06-23 02:19:07 +00:00
function handle_action_rebuild_database () {
$this -> adboxes_client -> destroy ();
$this -> adboxes_client -> initialize ();
$this -> messages [] = __ ( " Adbox database destroyed and rebuilt. " , 'plugin-wonderful' );
2009-06-29 10:35:40 +00:00
$result = get_option ( 'plugin-wonderful-memberid' );
if ( ! empty ( $result )) {
switch ( $this -> _download_project_wonderful_data ( $result )) {
case $this -> message_types [ 'DOWNLOADED' ] :
$this -> messages [] = __ ( 'Adbox information redownloaded.' , 'plugin-wonderful' );
break ;
case $this -> message_types [ 'CANT_PARSE' ] :
2009-06-23 02:19:07 +00:00
$this -> messages [] = __ ( " Unable to parse publisher data from Project Wonderful. " , 'plugin-wonderful' );
2009-06-29 10:35:40 +00:00
break ;
case $this -> message_types [ 'CANT_READ' ] :
$this -> messages [] = __ ( " Unable to read publisher data from Project Wonderful. " , 'plugin-wonderful' );
break ;
2009-06-23 02:19:07 +00:00
}
}
}
function handle_action_change_memberid () {
2009-06-29 11:05:41 +00:00
$original_member_id = get_option ( 'plugin-wonderful-memberid' );
$trimmed_post_memberid = trim ( $_POST [ 'memberid' ]);
if ( $trimmed_post_memberid ) {
if ( $trimmed_post_memberid === ( string )( int ) $trimmed_post_memberid ) {
if ( $original_member_id !== $trimmed_post_memberid ) {
update_option ( 'plugin-wonderful-memberid' , ( int ) $trimmed_post_memberid );
switch ( $this -> _download_project_wonderful_data (( int ) $_POST [ 'memberid' ])) {
case $this -> message_types [ 'DOWNLOADED' ] :
$this -> messages [] = sprintf ( __ ( 'Member number changed to %s and adbox information redownloaded.' , 'plugin-wonderful' ), ( int ) $_POST [ 'memberid' ]);
break ;
case $this -> message_types [ 'CANT_PARSE' ] :
$this -> messages [] = __ ( " Unable to parse publisher data from Project Wonderful. " , 'plugin-wonderful' );
break ;
case $this -> message_types [ 'CANT_READ' ] :
$this -> messages [] = __ ( " Unable to read publisher data from Project Wonderful. " , 'plugin-wonderful' );
break ;
}
2009-06-23 02:19:07 +00:00
}
} else {
$this -> messages [] = __ ( " Member numbers need to be numeric. " , 'plugin-wonderful' );
$this -> publisher_info = false ;
2009-06-29 11:05:41 +00:00
update_option ( 'plugin-wonderful-memberid' , " " );
2009-06-23 02:19:07 +00:00
}
} else {
$this -> messages [] = __ ( " Existing adbox information removed. " , 'plugin-wonderful' );
$this -> publisher_info = false ;
2009-06-29 11:05:41 +00:00
update_option ( 'plugin-wonderful-memberid' , " " );
2009-06-23 02:19:07 +00:00
}
foreach ( array ( 'use-standardcode' , 'enable-body-copy-embedding' ) as $field ) {
update_option ( " plugin-wonderful- ${ field } " , isset ( $_POST [ $field ]) ? " 1 " : " 0 " );
}
2009-06-29 11:05:41 +00:00
if ( count ( $this -> messages ) == 0 ) {
$this -> messages [] = __ ( " Options updated. " , 'plugin-wonderful' );
}
2009-06-23 02:19:07 +00:00
}
2009-06-29 10:57:05 +00:00
function _render_adbox ( $adboxid , $center = false ) {
if ( $this -> publisher_info !== false ) {
foreach ( $this -> publisher_info -> adboxes as $adbox ) {
if (( $adbox -> adboxid == $adboxid ) || ( $adbox -> template_tag_id == $adboxid )) {
if ( get_option ( " plugin-wonderful-use-standardcode " ) == 1 ) {
$output = $adbox -> standardcode ;
} else {
$output = $adbox -> advancedcode ;
}
if ( $center == 1 ) {
$output = " <center> { $output } </center> " ;
}
echo $output ;
break ;
}
}
}
}
2009-07-01 02:50:55 +00:00
function _render_adbox_admin ( $instance , $field_names ) {
if ( $this -> publisher_info !== false ) {
echo '<p>' ;
echo 'Select an adbox:<br />' ;
foreach ( $this -> publisher_info -> adboxes as $box ) {
2009-07-02 02:02:03 +00:00
if ( empty ( $instance [ 'adboxid' ])) { $instance [ 'adboxid' ] = $box -> adboxid ; }
2009-07-01 02:50:55 +00:00
echo '<label>' ;
echo '<input type="radio" name="'
. $field_names [ 'adboxid' ]
. '" value="'
. $box -> adboxid
. '" '
. (( $instance [ 'adboxid' ] == $box -> adboxid ) ? 'checked="checked"' : " " )
. ' />' ;
2009-07-02 00:55:55 +00:00
echo '<acronym title="' . $box -> sitename . '">' ;
echo $box -> adtype . " " . $box -> dimensions . " ( " . $box -> adboxid . " ) " ;
echo '</acronym>' ;
2009-07-01 02:50:55 +00:00
echo " </label> " ;
echo " <br /> " ;
}
echo '</p>' ;
echo '<p>' ;
echo '<label>' ;
echo '<input type="checkbox" value="1" name="' . $field_names [ 'center' ] . '" ' . (( $instance [ 'center' ] == 1 ) ? 'checked="checked"' : " " ) . ' /> ' ;
echo 'Wrap ad in <center> tags' ;
echo '</label>' ;
echo '</p>' ;
}
}
function render_pre28_widget () {
2009-07-01 12:17:23 +00:00
$this -> _update_this ();
2009-07-01 02:50:55 +00:00
$data = get_option ( 'plugin-wonderful-pre28-widget-info' );
if ( is_array ( $data )) {
if ( count ( array_intersect ( array_keys ( $data ), array ( " adboxid " , " center " ))) == 2 ) {
if ( $this -> publisher_info !== false ) {
foreach ( $this -> publisher_info -> adboxes as $adbox ) {
if ( $adbox -> adboxid == $data [ 'adboxid' ]) {
$this -> _render_adbox ( $data [ 'adboxid' ], ! empty ( $data [ 'center' ]));
}
}
}
}
}
}
2009-07-01 04:01:48 +00:00
function _normalize_pre28_option ( $data = null ) {
2009-07-01 02:50:55 +00:00
$instance = array (
'adboxid' => false ,
'center' => 0
);
2009-07-01 04:01:48 +00:00
if ( ! is_array ( $data )) {
$data = get_option ( 'plugin-wonderful-pre28-widget-info' );
}
2009-07-01 02:50:55 +00:00
if ( is_array ( $data )) {
foreach ( $data as $field => $value ) {
if ( isset ( $instance [ $field ])) {
if ( is_numeric ( $value )) {
$instance [ $field ] = $value ;
}
}
}
}
update_option ( 'plugin-wonderful-pre28-widget-info' , $instance );
return $instance ;
}
function render_pre28_widget_control () {
2009-07-01 12:17:23 +00:00
$this -> _update_this ();
2009-07-01 02:50:55 +00:00
$instance = $this -> _normalize_pre28_option ();
echo '<input type="hidden" name="_pw_nonce" value="' . wp_create_nonce ( 'plugin-wonderful' ) . '" />' ;
echo '<input type="hidden" name="_pw_action" value="update-pre28-widget" />' ;
$this -> _render_adbox_admin ( $instance , array ( 'adboxid' => 'pw[adboxid]' , 'center' => 'pw[center]' ));
}
2009-07-01 04:01:48 +00:00
function handle_action_update_pre28_widget () {
if ( isset ( $_POST [ 'pw' ])) {
$this -> _normalize_pre28_option ( $_POST [ 'pw' ]);
}
}
2009-06-23 02:19:07 +00:00
}
function the_project_wonderful_ad ( $adboxid ) {
2009-06-29 10:57:05 +00:00
global $plugin_wonderful ;
$plugin_wonderful -> _render_adbox ( $adboxid );
2009-06-23 02:19:07 +00:00
}
2009-06-27 13:14:33 +00:00
?>