]> jfr.im git - z_archive/kelsier.git/blob - Kelsier.cs
Adding auth
[z_archive/kelsier.git] / Kelsier.cs
1 // Kelsier project - entrypoint and global state code (Kelsier.cs)
2 // Written by the Jobbig codeteam. <http://jobbig.eu/code/>
3 // Copyright 2013 John Runyon.
4 //
5 // This file is part of the Kelsier project.
6 //
7 // Kelsier is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU Affero General Public License as published by
9 // the Free Software Foundation, either version 3 of the License, or
10 // (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU Affero General Public License for more details.
16 //
17 // You should have received a copy of the GNU Affero General Public License
18 // along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20 using System;
21 using System.Collections.Generic;
22 using System.Linq;
23 using System.Text;
24 using MySql.Data.MySqlClient;
25 using System.IO;
26 using Kelsier.Common;
27
28 namespace Kelsier {
29 static public class Root {
30 static void Main(string[] args) {
31
32 if (Properties.Settings.Default.datadir == ".")
33 Info.moduledir = Directory.GetCurrentDirectory() + @"\modules";
34 else
35 Info.moduledir = Properties.Settings.Default.datadir + @"\modules";
36 Info.refreshmods();
37
38 StreamWriter fileout = new StreamWriter("kelsier.log", false);
39 fileout.AutoFlush = true;
40 LogOutput[] outputs = new LogOutput[] { new LogOutput(Console.Out), new LogOutput(fileout) };
41 Info.log = new Logger("Root", new LogOutput[] { new LogOutput(Console.Out) }, outputs, outputs);
42
43 Info.db = new Database(Properties.Settings.Default.dbstr);
44
45 List<int> botids = new List<int>();
46 MySqlDataReader rdr = Info.db.queryReader("SELECT id FROM bots");
47 while (rdr.Read()) {
48 botids.Add(rdr.GetInt32("id"));
49 }
50 rdr.Close();
51 foreach (int key in botids) {
52 Info.bots.Add(key, new Bot(key));
53 Info.bots[key].connect();
54 }
55
56 while (true) {
57 System.Threading.Thread.Sleep(2000);
58 }
59 }
60 }
61 }