forked from kestasjk/webDiplomacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuseroptions.php
executable file
·139 lines (116 loc) · 3.46 KB
/
useroptions.php
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php
/*
Copyright (C) 2004-2010 Kestas J. Kuliukas / Timothy Jones
This file is part of webDiplomacy.
webDiplomacy is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
webDiplomacy is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with webDiplomacy. If not, see <http://www.gnu.org/licenses/>.
*/
defined('IN_CODE') or die('This script can not be run by itself.');
/**
* Holds user options and defaults.
*
*
* @package Base
*/
class UserOptions
{
/**
* User ID
* @var int
*/
public $id;
public static $defaults = array(
'colourblind' => 'No',
'darkMode' => 'No',
'displayUpcomingLive' => 'Yes',
'showMoves' => 'Yes',
'orderSort' => 'Convoys Last'
);
public static $titles = array(
'colourblind' => 'Colourblindness',
'darkMode' => 'Dark Theme (this setting toggle when you navigate away from this page)',
'displayUpcomingLive' => 'Display upcoming live games',
'showMoves' => 'Show move arrows on the game map',
'orderSort' => 'Sort possible orders'
);
public static $possibleValues = array(
'colourblind' => array('No','Protanope','Deuteranope','Tritanope'),
'darkMode' => array('Yes', 'No'),
'displayUpcomingLive' => array('Yes','No'),
'showMoves' => array('Yes','No'),
'orderSort' => array('No Sort','Alphabetical','Convoys Last')
);
public $value;
/**
* Load the UserOptions object. It is assumed that username is already escaped.
*/
function load()
{
global $DB;
$this->value = UserOptions::$defaults;
$row = $DB->sql_hash("SELECT * FROM wD_UserOptions WHERE userID=".$this->id );
if ( ! isset($row['userID']) or ! $row['userID'] )
{
// No object was loaded
}
else
{
foreach( $row as $name=>$value )
{
if (isset(UserOptions::$defaults[$name]))
$this->value[$name] = $value;
}
}
}
function set($newValues)
{
global $DB;
$updates = array();
// Sanitise array
foreach(UserOptions::$defaults as $name=>$val)
{
if ( ! isset($newValues[$name]) )
{
$newValues[$name] = UserOptions::$defaults[$name];
}
if( in_array($newValues[$name], UserOptions::$possibleValues[$name], true ))
{
$updates[] = $name .'='.'"'.$newValues[$name].'"';
}
}
$update = implode(',',$updates);
$row = $DB->sql_hash("SELECT * FROM wD_UserOptions WHERE userID=".$this->id );
if ( ! isset($row['userID']) or ! $row['userID'] )
{
// create
$DB->sql_put("INSERT INTO wD_UserOptions (userID) VALUES (".$this->id.")");
}
$DB->sql_put("UPDATE wD_UserOptions SET $update WHERE userID=".$this->id);
}
function asJS()
{
return 'var useroptions='. json_encode($this->value).';';
}
static function defaultJS()
{
return 'var useroptions='. json_encode(UserOptions::$defaults).';';
}
/**
* Initialize a useroptions object
*
* @param int $id User ID
*/
function __construct($id, $username=false)
{
$this->id = intval($id);
$this->load();
}
}