summaryrefslogtreecommitdiffstats
path: root/includes/venue.php
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2021-04-10 13:36:28 +0200
committerHarald Eilertsen <haraldei@anduin.net>2021-04-10 14:19:50 +0200
commit029f4d7a5b9aff1f7b35f060d172611ef81a2943 (patch)
tree9d16309995e120cff7b9488eb06ef45d7aebf108 /includes/venue.php
parent410135aca1c07409f5909b44dc144bb2c3644645 (diff)
downloadgigologadmin-029f4d7a5b9aff1f7b35f060d172611ef81a2943.tar.gz
gigologadmin-029f4d7a5b9aff1f7b35f060d172611ef81a2943.tar.bz2
gigologadmin-029f4d7a5b9aff1f7b35f060d172611ef81a2943.zip
Change venues into proper objects.
This means most static functions now either return a venue object, or an array of venue objects. The exception is the `all_cities` method, which still return an array of cities as strings. The constructor has been made private, as it should not be used directly from anywhere but the static methods on the Venue class.
Diffstat (limited to 'includes/venue.php')
-rw-r--r--includes/venue.php75
1 files changed, 63 insertions, 12 deletions
diff --git a/includes/venue.php b/includes/venue.php
index 4951d6b..08e8bb5 100644
--- a/includes/venue.php
+++ b/includes/venue.php
@@ -19,26 +19,50 @@
if ( !class_exists('GiglogAdmin_Venue') ) {
class GiglogAdmin_Venue
{
- static function create($name)
+ private $id;
+ private $name;
+ private $city;
+ private $address;
+ private $webpage;
+
+ /*
+ * Constructs a new venue object from an array of attributes.
+ * The attributes are expected to be named as in the database,
+ * so this constructor can be used to construct the object
+ * directly from the database row.
+ */
+ private function __construct($attrs)
{
- global $wpdb;
+ $this->id = isset($attrs->id) ? $attrs->id : NULL;
+ $this->name = isset($attrs->wpgvenue_name) ? $attrs->wpgvenue_name : NULL;
+ $this->city = isset($attrs->wpgvenue_city) ? $attrs->wpgvenue_city : NULL;
+ $this->address = isset($attrs->wpgvenue_address) ? $attrs->wpgvenue_address : NULL;
+ $this->webpage = isset($attrs->wpgvenue_webpage) ? $attrs->wpgvenue_webpage : NULL;
+ }
- $wpdb->insert('wpg_venues', array(
- 'id' => '',
- 'wpgvenue_name' => $name
- ));
+ static function create($name)
+ {
+ $attrs = new stdClass();
+ $attrs->wpgvenue_name = $name;
+ $venue = new GiglogAdmin_Venue($attrs);
+ $venue->save();
- return $wpdb->insert_id;
+ return $venue;
}
static function find_or_create($name)
{
global $wpdb;
- $venuesql = 'SELECT id FROM wpg_venues WHERE upper(wpgvenue_name)="' . $name . '"';
+ $venuesql = 'SELECT * FROM wpg_venues WHERE upper(wpgvenue_name)="' . $name . '"';
$results = $wpdb->get_results($venuesql);
- return $results ? $results[0]->id : GiglogAdmin_Venue::create($name);
+ if ($results) {
+ return new GiglogAdmin_Venue($results[0]);
+ }
+ else {
+ return GiglogAdmin_Venue::create($name);
+ }
}
static function all_cities()
@@ -53,9 +77,9 @@ if ( !class_exists('GiglogAdmin_Venue') ) {
{
global $wpdb;
- $results = $wpdb->get_results("select id, CONCAT( IFNULL(wpgvenue_name,''),'-',IFNULL(wpgvenue_city,'')) as vname from wpg_venues");
+ $results = $wpdb->get_results("select * from wpg_venues");
- return ($results);
+ return array_map(function ($r) { return new GiglogAdmin_Venue($r); }, $results);
}
@@ -66,7 +90,34 @@ if ( !class_exists('GiglogAdmin_Venue') ) {
"select id, wpgvenue_name from wpg_venues where wpgvenue_city=?", $city);
$results = $wpdb->get_results($q);
- return array_map(function ($r) { return [$r->id, $r->wpgvenue_name]; }, $results);
+ return array_map(function ($r) { return new GiglogAdmin_Venue($r); }, $results);
+ }
+
+ public function save()
+ {
+ global $wpdb;
+
+ $wpdb->insert('wpg_venues', array(
+ 'id' => '',
+ 'wpgvenue_name' => $this->name
+ ));
+
+ $this->id = $wpdb->insert_id;
+ }
+
+ public function id()
+ {
+ return $this->id;
+ }
+
+ public function name()
+ {
+ return $this->name;
+ }
+
+ public function city()
+ {
+ return $this->city;
}
}
}