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