\__( 'Event Source', 'activitypub' ), 'plural' => \__( 'Event Sources', 'activitypub' ), 'ajax' => false, ) ); } /** * Get columns. * * @return array */ public function get_columns() { return array( 'cb' => '', 'avatar' => \__( 'Avatar', 'activitypub' ), 'post_title' => \__( 'Name', 'activitypub' ), 'username' => \__( 'Username', 'activitypub' ), 'url' => \__( 'URL', 'activitypub' ), 'published' => \__( 'Followed', 'activitypub' ), 'modified' => \__( 'Last updated', 'activitypub' ), ); } /** * Returns sortable columns. * * @return array */ public function get_sortable_columns() { return array( 'post_title' => array( 'post_title', true ), 'modified' => array( 'modified', false ), 'published' => array( 'published', false ), ); } /** * Prepare items. */ public function prepare_items() { $columns = $this->get_columns(); $hidden = array(); $this->process_action(); $this->_column_headers = array( $columns, $hidden, $this->get_sortable_columns() ); $page_num = $this->get_pagenum(); $per_page = 20; $args = array(); // phpcs:disable WordPress.Security.NonceVerification.Recommended if ( isset( $_GET['orderby'] ) ) { $args['orderby'] = sanitize_text_field( wp_unslash( $_GET['orderby'] ) ); } if ( isset( $_GET['order'] ) ) { $args['order'] = sanitize_text_field( wp_unslash( $_GET['order'] ) ); } if ( isset( $_GET['s'] ) && isset( $_REQUEST['_wpnonce'] ) ) { $nonce = sanitize_text_field( wp_unslash( $_REQUEST['_wpnonce'] ) ); if ( wp_verify_nonce( $nonce, 'bulk-' . $this->_args['plural'] ) ) { $args['s'] = sanitize_text_field( wp_unslash( $_GET['s'] ) ); } } // phpcs:enable WordPress.Security.NonceVerification.Recommended $dummy_event_sources = array( 'total' => 1, 'actors' => array( Event_Source::init_from_array( array( 'id' => 'https://graz.social/@linos', 'url' => 'https://graz.social/@linos', 'preferredUsername' => 'linos', 'name' => 'André Menrath', 'icon' => 'https://graz.social/system/accounts/avatars/000/000/001/original/fe1c795256720361.jpeg', ) ), ), ); $event_sources = $dummy_event_sources; $actors = $event_sources['actors']; $counter = $event_sources['total']; $this->items = array(); $this->set_pagination_args( array( 'total_items' => $counter, 'total_pages' => ceil( $counter / $per_page ), 'per_page' => $per_page, ) ); foreach ( $actors as $actor ) { $item = array( 'icon' => esc_attr( $actor->get_icon_url() ), 'post_title' => esc_attr( $actor->get_name() ), 'username' => esc_attr( $actor->get_preferred_username() ), 'url' => esc_attr( object_to_uri( $actor->get_url() ) ), 'identifier' => esc_attr( $actor->get_id() ), 'published' => esc_attr( $actor->get_published() ), 'modified' => esc_attr( $actor->get_updated() ), ); $this->items[] = $item; } } /** * Returns bulk actions. * * @return array */ public function get_bulk_actions() { return array( 'delete' => __( 'Delete', 'activitypub' ), ); } /** * Column default. * * @param array $item Item. * @param string $column_name Column name. * @return string */ public function column_default( $item, $column_name ) { if ( ! array_key_exists( $column_name, $item ) ) { return __( 'None', 'activitypub' ); } return $item[ $column_name ]; } /** * Column avatar. * * @param array $item Item. * @return string */ public function column_avatar( $item ) { return sprintf( '', $item['icon'] ); } /** * Column url. * * @param array $item Item. * @return string */ public function column_url( $item ) { return sprintf( '%s', esc_url( $item['url'] ), $item['url'] ); } /** * Column cb. * * @param array $item Item. * @return string */ public function column_cb( $item ) { return sprintf( '', esc_attr( $item['identifier'] ) ); } /** * Process action. */ public function process_action() { if ( ! isset( $_REQUEST['followers'] ) || ! isset( $_REQUEST['_wpnonce'] ) ) { return; } $nonce = sanitize_text_field( wp_unslash( $_REQUEST['_wpnonce'] ) ); if ( ! wp_verify_nonce( $nonce, 'bulk-' . $this->_args['plural'] ) ) { return; } if ( ! current_user_can( 'edit_user', $this->user_id ) ) { return; } $followers = $_REQUEST['followers']; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput if ( $this->current_action() === 'delete' ) { if ( ! is_array( $followers ) ) { $followers = array( $followers ); } foreach ( $followers as $follower ) { FollowerCollection::remove_follower( $this->user_id, $follower ); } } } /** * Returns user count. * * @return int */ public function get_user_count() { return FollowerCollection::count_followers( $this->user_id ); } }