summaryrefslogtreecommitdiffstats
path: root/includes/admin/register_db_tables.php
blob: 10875d9f5aa1ab180e46a2c2dcf6fce14496bf71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
// SPDX-FileCopyrightText: 2021 Andrea Chirulescu <andrea.chirulescu@gmail.com>
// SPDX-FileCopyrightText: 2021 Harald Eilertsen <haraldei@anduin.net>
//
// SPDX-License-Identifier: AGPL-3.0-or-later

if (!function_exists('giglogadmin_populate_countries')) {
    function giglogadmin_populate_countries(): void
    {
        global $wpdb;
        //not removing yet as I haven't yet checked where else it might be called
    }
}

if ( !function_exists( "giglog_register_db_tables") )
{
    /**
     * @return void
     */
    function giglog_register_db_tables()
    {
        global $wpdb;

        // Clean out obsolete tables if they exist.
        $wpdb->query("DROP TABLE IF EXISTS "
            . "wpg_bands, wpg_concertlogs, wpg_files, wpg_logchanges, wpg_pressstatus");
        /* not sure if DB version needed for now, leaving code here in case we decide to use it. To be removed if not
        $db_version = get_option('giglogadmin_db_version');
        if ($db_version == 8) {
            return;
        }
        */

        $concerts_table =
            "CREATE TABLE IF NOT EXISTS `wpg_concerts` (
                `id` int(11) NOT NULL AUTO_INCREMENT,
                `wpgconcert_name` VARCHAR(2000) NOT NULL,
                `venue` int(11) NOT NULL,
                `wpgconcert_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
                `wpgconcert_tickets` VARCHAR(2000) DEFAULT NULL,
                `wpgconcert_event` VARCHAR(2000) DEFAULT NULL,
                `wpgconcert_type` INT NOT NULL DEFAULT '1' COMMENT '1 concert, 2 festival',
                `wpgconcert_status` INT DEFAULT 1,
                `wpgconcert_roles` JSON CHECK (JSON_VALID(wpgconcert_roles)),
                `created` TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
                `updated` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
                PRIMARY KEY (`id`),
                KEY `wpgconcert_venue` (`venue`)
             ) ENGINE=InnoDB DEFAULT CHARSET=utf8;";


        $venues_table =
            "CREATE TABLE IF NOT EXISTS `wpg_venues` (
                `id` int(11) NOT NULL AUTO_INCREMENT,
                `wpgvenue_name` VARCHAR(500) NOT NULL,
                `wpgvenue_city` VARCHAR(250) DEFAULT NULL,
                `wpgvenue_address` VARCHAR(2000) DEFAULT NULL,
                `wpgvenue_webpage` VARCHAR(200) DEFAULT NULL,
                PRIMARY KEY (`id`)
             ) ENGINE=InnoDB DEFAULT CHARSET=utf8;";

        $tables = array(
            $concerts_table,
            $venues_table);

        foreach($tables as $tabledef) {
            $result = $wpdb->query($tabledef);
            if ($result === false) {
                error_log("Registering table failed.");
            }
        }


            $wpdb->query(
                "ALTER TABLE `wpg_concerts`
                    ADD CONSTRAINT `wpgconcert_venue`
                        FOREIGN KEY (`venue`)
                        REFERENCES `wpg_venues` (`id`) ON DELETE NO ACTION;");

        // update_option("giglogadmin_db_version", 8);
    }

    giglog_register_db_tables();
}

?>