summaryrefslogtreecommitdiff
path: root/Aktywator/MySQLTournament.cs
blob: ff3258aaec53be1d5491ebcd3a244528f543f004 (plain)
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
using System;
using System.Collections.Generic;
using System.Text;
using MySql.Data.MySqlClient;
using data = MySql.Data.MySqlClient.MySqlDataReader;

namespace Aktywator
{
    public class MySQLTournament : Tournament
    {
        public MySQL mysql;

        public MySQLTournament(string name)
        {
            this._name = name;
            mysql = new MySQL(name);
            recognizeType();
        }

        private void recognizeType()
        {
            if ((mysql.selectOne("SHOW TABLES LIKE 'admin'") == "admin")
                    && (mysql.selectOne("SHOW FIELDS IN admin LIKE 'dnazwa'") == "dnazwa")
                    && (mysql.selectOne("SHOW TABLES LIKE 'zawodnicy'") == "zawodnicy"))
                _type = Tournament.TYPE_PARY;
            else if ((mysql.selectOne("SHOW TABLES LIKE 'admin'") == "admin")
                    && (mysql.selectOne("SHOW FIELDS IN admin LIKE 'teamcnt'") == "teamcnt")
                    && (mysql.selectOne("SHOW TABLES LIKE 'players'") == "players"))
                _type = Tournament.TYPE_TEAMY;
            else _type = Tournament.TYPE_UNKNOWN;
        }

        public override string ToString()
        {
            return this.name + " [" + (this.type == Tournament.TYPE_PARY ? 'P' : 'T') + "]";
        }

        public static List<MySQLTournament> getTournaments()
        {
            List<MySQLTournament> list = new List<MySQLTournament>();
            MySQL c = new MySQL("");
            data dbs = c.select("SHOW DATABASES;");
            while (dbs.Read())
            {
                MySQLTournament t = new MySQLTournament(dbs.GetString(0));
                if (t.type > Tournament.TYPE_UNKNOWN)
                    list.Add(t);
                t.mysql.close();
            }
            return list;
        }

        override internal void setup()
        {
            if (this.mysql != null)
            {
                this.mysql.close();
                this.mysql.connect();
            }
        }

        override internal string getName()
        {
            return this.name;
        }

        override public string getSectionsNum()
        {
            throw new NotImplementedException("Don't call this method on generic class instance");
        }

        override public string getTablesNum()
        {
            throw new NotImplementedException("Don't call this method on generic class instance");
        }

        override internal string getTypeLabel()
        {
            throw new NotImplementedException("Don't call this method on generic class instance");
        }

    }
}