Skip to:
Content

BuddyPress.org

Ticket #5020: 5020.02.patch

File 5020.02.patch, 39.5 KB (added by r-a-y, 11 years ago)
  • bp-activity/bp-activity-actions.php

    add_action( 'bp_actions', 'bp_activity_action_remove_favorite' ); 
    421421 * @return bool False on failure
    422422 */
    423423function bp_activity_action_sitewide_feed() {
    424         global $bp, $wp_query;
     424        global $bp;
    425425
    426         if ( !bp_is_activity_component() || !bp_is_current_action( 'feed' ) || bp_is_user() || !empty( $bp->groups->current_group ) )
     426        if ( ! bp_is_activity_component() || ! bp_is_current_action( 'feed' ) || bp_is_user() || ! empty( $bp->groups->current_group ) )
    427427                return false;
    428428
    429         $wp_query->is_404 = false;
    430         status_header( 200 );
     429        // setup the feed
     430        buddypress()->activity->feed = new BP_Activity_Feed( array(
     431                'id'            => 'sitewide',
     432
     433                /* translators: Sitewide activity RSS title - "[Site Name] | Site Wide Activity" */
     434                'title'         => sprintf( __( '%s | Site Wide Activity', 'buddypress' ), bp_get_site_name() ),
    431435
    432         include_once( 'feeds/bp-activity-sitewide-feed.php' );
    433         die;
     436                'link'          => bp_get_activity_directory_permalink(),
     437                'description'   => __( 'Activity feed for the entire site.', 'buddypress' ),
     438                'activity_args' => 'display_comments=threaded'
     439        ) );
    434440}
    435441add_action( 'bp_actions', 'bp_activity_action_sitewide_feed' );
    436442
    add_action( 'bp_actions', 'bp_activity_action_sitewide_feed' ); 
    447453 * @return bool False on failure
    448454 */
    449455function bp_activity_action_personal_feed() {
    450         global $wp_query;
    451 
    452         if ( !bp_is_user_activity() || !bp_is_current_action( 'feed' ) )
     456        if ( ! bp_is_user_activity() || ! bp_is_current_action( 'feed' ) ) {
    453457                return false;
     458        }
     459
     460        // setup the feed
     461        buddypress()->activity->feed = new BP_Activity_Feed( array(
     462                'id'            => 'personal',
    454463
    455         $wp_query->is_404 = false;
    456         status_header( 200 );
     464                /* translators: Personal activity RSS title - "[Site Name] | [User Display Name] | Activity" */
     465                'title'         => sprintf( __( '%1$s | %2$s | Activity', 'buddypress' ), bp_get_site_name(), bp_get_displayed_user_fullname() ),
    457466
    458         include_once( 'feeds/bp-activity-personal-feed.php' );
    459         die;
     467                'link'          => trailingslashit( bp_displayed_user_domain() . bp_get_activity_slug() ),
     468                'description'   => sprintf( __( 'Activity feed for %s.', 'buddypress' ), bp_get_displayed_user_fullname() ),
     469                'activity_args' => 'user_id=' . bp_displayed_user_id()
     470        ) );
    460471}
    461472add_action( 'bp_actions', 'bp_activity_action_personal_feed' );
    462473
    add_action( 'bp_actions', 'bp_activity_action_personal_feed' ); 
    476487 * @return bool False on failure
    477488 */
    478489function bp_activity_action_friends_feed() {
    479         global $wp_query;
    480 
    481         if ( !bp_is_active( 'friends' ) || !bp_is_user_activity() || !bp_is_current_action( bp_get_friends_slug() ) || !bp_is_action_variable( 'feed', 0 ) )
     490        if ( ! bp_is_active( 'friends' ) || ! bp_is_user_activity() || ! bp_is_current_action( bp_get_friends_slug() ) || ! bp_is_action_variable( 'feed', 0 ) ) {
    482491                return false;
     492        }
    483493
    484         $wp_query->is_404 = false;
    485         status_header( 200 );
     494        // setup the feed
     495        buddypress()->activity->feed = new BP_Activity_Feed( array(
     496                'id'            => 'friends',
    486497
    487         include_once( 'feeds/bp-activity-friends-feed.php' );
    488         die;
     498                /* translators: Friends activity RSS title - "[Site Name] | [User Display Name] | Friends Activity" */
     499                'title'         => sprintf( __( '%1$s | %2$s | Friends Activity', 'buddypress' ), bp_get_site_name(), bp_get_displayed_user_fullname() ),
     500
     501                'link'          => trailingslashit( bp_displayed_user_domain() . bp_get_activity_slug() . '/' . bp_get_friends_slug() ),
     502                'description'   => sprintf( __( "Activity feed for %s' friends.", 'buddypress' ), bp_get_displayed_user_fullname() ),
     503                'activity_args' => 'scope=friends'
     504        ) );
    489505}
    490506add_action( 'bp_actions', 'bp_activity_action_friends_feed' );
    491507
    add_action( 'bp_actions', 'bp_activity_action_friends_feed' ); 
    505521 * @return bool False on failure
    506522 */
    507523function bp_activity_action_my_groups_feed() {
    508         global $wp_query;
    509 
    510         if ( !bp_is_active( 'groups' ) || !bp_is_user_activity() || !bp_is_current_action( bp_get_groups_slug() ) || !bp_is_action_variable( 'feed', 0 ) )
     524        if ( ! bp_is_active( 'groups' ) || ! bp_is_user_activity() || ! bp_is_current_action( bp_get_groups_slug() ) || ! bp_is_action_variable( 'feed', 0 ) ) {
    511525                return false;
     526        }
    512527
    513         $wp_query->is_404 = false;
    514         status_header( 200 );
    515 
    516         include_once( 'feeds/bp-activity-mygroups-feed.php' );
    517         die;
     528        // get displayed user's group IDs
     529        $groups    = groups_get_user_groups();
     530        $group_ids = implode( ',', $groups['groups'] );
     531
     532        // setup the feed
     533        buddypress()->activity->feed = new BP_Activity_Feed( array(
     534                'id'            => 'mygroups',
     535
     536                /* translators: Member groups activity RSS title - "[Site Name] | [User Display Name] | Groups Activity" */
     537                'title'         => sprintf( __( '%1$s | %2$s | Group Activity', 'buddypress' ), bp_get_site_name(), bp_get_displayed_user_fullname() ),
     538
     539                'link'          => trailingslashit( bp_displayed_user_domain() . bp_get_activity_slug() . '/' . bp_get_groups_slug() ),
     540                'description'   => sprintf( __( "Public group activity feed of which %s is a member of.", 'buddypress' ), bp_get_displayed_user_fullname() ),
     541                'activity_args' => array(
     542                        'object'           => buddypress()->groups->id,
     543                        'primary_id'       => $group_ids,
     544                        'display_comments' => 'threaded'
     545                )
     546        ) );
    518547}
    519548add_action( 'bp_actions', 'bp_activity_action_my_groups_feed' );
    520549
    add_action( 'bp_actions', 'bp_activity_action_my_groups_feed' ); 
    532561 * @return bool False on failure
    533562 */
    534563function bp_activity_action_mentions_feed() {
    535         global $wp_query;
    536 
    537         if ( !bp_is_user_activity() || !bp_is_current_action( 'mentions' ) || !bp_is_action_variable( 'feed', 0 ) )
     564        if ( ! bp_is_user_activity() || ! bp_is_current_action( 'mentions' ) || ! bp_is_action_variable( 'feed', 0 ) ) {
    538565                return false;
     566        }
     567
     568        // setup the feed
     569        buddypress()->activity->feed = new BP_Activity_Feed( array(
     570                'id'            => 'mentions',
    539571
    540         $wp_query->is_404 = false;
    541         status_header( 200 );
     572                /* translators: User mentions activity RSS title - "[Site Name] | [User Display Name] | Mentions" */
     573                'title'         => sprintf( __( '%1$s | %2$s | Mentions', 'buddypress' ), bp_get_site_name(), bp_get_displayed_user_fullname() ),
    542574
    543         include_once( 'feeds/bp-activity-mentions-feed.php' );
    544         die;
     575                'link'          => bp_displayed_user_domain() . bp_get_activity_slug() . '/mentions/',
     576                'description'   => sprintf( __( "Activity feed mentioning %s.", 'buddypress' ), bp_get_displayed_user_fullname() ),
     577                'activity_args' => array(
     578                        'search_terms' => '@' . bp_core_get_username( bp_displayed_user_id() )
     579                )
     580        ) );
    545581}
    546582add_action( 'bp_actions', 'bp_activity_action_mentions_feed' );
    547583
    add_action( 'bp_actions', 'bp_activity_action_mentions_feed' ); 
    559595 * @return bool False on failure
    560596 */
    561597function bp_activity_action_favorites_feed() {
    562         global $wp_query;
    563 
    564         if ( !bp_is_user_activity() || !bp_is_current_action( 'favorites' ) || !bp_is_action_variable( 'feed', 0 ) )
     598        if ( ! bp_is_user_activity() || ! bp_is_current_action( 'favorites' ) || ! bp_is_action_variable( 'feed', 0 ) ) {
    565599                return false;
     600        }
     601
     602        // get displayed user's favorite activity IDs
     603        $favs = bp_activity_get_user_favorites( bp_displayed_user_id() );
     604        $fav_ids = implode( ',', (array) $favs );
     605
     606        // setup the feed
     607        buddypress()->activity->feed = new BP_Activity_Feed( array(
     608                'id'            => 'favorites',
    566609
    567         $wp_query->is_404 = false;
    568         status_header( 200 );
     610                /* translators: User activity favorites RSS title - "[Site Name] | [User Display Name] | Favorites" */
     611                'title'         => sprintf( __( '%1$s | %2$s | Favorites', 'buddypress' ), bp_get_site_name(), bp_get_displayed_user_fullname() ),
    569612
    570         include_once( 'feeds/bp-activity-favorites-feed.php' );
    571         die;
     613                'link'          => bp_displayed_user_domain() . bp_get_activity_slug() . '/favorites/',
     614                'description'   => sprintf( __( "Activity feed of %s' favorites.", 'buddypress' ), bp_get_displayed_user_fullname() ),
     615                'activity_args' => 'include=' . $fav_ids
     616        ) );
    572617}
    573618add_action( 'bp_actions', 'bp_activity_action_favorites_feed' );
    574619
  • bp-activity/bp-activity-classes.php

    class BP_Activity_Activity { 
    256256                        $activity_user_ids = wp_list_pluck( $activities, 'user_id' );
    257257                        $activity_user_ids = implode( ',', wp_parse_id_list( $activity_user_ids ) );
    258258
    259                         if ( !empty( $activity_user_ids ) ) {                           
     259                        if ( !empty( $activity_user_ids ) ) {
    260260                                if ( $names = $wpdb->get_results( "SELECT user_id, value AS user_fullname FROM {$bp->profile->table_name_data} WHERE field_id = 1 AND user_id IN ({$activity_user_ids})" ) ) {
    261261                                        foreach ( (array) $names as $name )
    262262                                                $tmp_names[$name->user_id] = $name->user_fullname;
    class BP_Activity_Activity { 
    730730                return $wpdb->get_var( $wpdb->prepare( "UPDATE {$bp->activity->table_name} SET hide_sitewide = 1 WHERE user_id = %d", $user_id ) );
    731731        }
    732732}
     733
     734/**
     735 * Create a RSS feed using the activity component.
     736 *
     737 * You should only construct a new feed when you've validated that you're on
     738 * the appropriate screen.
     739 *
     740 * See {@link bp_activity_action_sitewide_feed()} as an example.
     741 *
     742 * Accepted parameters:
     743 *   id               - internal id for the feed; should be alphanumeric only
     744 *                      (required)
     745 *   title            - RSS feed title
     746 *   link             - Relevant link for the RSS feed
     747 *   description      - RSS feed description
     748 *   ttl              - Time-to-live (see inline doc in constructor)
     749 *   update_period    - Part of the syndication module (see inline doc in
     750 *                      constructor for more info)
     751 *   update_frequency - Part of the syndication module (see inline doc in
     752 *                      constructor for more info)
     753 *   max              - Number of feed items to display
     754 *   activity_args    - Arguments passed to {@link bp_has_activities()}
     755 *
     756 * @since BuddyPress (1.8)
     757 */
     758class BP_Activity_Feed {
     759        /**
     760         * Holds our custom class properties.
     761         *
     762         * These variables are stored in a protected array that is magically
     763         * updated using PHP 5.2+ methods.
     764         *
     765         * @see BP_Feed::__construct() This is where $data is added
     766         * @var array
     767         */
     768        protected $data;
     769
     770        /**
     771         * Magic method for checking the existence of a certain data variable.
     772         *
     773         * @param string $key
     774         */
     775        public function __isset( $key ) { return isset( $this->data[$key] ); }
     776
     777        /**
     778         * Magic method for getting a certain data variable.
     779         *
     780         * @param string $key
     781         */
     782        public function __get( $key ) { return isset( $this->data[$key] ) ? $this->data[$key] : null; }
     783
     784        /**
     785         * Constructor.
     786         *
     787         * @param $args Array
     788         */
     789        public function __construct( $args = array() ) {
     790                // If feeds are disabled, stop now!
     791                if ( false === (bool) apply_filters( 'bp_activity_enable_feeds', true ) ) {
     792                        global $wp_query;
     793
     794                        // set feed flag to false
     795                        $wp_query->is_feed = false;
     796
     797                        return false;
     798                }
     799
     800                // Setup data
     801                $this->data = wp_parse_args( $args, array(
     802                        // Internal identifier for the RSS feed - should be alphanumeric only
     803                        'id'               => '',
     804
     805                        // RSS title - should be plain-text
     806                        'title'            => '',
     807
     808                        // relevant link for the RSS feed
     809                        'link'             => '',
     810
     811                        // RSS description - should be plain-text
     812                        'description'      => '',
     813
     814                        // Time-to-live - number of minutes to cache the data before an aggregator
     815                        // requests it again.  This is only acknowledged if the RSS client supports it
     816                        //
     817                        // See: http://www.rssboard.org/rss-profile#element-channel-ttl
     818                        //      http://www.kbcafe.com/rss/rssfeedstate.html#ttl
     819                        'ttl'              => '30',
     820
     821                        // Syndication module - similar to ttl, but not really supported by RSS
     822                        // clients
     823                        //
     824                        // See: http://web.resource.org/rss/1.0/modules/syndication/#description
     825                        //      http://www.kbcafe.com/rss/rssfeedstate.html#syndicationmodule
     826                        'update_period'    => 'hourly',
     827                        'update_frequency' => 2,
     828
     829                        // Number of items to display
     830                        'max'              => 50,
     831
     832                        // Activity arguments passed to bp_has_activities()
     833                        'activity_args'    => array()
     834                ) );
     835
     836                // Plugins can use this filter to modify the feed before it is setup
     837                do_action_ref_array( 'bp_activity_feed_prefetch', array( &$this ) );
     838
     839                // Setup class properties
     840                $this->setup_properties();
     841
     842                // Check if id is valid
     843                if ( empty( $this->id ) ) {
     844                        _doing_it_wrong( 'BP_Activity_Feed', __( "RSS feed 'id' must be defined", 'buddypress' ), 'BP 1.8' );
     845                        return false;
     846                }
     847
     848                // Plugins can use this filter to modify the feed after it's setup
     849                do_action_ref_array( 'bp_activity_feed_postfetch', array( &$this ) );
     850
     851                // Setup feed hooks
     852                $this->setup_hooks();
     853
     854                // Output the feed
     855                $this->output();
     856
     857                // Kill the rest of the output
     858                die();
     859        }
     860
     861        /** SETUP ****************************************************************/
     862
     863        /**
     864         * Setup and validate the class properties.
     865         */
     866        protected function setup_properties() {
     867                $this->id               = sanitize_title( $this->id );
     868                $this->title            = strip_tags( $this->title );
     869                $this->link             = esc_url_raw( $this->link );
     870                $this->description      = strip_tags( $this->description );
     871                $this->ttl              = (int) $this->ttl;
     872                $this->update_period    = strip_tags( $this->update_period );
     873                $this->update_frequency = (int) $this->update_frequency;
     874
     875                $this->activity_args    = wp_parse_args( $this->activity_args, array(
     876                        'max'              => $this->max,
     877                        'display_comments' => 'stream'
     878                ) );
     879
     880        }
     881
     882        /**
     883         * Setup some hooks that are used in the feed.
     884         *
     885         * Currently, these hooks are used to maintain backwards compatibility with
     886         * the RSS feeds previous to BP 1.8.
     887         */
     888        protected function setup_hooks() {
     889                add_action( 'bp_activity_feed_rss_attributes',   array( $this, 'backpat_rss_attributes' ) );
     890                add_action( 'bp_activity_feed_channel_elements', array( $this, 'backpat_channel_elements' ) );
     891                add_action( 'bp_activity_feed_item_elements',    array( $this, 'backpat_item_elements' ) );
     892        }
     893
     894        /** BACKPAT HOOKS ********************************************************/
     895
     896        public function backpat_rss_attributes() {
     897                do_action( 'bp_activity_' . $this->id . '_feed' );
     898        }
     899
     900        public function backpat_channel_elements() {
     901                do_action( 'bp_activity_' . $this->id . '_feed_head' );
     902        }
     903
     904        public function backpat_item_elements() {
     905                switch ( $this->id ) {
     906
     907                        // sitewide and friends feeds use the 'personal' hook
     908                        case 'sitewide' :
     909                        case 'friends' :
     910                                $id = 'personal';
     911
     912                                break;
     913
     914                        default :
     915                                $id = $this->id;
     916
     917                                break;
     918                }
     919
     920                do_action( 'bp_activity_' . $id . '_feed_item' );
     921        }
     922
     923        /** HELPERS **************************************************************/
     924
     925        /**
     926         * Output the feed's item content.
     927         */
     928        protected function feed_content() {
     929                bp_activity_content_body();
     930
     931                switch ( $this->id ) {
     932
     933                        // also output parent activity item if we're on a specific feed
     934                        case 'favorites' :
     935                        case 'friends' :
     936                        case 'mentions' :
     937                        case 'personal' :
     938
     939                                if ( 'activity_comment' == bp_get_activity_action_name() ) :
     940                        ?>
     941                                <strong><?php _e( 'In reply to', 'buddypress' ) ?></strong> -
     942                                <?php bp_activity_parent_content() ?>
     943                        <?php
     944                                endif;
     945
     946                                break;
     947                }
     948        }
     949
     950        /** OUTPUT ***************************************************************/
     951
     952        /**
     953         * Output the RSS feed.
     954         */
     955        protected function output() {
     956                // set up some additional headers if not on a directory page
     957                // this is done b/c BP uses pseudo-pages
     958                if ( ! bp_is_directory() ) {
     959                        global $wp_query;
     960
     961                        $wp_query->is_404 = false;
     962                        status_header( 200 );
     963                }
     964
     965                header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true );
     966                echo '<?xml version="1.0" encoding="' . get_option( 'blog_charset' ) . '"?'.'>';
     967        ?>
     968
     969<rss version="2.0"
     970        xmlns:content="http://purl.org/rss/1.0/modules/content/"
     971        xmlns:atom="http://www.w3.org/2005/Atom"
     972        xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
     973        xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
     974        <?php do_action( 'bp_activity_feed_rss_attributes' ); ?>
     975>
     976
     977<channel>
     978        <title><?php echo $this->title; ?></title>
     979        <link><?php echo $this->link; ?></link>
     980        <atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" />
     981        <description><?php echo $this->description ?></description>
     982        <lastBuildDate><?php echo mysql2date( 'D, d M Y H:i:s O', bp_activity_get_last_updated(), false ); ?></lastBuildDate>
     983        <generator>http://buddypress.org/?v=<?php bp_version(); ?></generator>
     984        <language><?php bloginfo_rss( 'language' ); ?></language>
     985        <ttl><?php echo $this->ttl; ?></ttl>
     986        <sy:updatePeriod><?php echo $this->update_period; ?></sy:updatePeriod>
     987        <sy:updateFrequency><?php echo $this->update_frequency; ?></sy:updateFrequency>
     988        <?php do_action( 'bp_activity_feed_channel_elements' ); ?>
     989
     990        <?php if ( bp_has_activities( $this->activity_args ) ) : ?>
     991                <?php while ( bp_activities() ) : bp_the_activity(); ?>
     992                        <item>
     993                                <guid isPermaLink="false"><?php bp_activity_feed_item_guid(); ?></guid>
     994                                <title><?php echo stripslashes( bp_get_activity_feed_item_title() ); ?></title>
     995                                <link><?php bp_activity_thread_permalink() ?></link>
     996                                <pubDate><?php echo mysql2date( 'D, d M Y H:i:s O', bp_get_activity_feed_item_date(), false ); ?></pubDate>
     997
     998                                <?php if ( bp_get_activity_feed_item_description() ) : ?>
     999                                        <content:encoded><![CDATA[<?php $this->feed_content(); ?>]]></content:encoded>
     1000                                <?php endif; ?>
     1001
     1002                                <?php if ( bp_activity_can_comment() ) : ?>
     1003                                        <slash:comments><?php bp_activity_comment_count(); ?></slash:comments>
     1004                                <?php endif; ?>
     1005
     1006                                <?php do_action( 'bp_activity_feed_item_elements' ); ?>
     1007                        </item>
     1008                <?php endwhile; ?>
     1009
     1010        <?php endif; ?>
     1011</channel>
     1012</rss><?php
     1013        }
     1014}
  • deleted file bp-activity/feeds/bp-activity-favorites-feed.php

    deleted file mode 100644
    + -  
    1 <?php
    2 
    3 /**
    4  * RSS2 Feed Template for displaying a member's favorite activity
    5  *
    6  * @package BuddyPress
    7  * @subpackage ActivityFeeds
    8  */
    9 
    10 // Exit if accessed directly
    11 if ( !defined( 'ABSPATH' ) ) exit;
    12 
    13 header('Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true );
    14 header('Status: 200 OK');
    15 echo '<?xml version="1.0" encoding="' . get_option( 'blog_charset' ) . '"?'.'>'; ?>
    16 
    17 <rss version="2.0"
    18         xmlns:content="http://purl.org/rss/1.0/modules/content/"
    19         xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    20         xmlns:dc="http://purl.org/dc/elements/1.1/"
    21         xmlns:atom="http://www.w3.org/2005/Atom"
    22         <?php do_action('bp_activity_favorites_feed'); ?>
    23 >
    24 
    25 <channel>
    26         <?php /* translators: Favorited activity RSS title - "[Site Name] | [Displayed User Name] | Favorite Activity" */ ?>
    27         <title><?php printf( '%1$s | %2$s | %3$s', bp_get_site_name(), bp_get_displayed_user_fullname(), __( 'Favorite Activity', 'buddypress' ) ) ?></title>
    28         <atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" />
    29         <link><?php echo home_url( bp_get_activity_root_slug() . '/#my-favorites/' ) ?></link>
    30         <description><?php printf( __( '%s - Favorite Activity', 'buddypress' ), bp_get_displayed_user_fullname() ) ?></description>
    31         <pubDate><?php echo mysql2date('D, d M Y H:i:s O', bp_activity_get_last_updated(), false); ?></pubDate>
    32         <generator>http://buddypress.org/?v=<?php echo BP_VERSION ?></generator>
    33         <language><?php bloginfo_rss( 'language' ); ?></language>
    34 
    35         <?php do_action('bp_activity_favorites_feed_head'); ?>
    36 
    37         <?php
    38                 $favs = bp_activity_get_user_favorites( bp_displayed_user_id() );
    39                 $fav_ids = implode( ',', (array) $favs );
    40         ?>
    41 
    42         <?php if ( bp_has_activities( 'include=' . $fav_ids . '&max=50&display_comments=stream' ) ) : ?>
    43                 <?php while ( bp_activities() ) : bp_the_activity(); ?>
    44 
    45                         <item>
    46                                 <guid><?php bp_activity_thread_permalink() ?></guid>
    47                                 <title><?php bp_activity_feed_item_title() ?></title>
    48                                 <link><?php echo bp_activity_thread_permalink() ?></link>
    49                                 <pubDate><?php echo mysql2date('D, d M Y H:i:s O', bp_get_activity_feed_item_date(), false); ?></pubDate>
    50 
    51                                 <description>
    52                                         <![CDATA[
    53                                         <?php bp_activity_feed_item_description() ?>
    54 
    55                                         <?php if ( bp_activity_can_comment() ) : ?>
    56                                                 <p><?php printf( __( 'Comments: %s', 'buddypress' ), bp_activity_get_comment_count() ); ?></p>
    57                                         <?php endif; ?>
    58 
    59                                         <?php if ( 'activity_comment' == bp_get_activity_action_name() ) : ?>
    60                                                 <br /><strong><?php _e( 'In reply to', 'buddypress' ) ?></strong> -
    61                                                 <?php bp_activity_parent_content() ?>
    62                                         <?php endif; ?>
    63                                         ]]>
    64                                 </description>
    65 
    66                                 <?php do_action('bp_activity_favorites_feed_item'); ?>
    67 
    68                         </item>
    69 
    70                 <?php endwhile; ?>
    71         <?php endif; ?>
    72 
    73 </channel>
    74 </rss>
  • deleted file bp-activity/feeds/bp-activity-friends-feed.php

    deleted file mode 100644
    + -  
    1 <?php
    2 
    3 /**
    4  * RSS2 Feed Template for displaying a member's friends activity stream.
    5  *
    6  * @package BuddyPress
    7  * @subpackage ActivityFeeds
    8  */
    9 
    10 // Exit if accessed directly
    11 if ( !defined( 'ABSPATH' ) ) exit;
    12 
    13 header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
    14 header('Status: 200 OK');
    15 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?>
    16 
    17 <rss version="2.0"
    18         xmlns:content="http://purl.org/rss/1.0/modules/content/"
    19         xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    20         xmlns:dc="http://purl.org/dc/elements/1.1/"
    21         xmlns:atom="http://www.w3.org/2005/Atom"
    22         <?php do_action('bp_activity_friends_feed'); ?>
    23 >
    24 
    25 <channel>
    26         <?php /* translators: Member friends activity RSS title - "[Site Name] | Friends Activity" */ ?>
    27         <title><?php bp_site_name() ?> | <?php bp_displayed_user_fullname(); ?> | <?php _e( 'Friends Activity', 'buddypress' ); ?></title>
    28         <atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" />
    29         <link><?php echo bp_displayed_user_domain() . bp_get_activity_slug() . '/' . bp_get_friends_slug() . '/feed'; ?></link>
    30         <description><?php printf( __( '%s - Friends Activity Feed', 'buddypress' ), bp_get_displayed_user_fullname() ); ?></description>
    31         <pubDate><?php echo mysql2date('D, d M Y H:i:s O', bp_activity_get_last_updated(), false); ?></pubDate>
    32         <generator>http://buddypress.org/?v=<?php echo BP_VERSION; ?></generator>
    33         <language><?php bloginfo_rss( 'language' ); ?></language>
    34         <?php do_action('bp_activity_friends_feed_head'); ?>
    35 
    36         <?php if ( bp_has_activities( 'scope=friends&max=50&display_comments=stream' ) ) : ?>
    37                 <?php while ( bp_activities() ) : bp_the_activity(); ?>
    38                         <item>
    39                                 <guid><?php bp_activity_thread_permalink(); ?></guid>
    40                                 <title><?php bp_activity_feed_item_title(); ?></title>
    41                                 <link><?php echo bp_activity_thread_permalink(); ?></link>
    42                                 <pubDate><?php echo mysql2date('D, d M Y H:i:s O', bp_get_activity_feed_item_date(), false); ?></pubDate>
    43 
    44                                 <description>
    45                                         <![CDATA[
    46                                         <?php bp_activity_feed_item_description(); ?>
    47 
    48                                         <?php if ( bp_activity_can_comment() ) : ?>
    49                                                 <p><?php printf( __( 'Comments: %s', 'buddypress' ), bp_activity_get_comment_count() ); ?></p>
    50                                         <?php endif; ?>
    51 
    52                                         <?php if ( 'activity_comment' == bp_get_activity_action_name() ) : ?>
    53                                                 <br /><strong><?php _e( 'In reply to', 'buddypress' ); ?></strong> -
    54                                                 <?php bp_activity_parent_content(); ?>
    55                                         <?php endif; ?>
    56                                         ]]>
    57                                 </description>
    58                                 <?php do_action('bp_activity_personal_feed_item'); ?>
    59                         </item>
    60                 <?php endwhile; ?>
    61 
    62         <?php endif; ?>
    63 </channel>
    64 </rss>
  • deleted file bp-activity/feeds/bp-activity-group-feed.php

    deleted file mode 100644
    + -  
    1 <?php
    2 
    3 /**
    4  * RSS2 Feed Template for displaying a group activity stream
    5  *
    6  * @package BuddyPress
    7  * @subpackage ActivityFeeds
    8  */
    9 
    10 // Exit if accessed directly
    11 if ( !defined( 'ABSPATH' ) ) exit;
    12 
    13 header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
    14 header('Status: 200 OK');
    15 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?>
    16 
    17 <rss version="2.0"
    18         xmlns:content="http://purl.org/rss/1.0/modules/content/"
    19         xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    20         xmlns:dc="http://purl.org/dc/elements/1.1/"
    21         xmlns:atom="http://www.w3.org/2005/Atom"
    22         <?php do_action('bp_activity_group_feed'); ?>
    23 >
    24 
    25 <channel>
    26         <?php /* translators: Single group activity RSS title - "[Site Name] | [Group Name] | Group Activity" */ ?>
    27         <title><?php printf( '%1$s | %2$s | %3$s', bp_get_site_name(), bp_get_current_group_name(), __( 'Group Activity', 'buddypress' ) ) ?></title>
    28         <atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" />
    29         <link><?php echo bp_get_group_permalink( $bp->groups->current_group ) . bp_get_activity_slug() . '/feed' ?></link>
    30         <description><?php printf( __( '%s - Group Activity Feed', 'buddypress' ), $bp->groups->current_group->name  ) ?></description>
    31         <pubDate><?php echo mysql2date('D, d M Y H:i:s O', bp_activity_get_last_updated(), false); ?></pubDate>
    32         <generator>http://buddypress.org/?v=<?php echo BP_VERSION ?></generator>
    33         <language><?php bloginfo_rss( 'language' ); ?></language>
    34         <?php do_action('bp_activity_group_feed_head'); ?>
    35 
    36         <?php if ( bp_has_activities( 'object=' . $bp->groups->id . '&primary_id=' . $bp->groups->current_group->id . '&max=50&display_comments=threaded' ) ) : ?>
    37                 <?php while ( bp_activities() ) : bp_the_activity(); ?>
    38                         <item>
    39                                 <guid><?php bp_activity_thread_permalink() ?></guid>
    40                                 <title><?php bp_activity_feed_item_title() ?></title>
    41                                 <link><?php echo bp_activity_thread_permalink() ?></link>
    42                                 <pubDate><?php echo mysql2date('D, d M Y H:i:s O', bp_get_activity_feed_item_date(), false); ?></pubDate>
    43 
    44                                 <description>
    45                                         <![CDATA[
    46                                                 <?php bp_activity_feed_item_description() ?>
    47 
    48                                                 <?php if ( bp_activity_can_comment() ) : ?>
    49                                                         <p><?php printf( __( 'Comments: %s', 'buddypress' ), bp_activity_get_comment_count() ); ?></p>
    50                                                 <?php endif; ?>
    51                                         ]]>
    52                                 </description>
    53                                 <?php do_action('bp_activity_group_feed_item'); ?>
    54                         </item>
    55                 <?php endwhile; ?>
    56 
    57         <?php endif; ?>
    58 </channel>
    59 </rss>
  • deleted file bp-activity/feeds/bp-activity-mentions-feed.php

    deleted file mode 100644
    + -  
    1 <?php
    2 
    3 /**
    4  * RSS2 Feed Template for displaying a member's activity mentions
    5  *
    6  * @package BuddyPress
    7  * @subpackage ActivityFeeds
    8  */
    9 
    10 // Exit if accessed directly
    11 if ( !defined( 'ABSPATH' ) ) exit;
    12 
    13 header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
    14 header('Status: 200 OK');
    15 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?>
    16 
    17 <rss version="2.0"
    18         xmlns:content="http://purl.org/rss/1.0/modules/content/"
    19         xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    20         xmlns:dc="http://purl.org/dc/elements/1.1/"
    21         xmlns:atom="http://www.w3.org/2005/Atom"
    22         <?php do_action('bp_activity_mentions_feed'); ?>
    23 >
    24 
    25 <channel>
    26         <?php /* translators: Mentions RSS title - "[Site Name] | [Displayed User Name] | Mentions" */ ?>
    27         <title><?php printf( '%1$s | %2$s | %3$s', bp_get_site_name(), bp_get_displayed_user_fullname(), __( 'Mentions', 'buddypress' ) ) ?></title>
    28         <atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" />
    29         <link><?php echo home_url( bp_get_activity_root_slug() . '/#mentions/' ) ?></link>
    30         <?php /* translators: Mentions RSS title - "[Site Name] | [Displayed User Name] | Mentions" */ ?>
    31         <description><?php printf( __( '%s - Mentions', 'buddypress' ), bp_get_displayed_user_fullname() ) ?></description>
    32         <pubDate><?php echo mysql2date('D, d M Y H:i:s O', bp_activity_get_last_updated(), false); ?></pubDate>
    33         <generator>http://buddypress.org/?v=<?php echo BP_VERSION ?></generator>
    34         <language><?php bloginfo_rss( 'language' ); ?></language>
    35         <?php do_action('bp_activity_mentions_feed_head'); ?>
    36 
    37         <?php if ( bp_has_activities( 'max=50&display_comments=stream&search_terms=@' . bp_core_get_username( bp_displayed_user_id() ) ) ) : ?>
    38                 <?php while ( bp_activities() ) : bp_the_activity(); ?>
    39                         <item>
    40                                 <guid><?php bp_activity_thread_permalink() ?></guid>
    41                                 <title><?php bp_activity_feed_item_title() ?></title>
    42                                 <link><?php echo bp_activity_thread_permalink() ?></link>
    43                                 <pubDate><?php echo mysql2date('D, d M Y H:i:s O', bp_get_activity_feed_item_date(), false); ?></pubDate>
    44 
    45                                 <description>
    46                                         <![CDATA[
    47                                         <?php bp_activity_feed_item_description() ?>
    48 
    49                                         <?php if ( bp_activity_can_comment() ) : ?>
    50                                                 <p><?php printf( __( 'Comments: %s', 'buddypress' ), bp_activity_get_comment_count() ); ?></p>
    51                                         <?php endif; ?>
    52 
    53                                         <?php if ( 'activity_comment' == bp_get_activity_action_name() ) : ?>
    54                                                 <br /><strong><?php _e( 'In reply to', 'buddypress' ) ?></strong> -
    55                                                 <?php bp_activity_parent_content() ?>
    56                                         <?php endif; ?>
    57                                         ]]>
    58                                 </description>
    59                                 <?php do_action('bp_activity_mentions_feed_item'); ?>
    60                         </item>
    61                 <?php endwhile; ?>
    62 
    63         <?php endif; ?>
    64 </channel>
    65 </rss>
  • deleted file bp-activity/feeds/bp-activity-mygroups-feed.php

    deleted file mode 100644
    + -  
    1 <?php
    2 
    3 /**
    4  * RSS2 Feed Template for displaying a member's group's activity
    5  *
    6  * @package BuddyPress
    7  * @subpackage ActivityFeeds
    8  */
    9 
    10 // Exit if accessed directly
    11 if ( !defined( 'ABSPATH' ) ) exit;
    12 
    13 header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
    14 header('Status: 200 OK');
    15 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?>
    16 
    17 <rss version="2.0"
    18         xmlns:content="http://purl.org/rss/1.0/modules/content/"
    19         xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    20         xmlns:dc="http://purl.org/dc/elements/1.1/"
    21         xmlns:atom="http://www.w3.org/2005/Atom"
    22         <?php do_action('bp_activity_mygroups_feed'); ?>
    23 >
    24 
    25 <channel>
    26         <?php /* translators: Member groups activity RSS title - "[Site Name] | [Displayed User Name] | My Groups - Public Activity" */ ?>
    27         <title><?php printf( '%1$s | %2$s | %3$s', bp_get_site_name(), bp_get_displayed_user_fullname(), __( 'My Groups - Public Activity', 'buddypress' ) ) ?></title>
    28         <atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" />
    29         <link><?php echo home_url( bp_get_activity_root_slug() . '/#my-groups/' ) ?></link>
    30         <?php /* translators: Member groups activity RSS description - "[Displayed user name] - My Groups - Public Activity" */ ?>
    31         <description><?php printf( __( '%1$s - My Groups - Public Activity', 'buddypress' ), bp_get_displayed_user_fullname() ) ?></description>
    32         <pubDate><?php echo mysql2date('D, d M Y H:i:s O', bp_activity_get_last_updated(), false); ?></pubDate>
    33         <generator>http://buddypress.org/?v=<?php echo BP_VERSION ?></generator>
    34         <language><?php bloginfo_rss( 'language' ); ?></language>
    35         <?php do_action('bp_activity_mygroups_feed_head'); ?>
    36 
    37         <?php
    38                 $groups = groups_get_user_groups( bp_loggedin_user_id() );
    39                 $group_ids = implode( ',', $groups['groups'] );
    40         ?>
    41 
    42         <?php if ( bp_has_activities( 'object=' . $bp->groups->id . '&primary_id=' . $group_ids . '&max=50&display_comments=threaded' ) ) : ?>
    43                 <?php while ( bp_activities() ) : bp_the_activity(); ?>
    44                         <item>
    45                                 <guid><?php bp_activity_thread_permalink() ?></guid>
    46                                 <title><?php bp_activity_feed_item_title() ?></title>
    47                                 <link><?php echo bp_activity_thread_permalink() ?></link>
    48                                 <pubDate><?php echo mysql2date('D, d M Y H:i:s O', bp_get_activity_feed_item_date(), false); ?></pubDate>
    49 
    50                                 <description>
    51                                         <![CDATA[
    52                                                 <?php bp_activity_feed_item_description() ?>
    53 
    54                                                 <?php if ( bp_activity_can_comment() ) : ?>
    55                                                         <p><?php printf( __( 'Comments: %s', 'buddypress' ), bp_activity_get_comment_count() ); ?></p>
    56                                                 <?php endif; ?>
    57                                         ]]>
    58                                 </description>
    59                                 <?php do_action('bp_activity_mygroups_feed_item'); ?>
    60                         </item>
    61                 <?php endwhile; ?>
    62 
    63         <?php endif; ?>
    64 </channel>
    65 </rss>
  • deleted file bp-activity/feeds/bp-activity-personal-feed.php

    deleted file mode 100644
    + -  
    1 <?php
    2 
    3 /**
    4  * RSS2 Feed Template for displaying a member's activity stream.
    5  *
    6  * @package BuddyPress
    7  * @subpackage ActivityFeeds
    8  */
    9 
    10 // Exit if accessed directly
    11 if ( !defined( 'ABSPATH' ) ) exit;
    12 
    13 header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
    14 header('Status: 200 OK');
    15 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?>
    16 
    17 <rss version="2.0"
    18         xmlns:content="http://purl.org/rss/1.0/modules/content/"
    19         xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    20         xmlns:dc="http://purl.org/dc/elements/1.1/"
    21         xmlns:atom="http://www.w3.org/2005/Atom"
    22         <?php do_action('bp_activity_personal_feed'); ?>
    23 >
    24 
    25 <channel>
    26         <?php /* translators: Personal activity RSS title - "[Site Name] | [Displayed User Name] | Activity" */ ?>
    27         <title><?php printf( '%1$s | %2$s | %3$s', bp_get_site_name(), bp_get_displayed_user_fullname(), __( 'Activity', 'buddypress' ) ) ?></title>
    28         <atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" />
    29         <link><?php echo bp_displayed_user_domain() . bp_get_activity_slug() . '/feed' ?></link>
    30         <description><?php printf( __( '%s - Activity Feed', 'buddypress' ), bp_get_displayed_user_fullname() ) ?></description>
    31         <pubDate><?php echo mysql2date('D, d M Y H:i:s O', bp_activity_get_last_updated(), false); ?></pubDate>
    32         <generator>http://buddypress.org/?v=<?php echo BP_VERSION ?></generator>
    33         <language><?php bloginfo_rss( 'language' ); ?></language>
    34         <?php do_action('bp_activity_personal_feed_head'); ?>
    35 
    36         <?php if ( bp_has_activities( 'user_id=' . bp_displayed_user_id() . '&max=50&display_comments=stream' ) ) : ?>
    37                 <?php while ( bp_activities() ) : bp_the_activity(); ?>
    38                         <item>
    39                                 <guid><?php bp_activity_thread_permalink() ?></guid>
    40                                 <title><?php bp_activity_feed_item_title() ?></title>
    41                                 <link><?php echo bp_activity_thread_permalink() ?></link>
    42                                 <pubDate><?php echo mysql2date('D, d M Y H:i:s O', bp_get_activity_feed_item_date(), false); ?></pubDate>
    43 
    44                                 <description>
    45                                         <![CDATA[
    46                                         <?php bp_activity_feed_item_description() ?>
    47 
    48                                         <?php if ( bp_activity_can_comment() ) : ?>
    49                                                 <p><?php printf( __( 'Comments: %s', 'buddypress' ), bp_activity_get_comment_count() ); ?></p>
    50                                         <?php endif; ?>
    51 
    52                                         <?php if ( 'activity_comment' == bp_get_activity_action_name() ) : ?>
    53                                                 <br /><strong><?php _e( 'In reply to', 'buddypress' ) ?></strong> -
    54                                                 <?php bp_activity_parent_content() ?>
    55                                         <?php endif; ?>
    56                                         ]]>
    57                                 </description>
    58                                 <?php do_action('bp_activity_personal_feed_item'); ?>
    59                         </item>
    60                 <?php endwhile; ?>
    61 
    62         <?php endif; ?>
    63 </channel>
    64 </rss>
  • deleted file bp-activity/feeds/bp-activity-sitewide-feed.php

    deleted file mode 100644
    + -  
    1 <?php
    2 
    3 /**
    4  * RSS2 Feed Template for displaying the site wide activity stream.
    5  *
    6  * @package BuddyPress
    7  * @subpackage ActivityFeeds
    8  */
    9 
    10 // Exit if accessed directly
    11 if ( !defined( 'ABSPATH' ) ) exit;
    12 
    13 header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
    14 header('Status: 200 OK');
    15 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?>
    16 
    17 <rss version="2.0"
    18         xmlns:content="http://purl.org/rss/1.0/modules/content/"
    19         xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    20         xmlns:dc="http://purl.org/dc/elements/1.1/"
    21         xmlns:atom="http://www.w3.org/2005/Atom"
    22         <?php do_action('bp_activity_sitewide_feed'); ?>
    23 >
    24 
    25 <channel>
    26         <?php /* translators: Sitewide activity RSS title - "[Site Name] | Site Wide Activity" */ ?>
    27         <title><?php printf( '%1$s | %2$s', bp_get_site_name(), __( 'Site Wide Activity', 'buddypress' ) ) ?></title>
    28         <atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" />
    29         <link><?php echo bp_get_root_domain() . '/' . bp_get_activity_root_slug() . '/feed' ?></link>
    30         <description><?php _e( 'Site Wide Activity Feed', 'buddypress' ) ?></description>
    31         <pubDate><?php echo mysql2date('D, d M Y H:i:s O', bp_activity_get_last_updated(), false); ?></pubDate>
    32         <generator>http://buddypress.org/?v=<?php echo BP_VERSION ?></generator>
    33         <language><?php bloginfo_rss( 'language' ); ?></language>
    34         <?php do_action('bp_activity_sitewide_feed_head'); ?>
    35 
    36         <?php if ( bp_has_activities( 'type=sitewide&max=50&display_comments=threaded' ) ) : ?>
    37                 <?php while ( bp_activities() ) : bp_the_activity(); ?>
    38                         <item>
    39                                 <guid><?php bp_activity_thread_permalink() ?></guid>
    40                                 <title><?php bp_activity_feed_item_title() ?></title>
    41                                 <link><?php bp_activity_thread_permalink() ?></link>
    42                                 <pubDate><?php echo mysql2date('D, d M Y H:i:s O', bp_get_activity_feed_item_date(), false); ?></pubDate>
    43 
    44                                 <description>
    45                                         <![CDATA[
    46                                         <?php bp_activity_feed_item_description() ?>
    47 
    48                                         <?php if ( bp_activity_can_comment() ) : ?>
    49                                                 <p><?php printf( __( 'Comments: %s', 'buddypress' ), bp_activity_get_comment_count() ); ?></p>
    50                                         <?php endif; ?>
    51                                         ]]>
    52                                 </description>
    53                         <?php do_action('bp_activity_personal_feed_item'); ?>
    54                         </item>
    55                 <?php endwhile; ?>
    56 
    57         <?php endif; ?>
    58 </channel>
    59 </rss>
  • bp-groups/bp-groups-actions.php

    function groups_action_redirect_to_random_group() { 
    304304}
    305305add_action( 'bp_actions', 'groups_action_redirect_to_random_group' );
    306306
     307/**
     308 * Load the activity feed for the specific group.
     309 *
     310 * @since BuddyPress (v1.2)
     311 */
    307312function groups_action_group_feed() {
    308         global $bp, $wp_query;
    309313
    310         if ( !bp_is_active( 'activity' ) || !bp_is_groups_component() || !isset( $bp->groups->current_group ) || !bp_is_current_action( 'feed' ) )
    311                 return false;
     314        // get current group
     315        $group = groups_get_current_group();
    312316
    313         $wp_query->is_404 = false;
    314         status_header( 200 );
     317        if ( ! bp_is_active( 'activity' ) || ! bp_is_groups_component() || ! $group || ! bp_is_current_action( 'feed' ) )
     318                return false;
    315319
    316         if ( 'public' != $bp->groups->current_group->status ) {
    317                 if ( !groups_is_user_member( bp_loggedin_user_id(), $bp->groups->current_group->id ) )
    318                         return false;
     320        // if group isn't public or if logged-in user is not a member of the group, do
     321        // not output the group activity feed
     322        if ( ! bp_group_is_visible( $group ) ) {
     323                return false;
    319324        }
    320325
    321         include_once( BP_PLUGIN_DIR . '/bp-activity/feeds/bp-activity-group-feed.php' );
    322         die;
     326        // setup the feed
     327        buddypress()->activity->feed = new BP_Activity_Feed( array(
     328                'id'            => 'group',
     329
     330                /* translators: Group activity RSS title - "[Site Name] | [Group Name] | Activity" */
     331                'title'         => sprintf( __( '%1$s | %2$s | Activity', 'buddypress' ), bp_get_site_name(), bp_get_current_group_name() ),
     332
     333                'link'          => bp_get_group_permalink( $group ),
     334                'description'   => sprintf( __( "Activity feed for the group, %s.", 'buddypress' ), bp_get_current_group_name() ),
     335                'activity_args' => array(
     336                        'object'           => buddypress()->groups->id,
     337                        'primary_id'       => bp_get_current_group_id(),
     338                        'display_comments' => 'threaded'
     339                )
     340        ) );
    323341}
    324342add_action( 'bp_actions', 'groups_action_group_feed' );