Marc Kupietz | 0215a44 | 2023-03-05 18:34:16 +0100 | [diff] [blame] | 1 | <?php |
| 2 | require_once 'vendor/autoload.php'; |
Marc Kupietz | baf8d91 | 2023-03-15 09:13:03 +0100 | [diff] [blame] | 3 | include_once 'utils.php'; |
Marc Kupietz | 0215a44 | 2023-03-05 18:34:16 +0100 | [diff] [blame] | 4 | |
| 5 | class User |
| 6 | { |
Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 7 | public $id; |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 8 | public $username; |
Marc Kupietz | 144d82e | 2023-03-26 15:55:42 +0200 | [diff] [blame] | 9 | public $title; |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 10 | public $first_name; |
| 11 | public $last_name; |
| 12 | public $organization; |
| 13 | public $user_hash; |
| 14 | public $password; |
| 15 | public $street; |
| 16 | public $zip; |
| 17 | public $city; |
| 18 | public $country; |
| 19 | public $email; |
| 20 | public $phone; |
| 21 | public bool $eula_signed; |
| 22 | public bool $privacy_policy_signed; |
Marc Kupietz | cdf2957 | 2023-03-09 08:14:12 +0100 | [diff] [blame] | 23 | public bool $author; |
| 24 | public $accepted_paper_id; |
Marc Kupietz | 145f5b9 | 2023-03-09 20:39:31 +0100 | [diff] [blame] | 25 | public bool $participation_confirmed; |
Marc Kupietz | cdf2957 | 2023-03-09 08:14:12 +0100 | [diff] [blame] | 26 | public $participation_confirmed_at; |
| 27 | public bool $student; |
| 28 | public bool $conference_dinner; |
Marc Kupietz | 0dbe6b6 | 2023-03-21 17:58:11 +0100 | [diff] [blame] | 29 | public bool $vegetarian_dinner; |
Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 30 | public $registered_at; |
| 31 | public bool $earlybird_registration; |
Marc Kupietz | 79eaa0b | 2023-03-16 17:33:43 +0100 | [diff] [blame] | 32 | public $lunch_day_1; |
| 33 | public $lunch_day_2; |
| 34 | public $lunch_day_3; |
Marc Kupietz | 8b80c7a | 2023-03-28 21:41:39 +0200 | [diff] [blame] | 35 | public bool $excursion; |
Marc Kupietz | 145f5b9 | 2023-03-09 20:39:31 +0100 | [diff] [blame] | 36 | public float $total_due; |
Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 37 | public $invoice; |
Marc Kupietz | 7d728fe | 2023-03-28 17:32:18 +0200 | [diff] [blame] | 38 | public bool $presentation_confirmed; |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 39 | |
| 40 | function __construct() |
| 41 | { |
Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 42 | $this->id = ""; |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 43 | $this->username = ""; |
Marc Kupietz | 144d82e | 2023-03-26 15:55:42 +0200 | [diff] [blame] | 44 | $this->title = ""; |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 45 | $this->first_name = ""; |
| 46 | $this->last_name = ""; |
| 47 | $this->email = ""; |
| 48 | $this->organization = ""; |
| 49 | $this->user_hash = ""; |
| 50 | $this->password = ""; |
| 51 | $this->city = ""; |
| 52 | $this->country = ""; |
| 53 | $this->zip = ""; |
| 54 | $this->street = ""; |
| 55 | $this->phone = ""; |
| 56 | $this->eula_signed = false; |
| 57 | $this->privacy_policy_signed = false; |
Marc Kupietz | cdf2957 | 2023-03-09 08:14:12 +0100 | [diff] [blame] | 58 | $this->author = false; |
| 59 | $this->accepted_paper_id = ""; |
| 60 | $this->participation_confirmed = false; |
| 61 | $this->participation_confirmed_at = ""; |
| 62 | $this->student = false; |
| 63 | $this->conference_dinner = false; |
Marc Kupietz | 0dbe6b6 | 2023-03-21 17:58:11 +0100 | [diff] [blame] | 64 | $this->vegetarian_dinner = false; |
Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 65 | $this->registered_at = date("Y-m-d H:i:s") . "UTC"; |
| 66 | $this->earlybird_registration = false; |
Marc Kupietz | 22b2ca2 | 2023-03-28 17:28:44 +0200 | [diff] [blame] | 67 | $this->lunch_day_1 = ""; |
| 68 | $this->lunch_day_2 = ""; |
| 69 | $this->lunch_day_3 = ""; |
Marc Kupietz | 8b80c7a | 2023-03-28 21:41:39 +0200 | [diff] [blame] | 70 | $this->excursion = false; |
Marc Kupietz | 145f5b9 | 2023-03-09 20:39:31 +0100 | [diff] [blame] | 71 | $this->total_due = 0.0; |
Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 72 | $this->invoice = ""; |
Marc Kupietz | 7d728fe | 2023-03-28 17:32:18 +0200 | [diff] [blame] | 73 | $this->presentation_confirmed = false; |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 74 | } |
| 75 | |
Marc Kupietz | 7d728fe | 2023-03-28 17:32:18 +0200 | [diff] [blame] | 76 | function set_name_and_paper_id($first_name, $last_name, $paper_id): User |
| 77 | { |
| 78 | $this->first_name = $first_name; |
| 79 | $this->last_name = $last_name; |
| 80 | $this->accepted_paper_id = $paper_id; |
| 81 | return $this; |
| 82 | } |
| 83 | |
| 84 | function set_email_and_paper_id($email, $paper_id): User |
| 85 | { |
| 86 | $this->email = $email; |
| 87 | $this->accepted_paper_id = $paper_id; |
| 88 | return $this; |
| 89 | } |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 90 | function __construct1(object $data) |
| 91 | { |
| 92 | foreach ($data as $key => $value) { |
| 93 | if (array_key_exists($key, (array) $this)) |
| 94 | $this->{$key} = $value; |
Marc Kupietz | ade9e3c | 2023-03-06 21:39:23 +0100 | [diff] [blame] | 95 | } |
Marc Kupietz | 8b80c7a | 2023-03-28 21:41:39 +0200 | [diff] [blame] | 96 | if (isset($data->password)) |
| 97 | $this->set_password($data->password); |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 98 | } |
Marc Kupietz | 0215a44 | 2023-03-05 18:34:16 +0100 | [diff] [blame] | 99 | |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 100 | function init_from_object(object $data) |
| 101 | { |
| 102 | foreach ($data as $key => $value) { |
| 103 | if (array_key_exists($key, (array) $this)) |
| 104 | $this->{$key} = $value; |
Marc Kupietz | ade9e3c | 2023-03-06 21:39:23 +0100 | [diff] [blame] | 105 | } |
Marc Kupietz | 8b80c7a | 2023-03-28 21:41:39 +0200 | [diff] [blame] | 106 | if (isset($data->password)) |
| 107 | $this->set_password($data->password); |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 108 | } |
Marc Kupietz | ade9e3c | 2023-03-06 21:39:23 +0100 | [diff] [blame] | 109 | |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 110 | function init_from_array(array $data) |
| 111 | { |
| 112 | foreach ($data as $key => $value) { |
| 113 | if (array_key_exists($key, (array) $this)) { |
| 114 | if (is_bool(gettype($this->{$key})) && is_string($value)) |
| 115 | $this->{$key} = !empty($value); |
| 116 | else |
| 117 | $this->{$key} = $value; |
| 118 | } |
| 119 | } |
Marc Kupietz | 8b80c7a | 2023-03-28 21:41:39 +0200 | [diff] [blame] | 120 | if (!empty($data["password"])) |
| 121 | $this->set_password($data["password"]); |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 122 | } |
| 123 | |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 124 | |
| 125 | function set_password(string $password) |
| 126 | { |
| 127 | include 'config.php'; |
Marc Kupietz | 7f5e527 | 2023-03-10 13:54:21 +0100 | [diff] [blame] | 128 | if ($CONFERENCE_REGISTRATION) { |
| 129 | $this->password = generateRandomString(32); |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 130 | # $this->user_hash = "{SHA}" . base64_encode(sha1($password, true)); |
| 131 | } else { |
Marc Kupietz | 7f5e527 | 2023-03-10 13:54:21 +0100 | [diff] [blame] | 132 | if ($ENCRYPT_PASSWORDS) { |
| 133 | $this->user_hash = "{crypt}" . crypt($password, '$6$' . generateSalt(10) . '$'); |
| 134 | # $this->user_hash = "{SHA}" . base64_encode(sha1($password, true)); |
| 135 | } else { |
| 136 | $this->user_hash = "{CLEAR}" . $password; |
| 137 | } |
| 138 | $this->password = $this->user_hash; |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 139 | } |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | function to_string() |
| 143 | { |
| 144 | $tmp_user = $this; |
Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 145 | $tmp_user->invoice = ""; |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 146 | $tmp_user->password = "***"; |
| 147 | $tmp_user->user_hash = "***"; |
Marc Kupietz | 8b80c7a | 2023-03-28 21:41:39 +0200 | [diff] [blame] | 148 | return json_encode($tmp_user); |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | function backup_in_session() |
| 152 | { |
| 153 | global $_SESSION; |
| 154 | foreach ($this as $key => $value) { |
| 155 | $_SESSION[$key] = $value; |
| 156 | } |
| 157 | } |
| 158 | |
Marc Kupietz | 8b80c7a | 2023-03-28 21:41:39 +0200 | [diff] [blame] | 159 | function to_table() |
| 160 | { |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 161 | $table = "<table style='border: 1px solid #e1e4e8; border-collapse: collapse; width: 100%;'>"; |
| 162 | foreach ($this as $key => $value) { |
Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 163 | if ($key != "password" && $key != "user_hash" && !empty($value) && $key != "invoice") { |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 164 | if (is_bool($value)) { |
Marc Kupietz | 8b80c7a | 2023-03-28 21:41:39 +0200 | [diff] [blame] | 165 | if ($value) |
| 166 | $value = "yes"; |
| 167 | else |
| 168 | $value = "no"; |
| 169 | } elseif (is_float($value)) { |
Marc Kupietz | 145f5b9 | 2023-03-09 20:39:31 +0100 | [diff] [blame] | 170 | $key .= " €"; |
Marc Kupietz | faa2bd1 | 2023-03-21 17:47:41 +0100 | [diff] [blame] | 171 | $value = number_format($value, 2, '.', ' '); |
Marc Kupietz | 0215a44 | 2023-03-05 18:34:16 +0100 | [diff] [blame] | 172 | } |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 173 | $value = str_replace("\r\n", "<br>", $value); |
| 174 | $key = str_replace("_", " ", ucfirst($key)); |
| 175 | $table .= " <tr> |
| 176 | <td style='border: 1px solid #e1e4e8; padding: 6px 13px;'><strong>$key</strong></td> |
| 177 | <td style='border: 1px solid #e1e4e8; padding: 6px 13px;'>$value</td> |
| 178 | </tr>\n"; |
| 179 | } |
Marc Kupietz | 0215a44 | 2023-03-05 18:34:16 +0100 | [diff] [blame] | 180 | } |
Marc Kupietz | 0314662 | 2023-03-07 12:03:21 +0100 | [diff] [blame] | 181 | $table .= "</table>"; |
| 182 | return $table; |
| 183 | } |
| 184 | } |