';
+
+ return $content;
+ }
+
+ static function update() : void {
+ if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'edit-concert' ) ) {
+ wp_die( 'CSRF validation failed.', 403 );
+ }
+
+ if ( isset( $_POST['newconcert'] ) ) {
+ if ( empty( $_POST['cname'] ) || empty( $_POST['selectvenueadmin'] ) || empty( $_POST['cdate'] ) || empty( $_POST['ticket'] ) || empty( $_POST['eventurl'] ) ) {
+ echo '';
+ } else {
+ if ( GiglogAdmin_Concert::create( $_POST['cname'], $_POST['selectvenueadmin'], $_POST['cdate'], $_POST['ticket'], $_POST['eventurl'] ) ) {
+ echo '';
+ } else {
+ echo '';
+ }
+ }
+ }
+
+ if ( isset( $_POST['editconcert'] ) ) {
+ $roles = array_reduce(
+ array( 'photo1', 'photo1', 'rev1', 'rev2' ),
+ function( $roles, $r ) {
+ if ( isset( $_POST[ $r ] ) ) {
+ $roles[ $r ] = sanitize_user( $_POST[ $r ] );
+ }
+ return $roles;
+ },
+ array()
+ );
+
+ $attributes = array(
+ 'wpgconcert_name' => sanitize_text_field( $_POST['cname'] ),
+ 'venue' => intval( $_POST['selectvenueadmin'] ),
+ 'wpgconcert_date' => sanitize_text_field( $_POST['cdate'] ),
+ 'wpgconcert_ticket' => esc_url_raw( $_POST['ticket'] ),
+ 'wpgconcert_event' => esc_url_raw( $_POST['eventurl'] ),
+ 'wpgconcert_roles' => $roles,
+ );
+
+ $concert = GiglogAdmin_Concert::get( intval( $_POST['pid'] ) );
+ if ( $concert && $concert->update( (object) $attributes ) ) {
+ // let user know the concert was updated.
+ // Look into admin_notices
+ }
+ }
+ }
+ }
+}
diff --git a/includes/view-helpers/class-giglogadmin-concertstable.php b/includes/view-helpers/class-giglogadmin-concertstable.php
new file mode 100644
index 0000000..1288cbd
--- /dev/null
+++ b/includes/view-helpers/class-giglogadmin-concertstable.php
@@ -0,0 +1,452 @@
+
+ * SPDX-FileCopyrightText: 2021 Harald Eilertsen
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+if ( ! class_exists( 'GiglogAdmin_ConcertsTable' ) ) {
+ class GiglogAdmin_ConcertsTable {
+
+ const STATUS_LABELS = array(
+ '',
+ 'Accred Requested',
+ 'Photo Approved',
+ 'Text Approved',
+ 'Photo and Text Approved',
+ 'Rejected',
+ );
+
+ const FILTER_KEYS = array(
+ 'city',
+ 'venue',
+ 'month',
+ 'only_mine',
+ );
+
+ private string $username;
+ private array $filter;
+
+ private int $page_no = 1;
+ private int $total_no_of_pages = 1;
+ private int $previous_page = 0;
+ private int $next_page = 0;
+
+ private string $nonce;
+
+ public static function update() : void {
+ //
+ // Check that we get a nonce, and that it is valid to prevent CSRF attacks.
+ //
+ if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'concerts-table' ) ) {
+ wp_die( 'You are not allowed to do that.', 403 );
+ exit();
+ }
+
+ if ( isset( $_POST['assignitem'] ) ) {
+ $concert = GiglogAdmin_Concert::get( intval( $_POST['cid'] ) );
+
+ if ( $concert ) {
+ $role = sanitize_text_field( $_POST['pid'] );
+ self::assignconcert( $role, $concert );
+ }
+
+ return;
+ }
+
+ if ( isset( $_POST['unassignitem'] ) ) {
+ $concert = GiglogAdmin_Concert::get( intval( $_POST['cid'] ) );
+
+ if ( $concert ) {
+ $role = sanitize_text_field( $_POST['pid'] );
+ self::unassignconcert( $role, $concert );
+ }
+
+ return;
+ }
+
+ // handle the status drop down
+ if ( isset( $_POST['selectstatus'] ) && ! empty( $_POST['selectstatus'] ) && ! empty( $_POST['cid'] ) ) {
+ if ( $_POST['selectstatus'] > 0 && $_POST['selectstatus'] < count( self::STATUS_LABELS ) ) {
+ $concert = GiglogAdmin_Concert::get( intval( $_POST['cid'] ) );
+ if ( $concert ) {
+ $concert->set_status( intval( $_POST['selectstatus'] ) );
+ $concert->save();
+ self::emailuser( $concert, intval( $_POST['selectstatus'] ) );
+ }
+ }
+ }
+ }
+
+ static function assignconcert( string $p1, GiglogAdmin_Concert $concert ): void {
+ $username = wp_get_current_user()->user_login;
+ $concert->assign_role( $p1, $username );
+ $concert->save();
+
+ $cuser = get_user_by( 'login', 'etadmin' );
+
+ if ( $cuser ) {
+ $dest = $cuser->user_email;
+ $subject = 'WP-GIGLOG ' . $username . ' has taken ' . $p1 . 'for concert ' . $concert->cname();
+ $body = 'WP-GIGLOG ' . $username . ' has taken ' . $p1 . 'for concert ' . $concert->cname() . ', concert with ID ' . $concert->id();
+ $headers = array( 'Content-Type: text/html; charset=UTF-8' );
+
+ wp_mail( $dest, $subject, $body );
+ }
+ }
+
+ static function unassignconcert( string $p1, GiglogAdmin_Concert $concert ): void {
+ $username = wp_get_current_user()->user_login;
+ $concert->remove_user_from_roles( $username );
+ $concert->save();
+
+ $cuser = get_user_by( 'login', 'etadmin' );
+
+ if ( $cuser ) {
+ $dest = $cuser->user_email;
+ $subject = 'WP-GIGLOG ' . $username . ' has UNASSIGNED ' . $p1 . 'for concert ' . $concert->cname();
+ $body = 'WP-GIGLOG ' . $username . ' has UNASSIGNED ' . $p1 . 'for concert ' . $concert->cname() . ', concert with ID ' . $concert->id();
+ $headers = array( 'Content-Type: text/html; charset=UTF-8' );
+
+ wp_mail( $dest, $subject, $body );
+ }
+ }
+
+ static function emailuser( GiglogAdmin_Concert $concert, string $cstatus ): void {
+ $username = wp_get_current_user()->user_login;
+ $useremail = 'live@eternal-terror.com';
+ $dest = '';
+ $roles = $concert->roles();
+ $x = '';
+
+ foreach ( $roles as $role ) {
+ if ( $role ) {
+ $cuser = get_user_by( 'login', $role );
+
+ if ( $cuser ) {
+ $dest .= $cuser->user_email . ',';
+ }
+ }
+ }
+
+ $subject = 'Message from GIGLOG: Concert ' . $concert->cname() . ' has a new status ' . $cstatus . '.';
+ $body = 'You receive this message because you have assigned one of the roles for Concert ' . $concert->cname() . '.';
+ $body .= '\r\n This is to inform you that there is a new status for the acreditation ' . $cstatus . '.';
+ $body .= '\r\n Should you no longer want to receive updates about this concert, please log in to Giglog and remove yourself from the concert. Thanks!';
+ $headers = array( 'Content-Type: text/plain; charset=UTF-8' ); // it is text by default so no need for headers actually
+
+ wp_mail( $dest, $subject, $body );
+ }
+
+ public function __construct() {
+ $this->username = wp_get_current_user()->user_login;
+
+ // Set the nonce we use to check for CSRF attacks.
+ $this->nonce = wp_create_nonce( 'concerts-table' );
+ $this->get_args();
+ }
+
+ public function render(): string {
+ return $this->render_filters()
+ . $this->render_concerts_table();
+ }
+
+ private function render_concert_table_header() : string {
+ $content = '
';
+ $content .= 'Note: the iCal link will download a file with extension .ical which can be used to add the event to your calendar. For convenience, we set all events with start time at 19:00 but please check the actual event for the correct time.';
+
+ $content .= '