예제 #1
0
function bebop_facebook_import($extension, $user_metas = null)
{
    global $wpdb, $bp;
    if (empty($extension)) {
        bebop_tables::log_general('Importer', 'The $extension parameter is empty.');
        return false;
    } else {
        if (!bebop_tables::check_option_exists('bebop_' . $extension . '_consumer_key')) {
            bebop_tables::log_general('Importer', 'No consumer key was found for ' . $extension);
            return false;
        } else {
            $this_extension = bebop_extensions::bebop_get_extension_config_by_name($extension);
        }
    }
    //item counter for in the logs
    $itemCounter = 0;
    //if no user_metas are supplied, serarch for them.
    if (!isset($user_metas)) {
        $user_metas = bebop_tables::get_user_ids_from_meta_name('bebop_' . $this_extension['name'] . '_oauth_token');
    }
    if (isset($user_metas)) {
        foreach ($user_metas as $user_meta) {
            $errors = null;
            $items = null;
            //Ensure the user is currently wanting to import items.
            if (bebop_tables::get_user_meta_value($user_meta->user_id, 'bebop_' . $this_extension['name'] . '_active_for_user') == 1) {
                //if it is the first import, update the flag.
                if (bebop_tables::check_for_first_import($user_meta->user_id, $this_extension['name'], 'bebop_' . $this_extension['name'] . '_do_initial_import')) {
                    bebop_tables::delete_from_first_importers($user_meta->user_id, $this_extension['name'], 'bebop_' . $this_extension['name'] . '_do_initial_import');
                }
                /* 
                 * ******************************************************************************************************************
                 * Depending on the data source, you will need to switch how the data is retrieved. If the feed is RSS, use the 	*
                 * SimplePie method, as shown in the youtube extension. If the feed is oAuth API based, use the oAuth implementation*
                 * as shown in the twitter extension. If the feed is an API without oAuth authentication, use SlideShare			*
                 * ******************************************************************************************************************
                 */
                $data_request = new bebop_data();
                $params = array('limit' => '30', 'access_token' => bebop_tables::get_user_meta_value($user_meta->user_id, 'bebop_' . $this_extension['name'] . '_oauth_token'));
                $data = $data_request->execute_request($this_extension['data_feed'], $params);
                $items = json_decode($data);
                /* 
                 * ******************************************************************************************************************
                 * We can get as far as loading the items, but you will need to adjust the values of the variables below to match 	*
                 * the values from the extension's API.																				*
                 * This is because each API return data under different parameter names, and the simplest way to get around this is *
                 * to quickly match the values. To find out what values you should be using, consult the provider's documentation.	*
                 * You can also contact us if you get stuck - details are in the 'support' section of the admin homepage.			*
                 * ******************************************************************************************************************
                 * 
                 * Values you will need to check and update are:
                 *		$errors 				- Must point to the error boolean value (true/false)
                 *		$username				- Must point to the value holding the username of the person.
                 *		$id						- Must be the ID of the item returned through the data API.
                 *		$item_content			- The actual content of the imported item.
                 *		$item_published			- The time the item was published.
                 *		$action_link			- This is where the link will point to - i.e. where the user can click to get more info.
                 */
                //Edit the following two variables to point to where the relevant content is being stored in the API:
                if (isset($items->error)) {
                    bebop_tables::log_error(sprintf(__('Importer - %1$s', 'bebop'), $this_extension['display_name']), sprintf(__('Feed Error: %1$s', 'bebop'), serialize($data->error)));
                } else {
                    if (!bebop_tables::check_user_meta_exists($user_meta->user_id, 'bebop_' . $this_extension['name'] . '_username')) {
                        $get_username = true;
                    } else {
                        $get_username = false;
                        $username = bebop_tables::get_user_meta_value($user_meta->user_id, 'bebop_' . $this_extension['name'] . '_username');
                    }
                    if ($items) {
                        foreach ($items->data as $item) {
                            //if its a story, break as we only want wall posts, not comments.
                            if (isset($item->message)) {
                                //if the username doesnt exist, add it.
                                if ($get_username == true) {
                                    $this_user_id = substr($item->id, 0, strpos($item->id, '_'));
                                    $user_query_data = $data_request->execute_request($this_extension['people_data'] . $this_user_id);
                                    $user = json_decode($user_query_data);
                                    $username = $user->name;
                                    bebop_tables::update_user_meta($user_meta->user_id, $this_extension['name'], 'bebop_' . $this_extension['name'] . '_username', $username);
                                    $get_username = false;
                                }
                                if (!bebop_filters::import_limit_reached($this_extension['name'], $user_meta->user_id, $username)) {
                                    //Edit the following three variables to point to where the relevant content is being stored:
                                    $id = $item->id;
                                    $item_content = $item->message;
                                    $item_published = gmdate('Y-m-d H:i:s', strtotime($item->created_time));
                                    if (isset($item->actions[0]->link)) {
                                        $action_link = $item->actions[0]->link;
                                    } else {
                                        if (isset($item->link)) {
                                            $action_link = $item->link;
                                        }
                                    }
                                    //Stop editing - you should be all done.
                                    //generate an $item_id
                                    $item_id = bebop_generate_secondary_id($user_meta->user_id, $id, $item_published);
                                    //if the id is not found, import the content.
                                    if (!bebop_tables::check_existing_content_id($user_meta->user_id, $this_extension['name'], $item_id)) {
                                        if (bebop_create_buffer_item(array('user_id' => $user_meta->user_id, 'extension' => $this_extension['name'], 'type' => $this_extension['content_type'], 'username' => $username, 'content' => $item_content, 'content_oembed' => $this_extension['content_oembed'], 'item_id' => $item_id, 'raw_date' => $item_published, 'actionlink' => $action_link))) {
                                            $itemCounter++;
                                        }
                                    }
                                }
                            }
                            //End if ( isset( $item->message ) ) {
                            unset($item);
                        }
                    }
                }
                //End else
                unset($user_meta);
            }
        }
    }
    //return the result
    return $itemCounter . ' ' . $this_extension['content_type'] . 's';
}
예제 #2
0
 * '$extension' controls content on this page and is set to whatever admin-settings.php file is being viewed.
 * i.e. if you extension name is 'my_extension', the value of $extension will be 'my_extension'.
 * The extension has to exist if this page is being included.
 */
