$signature = trim(Post::v('signature'));
$promo_min = Post::i('promo_min');
$promo_max = Post::i('promo_max');
+ $subset = Post::b('subset_to');
+ $subset_to = preg_split("/ *[ ,;\:\n\r]+ */", Post::v('subset_to'));
$echeance = Post::has('echeance_date') ?
preg_replace('/^(\d\d\d\d)(\d\d)(\d\d)$/', '\1-\2-\3', Post::v('echeance_date')) . ' ' . Post::v('echeance_time')
: Post::v('echeance');
$res = XDB::query("SELECT * FROM axletter WHERE FIND_IN_SET('new', bits)");
if ($res->numRows()) {
extract($res->fetchOneAssoc(), EXTR_OVERWRITE);
+ if ($subset) {
+ $res = XDB::query('SELECT email FROM axletter_subset WHERE letter_id = {?}', $id);
+ $subset_to = $res->fetchColumn();
+ }
$saved = true;
} else {
XDB::execute("INSERT INTO axletter SET id = NULL");
$page->trigError("L'intervalle de promotions n'est pas valide");
Post::kill('valid');
}
+ if ($subset && !count($subset_to)) {
+ $page->trigError("La liste d'adresses mails sélectionnée est vide");
+ Post::kill('valid');
+ }
if (empty($short_name)) {
$page->trigError("L'annonce doit avoir un nom raccourci pour simplifier la navigation dans les archives");
Post::kill('valid');
case 'Aperçu':
$this->load('axletter.inc.php');
$al = new AXLetter(array($id, $short_name, $subject, $title, $body, $signature,
- $promo_min, $promo_max, $echeance, 0, 'new'));
+ $promo_min, $promo_max, $subset, $echeance, 0, 'new'));
$al->toHtml($page, S::v('prenom'), S::v('nom'), S::v('femme'));
break;
case 'Confirmer':
XDB::execute("REPLACE INTO axletter
SET id = {?}, short_name = {?}, subject = {?}, title = {?}, body = {?},
- signature = {?}, promo_min = {?}, promo_max = {?}, echeance = {?}",
- $id, $short_name, $subject, $title, $body, $signature, $promo_min, $promo_max, $echeance);
+ signature = {?}, promo_min = {?}, promo_max = {?}, echeance = {?}, subset = {?}",
+ $id, $short_name, $subject, $title, $body, $signature, $promo_min, $promo_max, $echeance, $subset);
+ if ($subset) {
+ XDB::execute('DELETE FROM axletter_subset WHERE letter_id = {?}', $id);
+ foreach ($subset_to as $email) {
+ // $email = trim($email);
+ $uid = $this->idFromMail(array('email' => $email));
+ if ($uid) {
+ XDB::execute('INSERT INTO axletter_subset SET letter_id = {?}, user_id = {?}, email = {?}', $id, $uid, $email);
+ }
+ }
+ }
if (!$saved) {
global $globals;
$mailer = new PlMailer();
$page->assign('signature', $signature);
$page->assign('promo_min', $promo_min);
$page->assign('promo_max', $promo_max);
+ $page->assign('subset_to', implode("\n", $subset_to));
+ $page->assign('subset', $subset);
$page->assign('echeance', $echeance);
$page->assign('echeance_date', $echeance_date);
$page->assign('echeance_time', $echeance_time);
public $_signature;
public $_promo_min;
public $_promo_max;
+ public $_subset;
public $_echeance;
public $_date;
public $_bits;
}
list($this->_id, $this->_shortname, $this->_title_mail, $this->_title,
$this->_body, $this->_signature, $this->_promo_min, $this->_promo_max,
- $this->_echeance, $this->_date, $this->_bits) = $id;
+ $this->_subset, $this->_echeance, $this->_date, $this->_bits) = $id;
if ($this->_date == '0000-00-00') {
$this->_date = 0;
}
IF(ni.user_id = 0, 'html', q.core_mail_fmt) AS pref,
IF(ni.user_id = 0, ni.hash, 0) AS hash
FROM axletter_ins AS ni
+ {$this->subsetJoin()}
LEFT JOIN auth_user_md5 AS u USING(user_id)
LEFT JOIN auth_user_quick AS q ON(q.user_id = u.user_id)
LEFT JOIN aliases AS a ON(u.user_id=a.id AND FIND_IN_SET('bestalias',a.flags))
return XDB::execute("DELETE FROM axletter_rights WHERE user_id = {?}", $uid);
}
+ protected function subsetJoin()
+ {
+ if ($this->_subset) {
+ return "INNER JOIN axletter_subset AS c ON (c.letter_id = {$this->_id} AND ni.user_id = c.user_id)";
+ }
+ // TODO : force use of the adresses given by AX, not "canonical" ones
+ }
+
protected function subscriptionWhere()
{
if (!$this->_promo_min && !$this->_promo_max) {