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 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
|
/*
Copyright (©) 2003-2025 Teus Benschop.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <assets/view.h>
#include <assets/page.h>
#include <assets/header.h>
#include <access/logic.h>
#include <database/config/general.h>
#include <database/privileges.h>
#include <session/login.h>
#include <locale/translate.h>
#include <webserver/request.h>
#include <filter/roles.h>
#include <filter/string.h>
#include <filter/url.h>
#include <confirm/worker.h>
#include <email/send.h>
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Weffc++"
#pragma GCC diagnostic ignored "-Wsuggest-override"
#pragma GCC diagnostic ignored "-Wzero-as-null-pointer-constant"
#ifndef HAVE_PUGIXML
#include <pugixml/pugixml.hpp>
#endif
#ifdef HAVE_PUGIXML
#include <pugixml.hpp>
#endif
#pragma GCC diagnostic pop
#include <tasks/logic.h>
struct Verification
{
std::string question {};
std::string answer {};
std::string passage {};
};
const char * session_signup_url ()
{
return "session/signup";
}
bool session_signup_acl (Webserver_Request& webserver_request)
{
if (config::logic::create_no_accounts()) return false;
return roles::access_control (webserver_request, roles::guest);
}
std::string session_signup ([[maybe_unused]] Webserver_Request& webserver_request)
{
std::string page{};
#ifdef HAVE_CLOUD
Assets_Header header = Assets_Header (translate ("Signup"), webserver_request);
page += header.run ();
Assets_View view;
// Some security questions.
std::vector <Verification> verifications;
Verification verification;
verification.question = translate("To which city was Paul travelling when a light from heaven shone round about him?");
verification.answer = translate("Damascus");
verification.passage = translate("And while he travelled, he came near Damascus; and suddenly a light from heaven shone round about him.");
verifications.push_back (verification);
verification.question = translate("What is the name of the brother of Aaron the high priest?");
verification.answer = translate("Moses");
verification.passage = translate("And the anger of Jehova was kindled against Moses, and he said: Is not Aaron the Levite your brother?");
verifications.push_back (verification);
verification.question = translate("What is the name of the city where Jesus was born?");
verification.answer = translate("Bethlehem");
verification.passage = translate("When Jesus was born in Bethlehem of Judaea in the days of Herod the king, behold, wise men from the east came to Jerusalem.");
verifications.push_back (verification);
verification.question = translate("What is the name of the island where John was sent to?");
verification.answer = translate("Patmos");
verification.passage = translate("I, John, your brother and companion in the persecution, and in the kingdom and endurance of Jesus Christ, was in the island called Patmos, because of the word of God, and because of the testimony of Jesus Christ.");
verifications.push_back (verification);
verification.question = translate("Who is the first person to acknowledge Jesus as the Christ?");
verification.answer = translate("Simeon");
verification.passage = translate("There was Simeon. A just and devout man. The Holy Spirit told him that he will see Christ before his death.");
verifications.push_back (verification);
verification.question = translate("To whom was the Acts Of Apostles written?");
verification.answer = translate("Theophilus");
verification.passage = translate("The former treatise have I made, O Theophilus, of all that Jesus began both to do and teach,");
verifications.push_back (verification);
verification.question = translate("Where did Jesus met the woman from Samaria?");
verification.answer = translate("Jacob's well");
verification.passage = translate("Jesus being wearied by his journey, sat on Jacob's well. Then came a woman from Samaria to get water.");
verifications.push_back (verification);
verification.question = translate("Who was the father of Abraham?");
verification.answer = translate("Terah");
verification.passage = translate("And Terah took Abram his son,");
verifications.push_back (verification);
verification.question = translate("Who was the son of Cush, the mighty hunter before the Lord?");
verification.answer = translate("Nimrod");
verification.passage = translate("And Cush bore Nimrod. He was a mighty hunter before the Lord.");
verifications.push_back (verification);
verification.question = translate("What is the name of Job's friend that answered him first?");
verification.answer = translate("Eliphaz");
verification.passage = translate("Then Eliphaz the Temanite answered and said to Job.");
verifications.push_back (verification);
verification.question = translate("What is the name of Ruth's husband?");
verification.answer = translate("Boaz");
verification.passage = translate("So Boaz took Ruth as his wife.");
verifications.push_back (verification);
verification.question = translate("Who taught Lemuel Proverbs chapter 31?");
verification.answer = translate("Lemuel's mother");
verification.passage = translate("The words of king Lemuel, the prophecy that his mother taught him.");
verifications.push_back (verification);
verification.question = translate("Who is the chosen people of God in the Old Testament?");
verification.answer = translate("Israel");
verification.passage = translate("Israel, you are the chosen people of the Lord your God.");
verifications.push_back (verification);
verification.question = translate("Where did God rescue Israel from?");
verification.answer = translate("Egypt");
verification.passage = translate("Then with his mighty arm, he rescued you from Egypt.");
verifications.push_back (verification);
verification.question = translate("Who's the father of Abimelech?");
verification.answer = translate("Gideon");
verification.passage = translate("Abimelech the son of Gideon went to Shechem.");
verifications.push_back (verification);
verification.question = translate("Who's the father of Joshua the priest in the time of Ezra?");
verification.answer = translate("Jozadak");
verification.passage = translate("The priest Joshua son of Jozadak.");
verifications.push_back (verification);
verification.question = translate("Who's the king of Babylonia, that captures Israel?");
verification.answer = translate("Nebuchadnezzar");
verification.passage = translate("We were told that their people had made God angry, and he let them be captured by Nebuchadnezzar, the king of Babylonia.");
verifications.push_back (verification);
verification.question = translate("Who prospered in the reign of Darius, and in the reign of Cyrus the Persian?");
verification.answer = translate("Daniel");
verification.passage = translate("So this Daniel prospered in the reign of Darius, and in the reign of Cyrus the Persian.");
verifications.push_back (verification);
verification.question = translate("Who's Abram's brother's son?");
verification.answer = translate("Lot");
verification.passage = translate("And they took Lot, Abram's brother's son, who dwelt in Sodom, and his goods, and departed.");
verifications.push_back (verification);
verification.question = translate("Who wrote Song of Songs?");
verification.answer = translate("Solomon");
verification.passage = translate("This is Solomon's most beautiful song.");
verifications.push_back (verification);
verification.question = translate("Who's the father of Hosea?");
verification.answer = translate("Beeri");
verification.passage = translate("I am Hosea son of Beeri.");
verifications.push_back (verification);
size_t question_number = static_cast<size_t>(filter::strings::rand (0, 20));
view.set_variable ("question", verifications[question_number].question);
view.set_variable ("passage", verifications[question_number].passage);
// The form has a hidden text entry. This text entry stores the right answer to the questions.
// When the form is submitted, this right answer is submitted too, and we can check whether
// the user gave the right answer.
view.set_variable ("standard", verifications[question_number].answer);
// Form submission handler.
bool signed_up = false;
if (!webserver_request.post_get("submit").empty()) {
bool form_is_valid = true;
const std::string user = webserver_request.post_get("user");
const std::string pass = webserver_request.post_get("pass");
const std::string mail = webserver_request.post_get("mail");
const std::string answer = webserver_request.post_get("answer");
const std::string standard = webserver_request.post_get("standard");
if (user.length () < 4) {
form_is_valid = false;
view.set_variable ("username_invalid_message", translate("Username should be at least four characters long"));
}
if (pass.length () < 4) {
form_is_valid = false;
view.set_variable ("password_invalid_message", translate("Password should be at least four characters long"));
}
if (!filter_url_email_is_valid (mail)) {
form_is_valid = false;
view.set_variable ("email_invalid_message", translate("The email address is not valid"));
}
if (answer != standard) {
form_is_valid = false;
view.set_variable ("answer_invalid_message", translate("The answer to the question is not correct"));
}
Database_Users database_users;
if (form_is_valid) {
if (database_users.usernameExists (user)) {
const std::string message = translate("The username that you have chosen has already been taken.") + " " + translate("Please choose another one.");
view.set_variable ("error_message", message);
form_is_valid = false;
}
}
if (form_is_valid) {
if (database_users.emailExists (mail)) {
const std::string message = translate("The email address that you have chosen has already been taken.") + " " + translate("Please choose another one.");
view.set_variable ("error_message", message);
form_is_valid = false;
}
}
if (form_is_valid) {
const std::string initial_subject = translate("Signup verification");
// Create the initial body of the email to send to the new user.
pugi::xml_node node;
pugi::xml_document initial_document;
node = initial_document.append_child ("h3");
node.text ().set (initial_subject.c_str());
std::string information;
if (config::logic::default_bibledit_configuration ()) {
node = initial_document.append_child ("p");
information = translate("There is a request to open an account with this email address.");
node.text ().set (information.c_str());
}
std::string initial_body {};
{
std::stringstream output {};
initial_document.print (output, "", pugi::format_raw);
initial_body = output.str ();
}
// Set the role of the new signing up user, it is set as member if no
// default has been set by an administrator.
const int role = database::config::general::get_default_new_user_access_level ();
const std::string query = database_users.add_userQuery (user, pass, role, mail);
// Set default privileges on new signing up user.
const std::set <std::string> defusers = access_logic::default_privilege_usernames ();
const std::vector <int> privileges = {PRIVILEGE_VIEW_RESOURCES, PRIVILEGE_VIEW_NOTES, PRIVILEGE_CREATE_COMMENT_NOTES};
auto default_username = next(defusers.begin(), role + 1);
for (const auto& privilege : privileges) {
const bool state = DatabasePrivileges::get_feature (*default_username, privilege);
DatabasePrivileges::set_feature (user, privilege, state);
}
const bool deletenotes = webserver_request.database_config_user ()->get_privilege_delete_consultation_notes_for_user (*default_username);
const bool useadvancedmode = webserver_request.database_config_user ()->get_privilege_use_advanced_mode_for_user (*default_username);
const bool editstylesheets = webserver_request.database_config_user ()->get_privilege_set_stylesheets_for_user (*default_username);
if (deletenotes) webserver_request.database_config_user ()->set_privilege_delete_consultation_notes_for_user (user, 1);
if (useadvancedmode) webserver_request.database_config_user ()->set_privilege_use_advanced_mode_for_user (user, 1);
if (editstylesheets) webserver_request.database_config_user ()->set_privilege_set_stylesheets_for_user (user, 1);
if (webserver_request.database_config_user ()->get_privilege_delete_consultation_notes_for_user (*default_username)) webserver_request.database_config_user ()->set_privilege_delete_consultation_notes_for_user (user, 1);
if (webserver_request.database_config_user ()->get_privilege_use_advanced_mode_for_user (*default_username)) webserver_request.database_config_user ()->set_privilege_use_advanced_mode_for_user (user, 1);
if (webserver_request.database_config_user ()->get_privilege_set_stylesheets_for_user (*default_username)) webserver_request.database_config_user ()->set_privilege_set_stylesheets_for_user (user, 1);
// Create the contents for the confirmation email
// that will be sent after the account has been verified.
const std::string subsequent_subject {translate("Account opened")};
pugi::xml_document subsequent_document {};
node = subsequent_document.append_child ("h3");
node.text ().set (subsequent_subject.c_str());
node = subsequent_document.append_child ("p");
information = translate("Welcome!");
node.text ().set (information.c_str());
node = subsequent_document.append_child ("p");
information = translate("Your account is now active and you have logged in.");
node.text ().set (information.c_str());
std::string subsequent_body {};
{
std::stringstream output{};
subsequent_document.print (output, "", pugi::format_raw);
subsequent_body = output.str ();
}
// Store the confirmation information in the database.
confirm::worker::setup (webserver_request, mail, user, initial_subject, initial_body, query, subsequent_subject, subsequent_body);
// Done signup.
signed_up = true;
}
}
view.set_variable ("mailer", email::setup_information (true, false));
if (signed_up) page += view.render ("session", "signedup");
else page += view.render ("session", "signup");
page += assets_page::footer ();
#endif
return page;
}
|