$query_string = bp_action_variables();
if (!empty($query_string)) {
    $provider = $query_string[0];
}
$extension = bebop_extensions::bebop_get_extension_config_by_name(strtolower($provider));
//put some options into variables
$variable_name = 'bebop_' . $extension['name'] . '_active_for_user';
//the name of the variable
${$variable_name} = bebop_tables::get_user_meta_value($bp->loggedin_user->id, 'bebop_' . $extension['name'] . '_active_for_user');
//the value of the variable
if (bebop_tables::get_option_value('bebop_' . $extension['name'] . '_provider') == 'on' && bebop_tables::get_option_value('bebop_' . $extension['name'] . '_consumer_key')) {
    if (bebop_tables::get_user_meta_value($bp->loggedin_user->id, 'bebop_' . $extension['name'] . '_oauth_token') && bebop_tables::check_user_meta_exists($bp->loggedin_user->id, 'bebop_' . $extension['name'] . '_username')) {
        echo '<h5>' . sprintf(__('%1$s Settings', 'bebop'), $extension['display_name']) . '</h5>
		<p>' . sprintf(__('Generic settings for %1$s. Here you can select whether content is actively imported into WordPress.', 'bebop'), $extension['display_name']) . '</p>';
        echo '<form id="settings_form" action="' . $bp->loggedin_user->domain . bp_current_component() . '/' . bp_current_action() . '/' . $extension['name'] . '" method="post">
		<label>' . sprintf(__('Enable %1$s import', 'bebop'), $extension['display_name']) . ':</label>
		<input type="radio" name="bebop_' . $extension['name'] . '_active_for_user" id="bebop_' . $extension['name'] . '_active_for_user" value="1"';
        if (${$variable_name} == 1) {
            echo 'checked';
        }
        echo '>
		<label for="yes">';
        _e('Yes', 'bebop');
        echo '</label>
		<input type="radio" name="bebop_' . $extension['name'] . '_active_for_user" id="bebop_' . $extension['name'] . '_active_for_user" value="0"';
        if (${$variable_name} == 0) {
            echo 'checked';
예제 #3
0
 function remove_user_meta($user_id, $meta_name)
 {
     //function to remove user meta from the user_meta table.
     global $wpdb;
     if (bebop_tables::check_user_meta_exists($user_id, $meta_name) == true) {
         $meta_name = addslashes($meta_name);
         $results = $wpdb->get_results('DELETE FROM ' . bp_core_get_table_prefix() . "bp_bebop_user_meta WHERE user_id = '" . $wpdb->escape($user_id) . "' AND meta_name = '" . $wpdb->escape($meta_name) . "' LIMIT 1");
         if (mysql_affected_rows() > 0) {
             return true;
         } else {
             return false;
         }
     } else {
         return false;
     }
 }