summaryrefslogtreecommitdiff
path: root/includes/model/AngelType_model.php
blob: 022462c00e43c37505e59b7a0ec053ea02e637d3 (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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<?php
use Engelsystem\ValidationResult;

/**
 * Returns an array containing the basic attributes of angeltypes.
 * FIXME! This is the big sign for needing entity objects
 */
function AngelType_new()
{
    return [
      'id' => null,
      'name' => "",
      'restricted' => false,
      'no_self_signup' => false,
      'description' => '',
      'requires_driver_license' => false,
      'contact_user_id' => null,
      'contact_name' => null,
      'contact_dect' => null,
      'contact_email' => null
  ];
}

/**
 * Validates the contact user
 *
 * @param Angeltype $angeltype
 *          The angeltype
 * @return ValidationResult
 */
function AngelType_validate_contact_user_id($angeltype)
{
    if (! isset($angeltype['contact_user_id'])) {
        return new ValidationResult(true, null);
    }
    if (isset($angeltype['contact_name']) || isset($angeltype['contact_dect']) || isset($angeltype['contact_email'])) {
        return new ValidationResult(false, $angeltype['contact_user_id']);
    }
    if (User($angeltype['contact_user_id']) == null) {
        return new ValidationResult(false, $angeltype['contact_user_id']);
    }
    return new ValidationResult(true, $angeltype['contact_user_id']);
}

/**
 * Returns contact data (name, dect, email) for given angeltype or null
 *
 * @param Angeltype $angeltype
 *          The angeltype
 */
function AngelType_contact_info($angeltype)
{
    if (isset($angeltype['contact_user_id'])) {
        $contact_user = User($angeltype['contact_user_id']);
        $contact_data = [
        'contact_name' => $contact_user['Nick'],
        'contact_dect' => $contact_user['DECT']
    ];
        if ($contact_user['email_by_human_allowed']) {
            $contact_data['contact_email'] = $contact_user['email'];
        }
        return $contact_data;
    }
    if (isset($angeltype['contact_name'])) {
        return [
        'contact_name' => $angeltype['contact_name'],
        'contact_dect' => $angeltype['contact_dect'],
        'contact_email' => $angeltype['contact_email']
    ];
    }
    return null;
}

/**
 * Delete an Angeltype.
 *
 * @param Angeltype $angeltype
 */
function AngelType_delete($angeltype)
{
    $result = sql_query("
      DELETE FROM `AngelTypes` 
      WHERE `id`='" . sql_escape($angeltype['id']) . "' 
      LIMIT 1");
    if ($result === false) {
        engelsystem_error("Unable to delete angeltype.");
    }
    engelsystem_log("Deleted angeltype: " . AngelType_name_render($angeltype));
    return $result;
}

/**
 * Update Angeltype.
 *
 * @param Angeltype $angeltype
 *          The angeltype
 */
function AngelType_update($angeltype)
{
    $result = sql_query("
      UPDATE `AngelTypes` SET 
      `name`='" . sql_escape($angeltype['name']) . "', 
      `restricted`=" . sql_bool($angeltype['restricted']) . ",
      `description`='" . sql_escape($angeltype['description']) . "',
      `requires_driver_license`=" . sql_bool($angeltype['requires_driver_license']) . ",
      `no_self_signup`=" . sql_bool($angeltype['no_self_signup']) . ",
      `contact_user_id`=" . sql_null($angeltype['contact_user_id']) . ",
      `contact_name`=" . sql_null($angeltype['contact_name']) . ",
      `contact_dect`=" . sql_null($angeltype['contact_dect']) . ",
      `contact_email`=" . sql_null($angeltype['contact_email']) . "
      WHERE `id`='" . sql_escape($angeltype['id']) . "'");
    if ($result === false) {
        engelsystem_error("Unable to update angeltype.");
    }
    engelsystem_log("Updated angeltype: " . $angeltype['name'] . ($angeltype['restricted'] ? ", restricted" : "") . ($angeltype['no_self_signup'] ? ", no_self_signup" : "") . ($angeltype['requires_driver_license'] ? ", requires driver license" : ""));
    return $result;
}

/**
 * Create an Angeltype.
 *
 * @param Angeltype $angeltype
 *          The angeltype
 * @return the created angeltype
 */
function AngelType_create($angeltype)
{
    $result = sql_query("
      INSERT INTO `AngelTypes` SET 
      `name`='" . sql_escape($angeltype['name']) . "', 
      `restricted`=" . sql_bool($angeltype['restricted']) . ",
      `description`='" . sql_escape($angeltype['description']) . "',
			`requires_driver_license`=" . sql_bool($angeltype['requires_driver_license']) . ",
			`no_self_signup`=" . sql_bool($angeltype['no_self_signup']) . ",
      `contact_user_id`=" . sql_null($angeltype['contact_user_id']) . ",
      `contact_name`=" . sql_null($angeltype['contact_name']) . ",
      `contact_dect`=" . sql_null($angeltype['contact_dect']) . ",
      `contact_email`=" . sql_null($angeltype['contact_email']));
    if ($result === false) {
        engelsystem_error("Unable to create angeltype.");
    }
    $angeltype['id'] = sql_id();
    engelsystem_log("Created angeltype: " . $angeltype['name'] . ($angeltype['restricted'] ? ", restricted" : "") . ($angeltype['requires_driver_license'] ? ", requires driver license" : ""));
    return $angeltype;
}

/**
 * Validates a name for angeltypes.
 * Returns ValidationResult containing validation success and validated name.
 *
 * @param string $name
 *          Wanted name for the angeltype
 * @param AngelType $angeltype
 *          The angeltype the name is for
 * @return ValidationResult result and validated name
 */
function AngelType_validate_name($name, $angeltype)
{
    $name = strip_item($name);
    if ($name == "") {
        return new ValidationResult(false, "");
    }
    if ($angeltype != null && isset($angeltype['id'])) {
        $valid = sql_num_query("
        SELECT * 
        FROM `AngelTypes` 
        WHERE `name`='" . sql_escape($name) . "' 
        AND NOT `id`='" . sql_escape($angeltype['id']) . "'
        LIMIT 1") == 0;
        return new ValidationResult($valid, $name);
    }
    $valid = sql_num_query("
        SELECT `id` 
        FROM `AngelTypes` 
        WHERE `name`='" . sql_escape($name) . "' 
        LIMIT 1") == 0;
    return new ValidationResult($valid, $name);
}

/**
 * Returns all angeltypes and subscription state to each of them for given user.
 *
 * @param User $user
 */
function AngelTypes_with_user($user)
{
    $result = sql_select("
      SELECT `AngelTypes`.*, 
      `UserAngelTypes`.`id` as `user_angeltype_id`,
      `UserAngelTypes`.`confirm_user_id`,
      `UserAngelTypes`.`supporter`
      FROM `AngelTypes` 
      LEFT JOIN `UserAngelTypes` ON `AngelTypes`.`id`=`UserAngelTypes`.`angeltype_id` 
      AND `UserAngelTypes`.`user_id`=" . $user['UID'] . "
      ORDER BY `name`");
    if ($result === false) {
        engelsystem_error("Unable to load angeltypes.");
    }
    return $result;
}

/**
 * Returns all angeltypes.
 */
function AngelTypes()
{
    $result = sql_select("
      SELECT * 
      FROM `AngelTypes` 
      ORDER BY `name`");
    if ($result === false) {
        engelsystem_error("Unable to load angeltypes.");
    }
    return $result;
}

/**
 * Returns AngelType id array
 */
function AngelType_ids()
{
    $result = sql_select("SELECT `id` FROM `AngelTypes`");
    if ($result === false) {
        engelsystem_error("Unable to load angeltypes.");
    }
    return select_array($result, 'id', 'id');
}

/**
 * Returns angelType by id.
 *
 * @param $angeltype_id angelType
 *          ID
 */
function AngelType($angeltype_id)
{
    $angelType_source = sql_select("SELECT * FROM `AngelTypes` WHERE `id`='" . sql_escape($angeltype_id) . "'");
    if ($angelType_source === false) {
        engelsystem_error("Unable to load angeltype.");
    }
    if (count($angelType_source) > 0) {
        return $angelType_source[0];
    }
    return null;
}