web-base/core/Api/ContactAPI.class.php

152 lines
4.3 KiB
PHP
Raw Normal View History

2020-06-26 23:32:45 +02:00
<?php
namespace Api {
2020-07-01 21:10:25 +02:00
abstract class ContactAPI extends Request {
2020-06-26 23:32:45 +02:00
}
}
namespace Api\Contact {
use Api\ContactAPI;
use Api\Parameter\Parameter;
use Api\Parameter\StringType;
use Api\VerifyCaptcha;
use Objects\User;
class Request extends ContactAPI {
private int $notificationId;
private int $contactRequestId;
2021-04-09 16:05:36 +02:00
private ?string $messageId;
2020-06-26 23:32:45 +02:00
public function __construct(User $user, bool $externalCall = false) {
$parameters = array(
'fromName' => new StringType('fromName', 32),
'fromEmail' => new Parameter('fromEmail', Parameter::TYPE_EMAIL),
'message' => new StringType('message', 512),
);
$settings = $user->getConfiguration()->getSettings();
if ($settings->isRecaptchaEnabled()) {
$parameters["captcha"] = new StringType("captcha");
}
2021-04-09 16:05:36 +02:00
$this->messageId = null;
2020-06-26 23:32:45 +02:00
parent::__construct($user, $externalCall, $parameters);
}
2021-04-02 21:58:06 +02:00
public function execute($values = array()): bool {
2020-06-26 23:32:45 +02:00
if (!parent::execute($values)) {
return false;
}
$settings = $this->user->getConfiguration()->getSettings();
if ($settings->isRecaptchaEnabled()) {
$captcha = $this->getParam("captcha");
$req = new VerifyCaptcha($this->user);
if (!$req->execute(array("captcha" => $captcha, "action" => "contact"))) {
return $this->createError($req->getLastError());
}
}
2021-04-09 16:05:36 +02:00
$sendMail = $this->sendMail();
$mailError = $this->getLastError();
2020-06-26 23:32:45 +02:00
2021-04-09 16:05:36 +02:00
$insertDB = $this->insertContactRequest();
$dbError = $this->getLastError();
2020-06-26 23:32:45 +02:00
2021-04-09 16:05:36 +02:00
// Create a log entry
if (!$sendMail || $mailError) {
$message = "Error processing contact request.";
if (!$sendMail) {
$message .= " Mail: $mailError";
}
if (!$insertDB) {
$message .= " Mail: $dbError";
}
error_log($message);
}
if (!$sendMail && !$insertDB) {
return $this->createError("The contact request could not be sent. The Administrator is already informed. Please try again later.");
2020-06-26 23:32:45 +02:00
}
return $this->success;
}
private function insertContactRequest() {
$sql = $this->user->getSQL();
$name = $this->getParam("fromName");
$email = $this->getParam("fromEmail");
$message = $this->getParam("message");
2021-04-09 16:05:36 +02:00
$messageId = $this->messageId ?? null;
2020-06-26 23:32:45 +02:00
2021-04-09 16:05:36 +02:00
$res = $sql->insert("ContactRequest", array("from_name", "from_email", "message", "messageId"))
->addRow($name, $email, $message, $messageId)
2020-06-26 23:32:45 +02:00
->returning("uid")
->execute();
$this->success = ($res !== FALSE);
$this->lastError = $sql->getLastError();
if ($this->success) {
$this->contactRequestId = $sql->getLastInsertId();
}
return $this->success;
}
private function createNotification() {
$sql = $this->user->getSQL();
$name = $this->getParam("fromName");
$email = $this->getParam("fromEmail");
$message = $this->getParam("message");
$res = $sql->insert("Notification", array("title", "message", "type"))
->addRow("New Contact Request from: $name", "$name ($email) wrote:\n$message", "message")
->returning("uid")
->execute();
$this->success = ($res !== FALSE);
$this->lastError = $sql->getLastError();
if ($this->success) {
$this->notificationId = $sql->getLastInsertId();
$res = $sql->insert("GroupNotification", array("group_id", "notification_id"))
->addRow(USER_GROUP_ADMIN, $this->notificationId)
->addRow(USER_GROUP_SUPPORT, $this->notificationId)
->execute();
$this->success = ($res !== FALSE);
$this->lastError = $sql->getLastError();
}
return $this->success;
}
2021-01-07 15:54:19 +01:00
2021-04-09 16:05:36 +02:00
private function sendMail(): bool {
$name = $this->getParam("fromName");
$email = $this->getParam("fromEmail");
$message = $this->getParam("message");
2021-01-07 15:54:19 +01:00
$request = new \Api\Mail\Send($this->user);
$this->success = $request->execute(array(
2021-04-09 16:05:36 +02:00
"subject" => "Contact Request",
"body" => $message,
"replyTo" => $email,
"replyName" => $name
));
if ($this->success) {
$this->messageId = $request->getResult()["messageId"];
}
return $this->success;
2021-01-07 15:54:19 +01:00
}
2020-06-26 23:32:45 +02:00
}
}