add limit check to size of sms
This commit is contained in:
parent
99349a35c5
commit
11b481aebd
|
@ -252,7 +252,7 @@ class Quota extends StandardController
|
||||||
$renew_interval = $quota['renew_interval'] ?? 'P0D';
|
$renew_interval = $quota['renew_interval'] ?? 'P0D';
|
||||||
$new_start_date = new \DateTime($quota['expiration_date']);
|
$new_start_date = new \DateTime($quota['expiration_date']);
|
||||||
$new_expiration_date = clone $new_start_date;
|
$new_expiration_date = clone $new_start_date;
|
||||||
$new_expiration_date->add(new \DateInterval($quota['renew_interval']));
|
$new_expiration_date->add(new \DateInterval($renew_interval));
|
||||||
|
|
||||||
$report = 0;
|
$report = 0;
|
||||||
if ($quota['report_unused'] && $unused_credit > 0)
|
if ($quota['report_unused'] && $unused_credit > 0)
|
||||||
|
|
|
@ -309,6 +309,16 @@ namespace controllers\publics;
|
||||||
return $this->json($return);
|
return $this->json($return);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (mb_strlen($text) > \models\Scheduled::SMS_LENGTH_LIMIT)
|
||||||
|
{
|
||||||
|
$return = self::DEFAULT_RETURN;
|
||||||
|
$return['error'] = self::ERROR_CODES['INVALID_PARAMETER'];
|
||||||
|
$return['message'] = self::ERROR_MESSAGES['INVALID_PARAMETER'] . ' : text must be less than ' . \models\Scheduled::SMS_LENGTH_LIMIT . ' char.';
|
||||||
|
$this->auto_http_code(false);
|
||||||
|
|
||||||
|
return $this->json($return);
|
||||||
|
}
|
||||||
|
|
||||||
if (!\controllers\internals\Tool::validate_date($at, 'Y-m-d H:i:s'))
|
if (!\controllers\internals\Tool::validate_date($at, 'Y-m-d H:i:s'))
|
||||||
{
|
{
|
||||||
$return = self::DEFAULT_RETURN;
|
$return = self::DEFAULT_RETURN;
|
||||||
|
|
|
@ -328,6 +328,13 @@ namespace controllers\publics;
|
||||||
return $this->redirect(\descartes\Router::url('Scheduled', 'add'));
|
return $this->redirect(\descartes\Router::url('Scheduled', 'add'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (mb_strlen($text) > \models\Scheduled::SMS_LENGTH_LIMIT)
|
||||||
|
{
|
||||||
|
\FlashMessage\FlashMessage::push('danger', 'Votre message doit faire moins de ' . \models\Scheduled::SMS_LENGTH_LIMIT . ' caractères.');
|
||||||
|
|
||||||
|
return $this->redirect(\descartes\Router::url('Scheduled', 'add'));
|
||||||
|
}
|
||||||
|
|
||||||
if (!\controllers\internals\Tool::validate_date($at, 'Y-m-d H:i:s') && !\controllers\internals\Tool::validate_date($at, 'Y-m-d H:i'))
|
if (!\controllers\internals\Tool::validate_date($at, 'Y-m-d H:i:s') && !\controllers\internals\Tool::validate_date($at, 'Y-m-d H:i'))
|
||||||
{
|
{
|
||||||
\FlashMessage\FlashMessage::push('danger', 'Vous devez fournir une date valide.');
|
\FlashMessage\FlashMessage::push('danger', 'Vous devez fournir une date valide.');
|
||||||
|
@ -540,6 +547,13 @@ namespace controllers\publics;
|
||||||
return $this->redirect(\descartes\Router::url('Scheduled', 'add'));
|
return $this->redirect(\descartes\Router::url('Scheduled', 'add'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (mb_strlen($text) > \models\Scheduled::SMS_LENGTH_LIMIT)
|
||||||
|
{
|
||||||
|
\FlashMessage\FlashMessage::push('danger', 'Votre message doit faire moins de ' . \models\Scheduled::SMS_LENGTH_LIMIT . ' caractères.');
|
||||||
|
|
||||||
|
return $this->redirect(\descartes\Router::url('Scheduled', 'add'));
|
||||||
|
}
|
||||||
|
|
||||||
if (!\controllers\internals\Tool::validate_date($at, 'Y-m-d H:i:s') && !\controllers\internals\Tool::validate_date($at, 'Y-m-d H:i'))
|
if (!\controllers\internals\Tool::validate_date($at, 'Y-m-d H:i:s') && !\controllers\internals\Tool::validate_date($at, 'Y-m-d H:i'))
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
|
|
|
@ -13,6 +13,8 @@ namespace models;
|
||||||
|
|
||||||
class Scheduled extends StandardModel
|
class Scheduled extends StandardModel
|
||||||
{
|
{
|
||||||
|
const SMS_LENGTH_LIMIT = 1000;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return numbers for a scheduled message.
|
* Return numbers for a scheduled message.
|
||||||
*
|
*
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
Vous pouvez obtenir une prévisualisation du résultat pour un contact, ainsi qu'une estimation du nombre de crédits qui seront utilisés par SMS, en cliquant sur le boutton <b>"Prévisualiser"</b>.
|
Vous pouvez obtenir une prévisualisation du résultat pour un contact, ainsi qu'une estimation du nombre de crédits qui seront utilisés par SMS, en cliquant sur le boutton <b>"Prévisualiser"</b>.
|
||||||
</p>
|
</p>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<textarea name="text" class="form-control" required><?php $this->s($_SESSION['previous_http_post']['text'] ?? '') ?></textarea>
|
<textarea name="text" class="form-control" required maxlength="<?= \models\Scheduled::SMS_LENGTH_LIMIT; ?>"><?php $this->s($_SESSION['previous_http_post']['text'] ?? '') ?></textarea>
|
||||||
<?php if ($_SESSION['user']['settings']['templating']) { ?>
|
<?php if ($_SESSION['user']['settings']['templating']) { ?>
|
||||||
<div class="scheduled-preview-container">
|
<div class="scheduled-preview-container">
|
||||||
<label>Prévisualiser pour : </label>
|
<label>Prévisualiser pour : </label>
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
Vous pouvez obtenir une prévisualisation du résultat pour un contact en cliquant sur le boutton <b>"Prévisualiser"</b>.
|
Vous pouvez obtenir une prévisualisation du résultat pour un contact en cliquant sur le boutton <b>"Prévisualiser"</b>.
|
||||||
</p>
|
</p>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<textarea name="scheduleds[<?php $this->s($scheduled['id']); ?>][text]" class="form-control" required><?php $this->s($scheduled['text'], true); ?></textarea>
|
<textarea name="scheduleds[<?php $this->s($scheduled['id']); ?>][text]" class="form-control" required maxlength="<?= \models\Scheduled::SMS_LENGTH_LIMIT; ?>"><?php $this->s($scheduled['text'], true); ?></textarea>
|
||||||
<?php if ($_SESSION['user']['settings']['templating']) { ?>
|
<?php if ($_SESSION['user']['settings']['templating']) { ?>
|
||||||
<div class="scheduled-preview-container">
|
<div class="scheduled-preview-container">
|
||||||
<label>Prévisualiser pour : </label>
|
<label>Prévisualiser pour : </label>
|
||||||
|
|
Loading…
Reference in New Issue