f1d4a2444c179500f701339fd4ed2360b677c02e
[mailer.git] / inc / modules / member / what-order.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/19/2003 *
4  * ===================                          Last change: 08/26/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-order.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Order mails here                                 *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Hier koennen Ihre Mitglieder Mails buchen        *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * GNU General Public License for more details.                         *
29  *                                                                      *
30  * You should have received a copy of the GNU General Public License    *
31  * along with this program; if not, write to the Free Software          *
32  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
33  * MA  02110-1301  USA                                                  *
34  ************************************************************************/
35
36 // Some security stuff...
37 if (!defined('__SECURITY')) {
38         die();
39 } elseif (!isMember()) {
40         redirectToIndexMemberOnlyModule();
41 }
42
43 // Add description as navigation point
44 addYouAreHereLink('member', __FILE__);
45
46 if ((!isExtensionActive('order')) && (!isAdmin())) {
47         displayMessage(generateExtensionInactiveNotInstalledMessage('order'));
48         return;
49 } // END - if
50
51 $url = ''; $id = '0';
52
53 // Count unconfirmed mails
54 $links = countSumTotalData(getMemberId(), 'user_links', 'id', 'userid', true);
55
56 $ALLOWED = getUserData('receive_mails') - getUserData('mail_orders');
57 if (getConfig('order_max_full') == 'MAX') $ALLOWED = getUserData('receive_mails');
58
59 // Now check his points amount
60 $total = getTotalPoints(getMemberId());
61
62 if ((isExtensionInstalledAndNewer('holiday', '0.1.3')) && (getUserData('holiday_active') == 'Y')) {
63         // Holiday is active!
64         displayMessage('{--MEMBER_HOLIDAY_ORDER_NOT_POSSIBLE--}');
65 } elseif ((isPostRequestParameterSet('frametester')) && ($ALLOWED > 0) && (postRequestParameter('receiver') > 0)) {
66         // Continue with the frametester, we first need to store the data temporary in the pool
67         //
68         // First we would like to store the data and get it's pool position back...
69         $result = SQL_QUERY_ESC("SELECT `id`, `data_type`
70 FROM
71         `{?_MYSQL_PREFIX?}_pool`
72 WHERE
73         `sender`=%s AND
74         `url`='%s' AND
75         (UNIX_TIMESTAMP() - `timestamp`) >= {?url_tlock?}
76 LIMIT 1",
77                 array(
78                         getMemberId(),
79                         postRequestParameter('url')
80                 ), __FILE__, __LINE__);
81
82         $type = 'TEMP'; $id = '0';
83         if (SQL_NUMROWS($result) == 1) {
84                 // Load id and mail type
85                 // @TODO Rewrite this to SQL_FETCHARRAY()
86                 list($id, $type) = SQL_FETCHROW($result);
87         } // END - if
88
89         // Free result
90         SQL_FREERESULT($result);
91
92         if ($type == 'TEMP') {
93                 // No entry found, so we need to check out the stats table as well... :)
94                 // We have to add that suff here, now we continue WITHOUT checking and check the text and subject against some filters
95                 $url = '';
96                 if (getConfig('allow_url_in_text') == 'Y') {
97                         // Test submitted text against some filters (length, URLs in text etc.)
98                         if ((strpos(strtolower(postRequestParameter('text')), 'https://') > -1) || (strpos(strtolower(postRequestParameter('text')), 'http://') > -1) || (strpos(strtolower(postRequestParameter('text')), "www") > -1)) {
99                                 // URL found
100                                 $url = 'modules.php?module=login&amp;what=order&amp;code=' . getCode('URL_FOUND');
101                         } // END - if
102
103                         // Remove new-line and carriage-return characters
104                         $TEST = str_replace("\n", '', str_replace("\r", '', postRequestParameter('text')));
105
106                         // Text length within allowed length?
107                         if (strlen($TEST) > getConfig('max_tlength')) {
108                                 // Text is too long!
109                                 $url = 'modules.php?module=login&amp;what=order&amp;code=' . getCode('OVERLENGTH');
110                         } // END - if
111                 } // END - if
112
113                 // Shall I test the subject line against URLs?
114                 if (getConfig('allow_url_in_subject') == 'Y') {
115                         // Check the subject line for issues
116                         setPostRequestParameter('subject', str_replace("\\", '[nl]', substr(postRequestParameter('subject'), 0, 200)));
117                         if ((strpos(strtolower(postRequestParameter('subject')), 'http://') > -1) || (strpos(strtolower(postRequestParameter('subject')), "www") > -1)) {
118                                 // URL in subject found
119                                 $url = 'modules.php?module=login&amp;what=order&amp;code=' . getCode('SUBJECT_URL');
120                         } // END - if
121                 } // END - if
122
123                 // And shall I check that his URL is not in the black list?
124                 if (isUrlBlacklistEnabled()) {
125                         // Ok, I do that for you know...
126                         $result = SQL_QUERY_ESC("SELECT UNIX_TIMESTAMP(`timestamp`) AS tstamp FROM `{?_MYSQL_PREFIX?}_url_blacklist` WHERE `url`='%s' LIMIT 1",
127                                 array(postRequestParameter('url')), __FILE__, __LINE__);
128
129                         if (SQL_NUMROWS($result) == 1) {
130                                 // Jupp, we got one listed
131                                 list($blist) = SQL_FETCHROW($result);
132
133                                 // Create redirect-URL
134                                 $url = 'modules.php?module=login&amp;what=order&amp;code=' . getCode('BLIST_URL') . '&amp;blist=' . $blist;
135                         } // END - if
136
137                         // Free result
138                         SQL_FREERESULT($result);
139                 } // END - if
140
141                 // Enougth receivers entered?
142                 if ((postRequestParameter('receiver') < getConfig('order_min')) && (!isAdmin())) {
143                         // Less than allowed receivers entered!
144                         $url = 'modules.php?module=login&amp;what=order&amp;code=' . getCode('MORE_RECEIVERS3');
145                 } // END - if
146
147                 // Validate URL
148                 if (!isUrlValid(postRequestParameter('url'))) {
149                         // URL is invalid!
150                         $url = 'modules.php?module=login&amp;what=order&amp;code=' . getCode('INVALID_URL');
151                 } // END - if
152
153                 // Probe for HTML extension
154                 if (isExtensionActive('html_mail')) {
155                         // HTML or regular text mail?
156                         if (postRequestParameter('html') == 'Y') {
157                                 // Chek for valid HTML tags
158                                 setPostRequestParameter('text', checkHtmlTags(postRequestParameter('text')));
159
160                                 // Maybe invalid tags found?
161                                 if (!isPostRequestParameterSet('text')) $url = 'modules.php?module=login&amp;what=order&amp;code=' . getCode('INVALID_TAGS')."&amp;id=".$id;
162                         } else {
163                                 // Remove any HTML code
164                                 setPostRequestParameter('text', str_replace('<', '{OPEN_HTML}', str_replace('>', '{CLOSE_HTML}', postRequestParameter('text'))));
165                         }
166                 } // END - if
167
168                 // Is mail type set?
169                 if ((!isPostRequestParameterSet('mail_type')) || (postRequestParameter('mail_type') < 1)) {
170                         // Not correctly set
171                         $url = 'modules.php?module=login&amp;what=order&amp;code=' . getCode('NO_MAIL_TYPE');
172                 } // END - if
173         } elseif (!isAdmin()) {
174                 // He has already sent a mail within a specific time
175                 $url = 'modules.php?module=login&amp;what=order&amp;code=' . getCode('URL_TIME_LOCK') . '&amp;id=' . $id;
176         }
177
178         // Still no error?
179         if (empty($url)) {
180                 // Check if category and number of receivers is okay
181                 $add = '';
182                 if ((getConfig('order_multi_page') == 'Y') && (isPostRequestParameterSet('zip')) && (postRequestParameter('zip') != '')) {
183                         // Choose recipients by ZIP code
184                         $add = sprintf(" AND d.zip LIKE '%s%%'",
185                                 bigintval(postRequestParameter('zip'))
186                         );
187                 } // END - if
188
189                 // Check for userids
190                 $result = SQL_QUERY_ESC("SELECT
191         c.userid
192 FROM
193         `{?_MYSQL_PREFIX?}_user_cats` AS c
194 LEFT JOIN
195         `{?_MYSQL_PREFIX?}_user_data` AS d
196 ON
197         c.userid=d.userid
198 WHERE
199         c.cat_id=%s AND
200         c.userid != '%s' AND
201         d.`status`='CONFIRMED' AND
202         d.receive_mails > 0
203         ".$add."
204 ORDER BY
205         d.{?order_select?} {?order_mode?}",
206                         array(
207                                 bigintval(postRequestParameter('cat')),
208                                 getMemberId()
209                         ), __FILE__, __LINE__);
210
211                 // Do we enougth receivers left?
212                 if (SQL_NUMROWS($result) >= postRequestParameter('receiver')) {
213                         // Load receivers from database
214                         $TEST = array(); $count = '0';
215                         while ($holidayContent = SQL_FETCHARRAY($result)) {
216                                 if (isExtensionInstalledAndNewer('holiday', '0.1.3')) {
217                                         // Check for his holiday status
218                                         $result_holiday = SQL_QUERY_ESC("SELECT
219         `id`
220 FROM
221         `{?_MYSQL_PREFIX?}_user_holidays`
222 WHERE
223         `userid`=%s AND `holiday_start` < UNIX_TIMESTAMP() AND `holiday_end` > UNIX_TIMESTAMP()
224 LIMIT 1",
225                                                 array($holidayContent['userid']), __FILE__, __LINE__);
226                                         if (SQL_NUMROWS($result_holiday) == 1) $holidayContent['userid'] = '0'; // Exclude user who are in holiday
227
228                                         // Free memory
229                                         SQL_FREERESULT($result_holiday);
230                                 } // END - if
231
232                                 if ($holidayContent['userid'] > 0) {
233                                         // Add receiver
234                                         $TEST[] = $holidayContent['userid'];
235                                         $count++;
236                                 } // END - if
237                         } // END - while
238
239                         // Free memory
240                         SQL_FREERESULT($result);
241
242                         // Implode array into string for the sending pool
243                         $receiver = implode($TEST, ';');
244
245                         // Count array for maximum sent
246                         $content['target_send'] = count($TEST);
247
248                         // Update receiver list
249                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `receive_mails`=`receive_mails`-1 WHERE `userid` IN (%s) LIMIT %s",
250                                 array(
251                                         convertReceivers($receiver),
252                                         $content['target_send']
253                                 ), __FILE__, __LINE__);
254
255                         // Is calculated max receivers larger than wanted receivers then reset it
256                         if ($content['target_send'] > postRequestParameter('receiver')) $content['target_send'] = bigintval(postRequestParameter('receiver'));
257
258                         // Calculate used points
259                         $USED = $content['target_send'] * getPaymentPoints(bigintval(postRequestParameter('mail_type')));
260
261                         // Fix empty zip code
262                         if (!isPostRequestParameterSet('zip')) setPostRequestParameter('zip', 0);
263
264                         // Check if he has enougth points for this order and selected more than 0 receivers
265                         if (($USED > 0) && ($USED <= $total) && ($content['target_send'] > 0)) {
266                                 // Gettings points is okay, so we can add $USED later from
267                                 if (($id == '0') || ($type != 'TEMP')) {
268                                         // New order
269                                         $id = '0';
270                                         if (isExtensionActive('html_mail')) {
271                                                 // HTML extension is active
272                                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_pool` (`sender`, `subject`, `text`, `receivers`, `payment_id`, `data_type`, `timestamp`, `url`, `cat_id`, `target_send`, `zip`, `html_msg`)
273 VALUES (%s,'%s','%s','%s','%s','TEMP',UNIX_TIMESTAMP(),'%s',%s,%s,%s,'%s')",
274                                                         array(
275                                                                 getMemberId(),
276                                                                 postRequestParameter('subject'),
277                                                                 postRequestParameter('text'),
278                                                                 $receiver,
279                                                                 bigintval(postRequestParameter('mail_type')),
280                                                                 postRequestParameter('url'),
281                                                                 bigintval(postRequestParameter('cat')),
282                                                                 $content['target_send'],
283                                                                 bigintval(postRequestParameter('zip'), true, false),
284                                                                 postRequestParameter('html')
285                                                         ), __FILE__, __LINE__);
286                                         } else {
287                                                 // No HTML extension is active
288                                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_pool` (`sender`, `subject`, `text`, `receivers`, `payment_id`, `data_type`, `timestamp`, `url`, `cat_id`, `target_send`, `zip`)
289 VALUES (%s,'%s','%s','%s','%s','TEMP',UNIX_TIMESTAMP(),'%s',%s,%s,%s)",
290                                                         array(
291                                                                 getMemberId(),
292                                                                 postRequestParameter('subject'),
293                                                                 postRequestParameter('text'),
294                                                                 $receiver,
295                                                                 bigintval(postRequestParameter('mail_type')),
296                                                                 postRequestParameter('url'),
297                                                                 bigintval(postRequestParameter('cat')),
298                                                                 $content['target_send'],
299                                                                 bigintval(postRequestParameter('zip'), true, false),
300                                                         ), __FILE__, __LINE__);
301                                         }
302                                 } else {
303                                         // Change current order
304                                         if (isExtensionActive('html_mail')) {
305                                                 // HTML extension is active
306                                                 SQL_QUERY_ESC("UPDATE
307         `{?_MYSQL_PREFIX?}_pool`
308 SET
309         `subject`='%s',
310         `text`='%s',
311         `receivers`='%s',
312         `payment_id`=%s,
313         `timestamp`=UNIX_TIMESTAMP(),
314         `url`='%s',
315         `cat_id`=%s,
316         `target_send`=%s,
317         `zip`=%s,
318         `html_msg`='%s'
319 WHERE
320         `id`=%s
321 LIMIT 1",
322                                                         array(
323                                                                 postRequestParameter('subject'),
324                                                                 postRequestParameter('text'),
325                                                                 $receiver,
326                                                                 bigintval(postRequestParameter('mail_type')),
327                                                                 postRequestParameter('url'),
328                                                                 bigintval(postRequestParameter('cat')),
329                                                                 $content['target_send'],
330                                                                 bigintval(postRequestParameter('zip')),
331                                                                 postRequestParameter('html'),
332                                                                 bigintval($id)
333                                                         ), __FILE__, __LINE__);
334                                         } else {
335                                                 // No HTML extension is active
336                                                 SQL_QUERY_ESC("UPDATE
337         `{?_MYSQL_PREFIX?}_pool`
338 SET
339         `subject`='%s',
340         `text`='%s',
341         `receivers`='%s',
342         `payment_id`=%s,
343         `timestamp`=UNIX_TIMESTAMP(),
344         `url`='%s',
345         `cat_id`=%s,
346         `target_send`=%s,
347         `zip`=%s
348 WHERE
349         `id`=%s
350 LIMIT 1",
351                                                         array(
352                                                                 postRequestParameter('subject'),
353                                                                 postRequestParameter('text'),
354                                                                 $receiver,
355                                                                 bigintval(postRequestParameter('mail_type')),
356                                                                 postRequestParameter('url'),
357                                                                 bigintval(postRequestParameter('cat')),
358                                                                 $content['target_send'],
359                                                                 bigintval(postRequestParameter('zip')),
360                                                                 bigintval($id)
361                                                         ), __FILE__, __LINE__);
362                                         }
363                                 }
364
365                                 // Do we need to get the id number?
366                                 if ($id == '0') {
367                                         // Order is placed as temporary. We need to get it's id for the frametester
368                                         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_pool` WHERE `sender`=%s AND `subject`='%s' AND `payment_id`=%s AND `data_type`='TEMP' AND `timestamp`=UNIX_TIMESTAMP() LIMIT 1",
369                                                 array(
370                                                         getMemberId(),
371                                                         postRequestParameter('subject'),
372                                                         bigintval(postRequestParameter('mail_type'))
373                                                 ), __FILE__, __LINE__);
374
375                                         // Get pool id
376                                         list($id) = SQL_FETCHROW($result);
377
378                                         // Free result
379                                         SQL_FREERESULT($result);
380                                 } // END - if
381
382                                 // id is received so we can redirect the user, used points will be added when he send's out the mail
383                                 $url = 'modules.php?module=frametester&amp;order=' . $id;
384                         } elseif ($content['target_send'] == '0') {
385                                 // Not enougth receivers found which can receive mails
386                                 $url = 'modules.php?module=login&amp;what=order&amp;code=' . getCode('MORE_RECEIVERS2');
387                         } else {
388                                 // No enougth points left!
389                                 $url = 'modules.php?module=login&amp;what=order&amp;code=' . getCode('MORE_POINTS');
390                         }
391                 } else {
392                         // Ordered more mails than he can send in this category
393                         $url = 'modules.php?module=login&amp;what=order&amp;code=' . getCode('NO_RECS_LEFT');
394                 }
395         } // END - if
396 } elseif (postRequestParameter('receiver') == '0') {
397         // Not enougth receivers selected
398         $url = 'modules.php?module=login&amp;what=order&amp;code=' . getCode('MORE_RECEIVERS1');
399 } elseif (($ALLOWED == '0') && (getConfig('order_max_full') == 'ORDER')) {
400         // No more mail orders allowed
401         displayMessage('{--MEMBER_ORDER_ALLOWED_EXHAUSTED--}');
402 } elseif ($links < getConfig('unconfirmed')) {
403         // Show only enabled categories to the user ...
404         $whereStatement = " WHERE `visible`='Y'";
405
406         // ... but all to the admin
407         if (isAdmin()) $whereStatement = '';
408
409         // Display order form
410         $result_cats = SQL_QUERY("SELECT
411         `id`, `cat`
412 FROM
413         `{?_MYSQL_PREFIX?}_cats`
414 ".$whereStatement."
415 ORDER BY
416         `sort` ASC", __FILE__, __LINE__);
417         if (!SQL_HASZERONUMS($result_cats)) {
418                 if ($total > 0) {
419                         // Initialize array...
420                         $categories = array(
421                                 'id'      => array(),
422                                 'name'    => array(),
423                                 'userids' => array()
424                         );
425
426                         // Enable HTML checking
427                         // @TODO Rewrite this to a filter
428                         $HTML = ''; $HOL_STRING = '';
429                         if ((isExtensionActive('html_mail')) && (postRequestParameter('html') == 'Y')) $HTML = " AND `html`='Y'";
430                         if (isExtensionInstalledAndNewer('holiday', '0.1.3')) {
431                                 // Extension's version is fine
432                                 $HOL_STRING = " AND `holiday_active`='N'";
433                         } // END - if
434
435                         // ... and begin loading stuff
436                         while ($categoriesContent = SQL_FETCHARRAY($result_cats)) {
437                                 $categories['id'][]   = bigintval($categoriesContent['id']);
438                                 $categories['name'][] = $categoriesContent['cat'];
439
440                                 // Select users in current category
441                                 $result_userids = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `cat_id`=%s AND `userid` != '%s' ORDER BY `userid` ASC",
442                                         array(bigintval($categoriesContent['id']), getMemberId()), __FILE__, __LINE__);
443
444                                 $userid_cnt = '0';
445                                 while (list($userid) = SQL_FETCHROW($result_userids)) {
446                                         // Check for holiday system
447                                         $isHolidayActive = false;
448                                         if (isExtensionInstalledAndNewer('holiday', '0.1.3')) {
449                                                 // Check user's holiday status
450                                                 $result_holiday = SQL_QUERY_ESC("SELECT
451         COUNT(d.userid) AS `cnt`
452 FROM
453         `{?_MYSQL_PREFIX?}_user_data` AS d
454 LEFT JOIN
455         `{?_MYSQL_PREFIX?}_user_holidays` AS h
456 ON
457         d.userid=h.userid
458 WHERE
459         d.userid=%s AND
460         d.receive_mails > 0 AND
461         d.`status`='CONFIRMED' AND
462         d.`holiday_active`='Y' AND
463         h.holiday_start < UNIX_TIMESTAMP() AND
464         h.holiday_end > UNIX_TIMESTAMP()
465 LIMIT 1",
466                                                         array(bigintval($userid)), __FILE__, __LINE__);
467
468                                                 // Fetch entry
469                                                 list($count) = SQL_FETCHROW($result_holiday);
470
471                                                 // Free memory
472                                                 SQL_FREERESULT($result_holiday);
473
474                                                 // Is holiday is active?
475                                                 $isHolidayActive = ($count == 1);
476                                         } // END - if
477
478                                         if ($isHolidayActive === false) {
479                                                 // Check if the user want's to receive mails?
480                                                 $result_ver = SQL_QUERY_ESC("SELECT `zip` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s".$HTML." AND `receive_mails` > 0 AND `status`='CONFIRMED' LIMIT 1",
481                                                         array(bigintval($userid)), __FILE__, __LINE__);
482
483                                                 if ((SQL_NUMROWS($result_ver) == 1) && (isPostRequestParameterSet('zip')) && (getConfig('order_multi_page') == 'Y')) {
484                                                         // Get zip code
485                                                         list($zip) = SQL_FETCHROW($result_ver);
486                                                         if (substr($zip, 0, strlen(postRequestParameter('zip'))) == postRequestParameter('zip')) {
487                                                                 // Ok, ZIP code part is found
488                                                                 $userid_cnt++;
489                                                         } // END - if
490                                                 } else {
491                                                         // Count numbers up!
492                                                         $userid_cnt += SQL_NUMROWS($result_ver);
493                                                 }
494
495                                                 // Free result
496                                                 SQL_FREERESULT($result_ver);
497                                         } // END - if
498                                 } // END - while
499
500                                 // Free memory
501                                 SQL_FREERESULT($result_userids);
502                                 $categories['userids'][] = $userid_cnt;
503                         } // END - while
504
505                         // Free memory
506                         SQL_FREERESULT($result_cats);
507
508                         // Now we need to load the mail types...
509                         $result = SQL_QUERY("SELECT `id`, `price`, `payment`, `mail_title` FROM `{?_MYSQL_PREFIX?}_payments` ORDER BY `payment` ASC", __FILE__, __LINE__);
510
511                         $types = array();
512                         if (!SQL_HASZERONUMS($result)) {
513                                 // Check for message id in URL
514                                 $message = getMessageFromErrorCode(getRequestParameter('code'));
515
516                                 if (!empty($message)) {
517                                         // We got system message so we drop it out to the user
518                                         displayMessage($message);
519                                 } // END - if
520
521                                 // Load all email types...
522                                 while ($types[] = SQL_FETCHROW($result)) {
523                                         // Nothing to do here... ;-)
524                                 } // END - while
525
526                                 // Free memory
527                                 SQL_FREERESULT($result);
528
529                                 // Output user's points
530                                 $content['total'] = $total;
531
532                                 // Check how many mail orders he has placed today and how many he's allowed to send
533                                 switch (getConfig('order_max_full')) {
534                                         case 'MAX': // He is allowed to send as much as possible
535                                                 $content['order_max_full'] = '{--MEMBER_ORDER_ALLOWED_MAX--}';
536                                                 break;
537
538                                         case 'ORDER': // He is allowed to send as much as he setup the receiving value
539                                                 $content['order_max_full'] = sprintf(getMessage('MEMBER_ORDER_ALLOWED_RECEIVE'), $ALLOWED, getUserData('receive_mails'));
540                                                 break;
541
542                                         default: // Unknown/invalid
543                                                 logDebugMessage(__FILE__, __LINE__, sprintf("Unknown order_mas_full config detected.", getConfig('order_max_full')));
544                                                 $content['order_max_full'] = '{--MEMBER_ORDER_ALLOWED_UNKNOWN--}';
545                                                 break;
546                                 } // END - switch
547
548                                 // Load final template
549                                 loadTemplate('member_order_points', false, $content);
550
551                                 // Reset variables
552                                 $OLD_ORDER = false;
553                                 $subject = '';
554                                 $text = '';
555                                 $target = '';
556
557                                 // Check if we already have an order placed and make it editable
558                                 $result = SQL_QUERY_ESC("SELECT
559         `subject`, `text`, `payment_id`, `timestamp`, `url`, `target_send`, `cat_id`, `zip`
560 FROM
561         `{?_MYSQL_PREFIX?}_pool`
562 WHERE
563         `sender`=%s AND
564         `data_type`='TEMP'
565 LIMIT 1",
566                                         array(getMemberId()), __FILE__, __LINE__);
567
568                                 if (SQL_NUMROWS($result) == 1) {
569                                         // Old order found
570                                         $content = merge_array($content, SQL_FETCHARRAY($result));
571
572                                         // Fix max receivers when it is too much
573                                         if ((isset($categories['userids'][$content['cat_id']])) && ($content['target_send'] > $categories['userids'][$content['cat_id']])) {
574                                                 // Fix it
575                                                 $content['target_send'] = $categories['userids'][$content['cat_id']];
576                                         } // END - if
577
578                                         // Old order is grabbed
579                                         $OLD_ORDER = true;
580                                 } else {
581                                         // Default output for that your members don't forget it...
582                                         $content['url']         = 'http://';
583                                         $content['target_send'] = '{?order_min?}';
584                                         $content['subject']     = '{--ORDER_DEFAULT_SUBJECT--}';
585                                         $content['text']        = '{--ORDER_DEFAULT_TEXT--}';
586                                 }
587
588                                 // Free result
589                                 SQL_FREERESULT($result);
590
591                                 if ((isPostRequestParameterSet('data')) || ((getConfig('order_multi_page') != 'Y') && ((!isAdmin()) && (!isExtensionActive('html_mail'))))) {
592                                         // Pre-output categories
593                                         $content['category_selection'] = '';
594                                         foreach ($categories['id'] as $key => $value) {
595                                                 $content['category_selection'] .= '      <option value="' . $value . '"';
596                                                 if (($OLD_ORDER) && ($content['cat_id'] == $value)) $content['category_selection'] .= ' selected="selected"';
597                                                 $content['category_selection'] .= '>' . $categories['name'][$key]." (".$categories['userids'][$key] . ' {--USER_IN_CAT--})</option>';
598                                         } // END - foreach
599
600                                         // Mail type
601                                         $content['type_selection'] = '';
602                                         foreach ($types as $key => $value) {
603                                                 if (is_array($value)) {
604                                                         // Output option line
605                                                         $content['type_selection'] .= '      <option value="' . $types[$key][0] . '"';
606                                                         if (($OLD_ORDER) && ($content['payment_id'] == $types[$key][0])) $content['type_selection'] .= ' selected="selected"';
607                                                         $content['type_selection'] .= '>{%pipe,translateComma=' . $types[$key][1] . '%} {--PER_MAIL--} - ' . $types[$key][3] . ' - ' . round($types[$key][2]) . ' {--PAYMENT--}</option>';
608                                                 } // END - if
609                                         } // END - foreach
610
611                                         // No content is default
612                                         $content['zip_content'] = '';
613
614                                         if (isPostRequestParameterSet('zip')) {
615                                                 // Output entered ZIP code
616                                                 $content['zip_content'] = loadTemplate('member_order-zip2', true, postRequestParameter('zip'));
617                                         } // END - if
618
619                                         // HTML extension
620                                         if ((isExtensionActive('html_mail')) && (postRequestParameter('html') == 'Y')) {
621                                                 // Extension is active so output valid HTML tags
622                                                 $content['html_extension'] = loadTemplate('member_order-html_ext', true, addValidHtmlTags());
623                                         } else {
624                                                 // Extension not active and/or class not uploaded
625                                                 $content['html_extension'] = '<tr><td colspan="3"><input type="hidden" name="html" value="N" /></td></tr>';
626                                         }
627
628                                         // Output form for page 2
629                                         loadTemplate('member_order_page2', false, $content);
630                                 } else {
631                                         // Remember maybe entered ZIP code in constant
632                                         if (isExtensionActive('html_mail')) {
633                                                 // Add some content when html extension is active
634                                                 $content['html_extension'] = loadTemplate('member_order-html_intro', true);
635                                         } else {
636                                                 // No HTML extension installed
637                                                 $content['html_extension'] = '<tr><td colspan="3"><input type="hidden" name="html" value="N" /></td></tr>';
638                                         }
639
640                                         // Default is no ZIP code
641                                         $content['zip_content'] = '';
642
643                                         // Do we want ZIP code or not?
644                                         if ((getConfig('order_multi_page') == 'Y') || (isAdmin())) {
645                                                 // Yes
646                                                 if (postRequestParameter('zip') > 0) {
647                                                         $data = array(
648                                                                 'zip' => bigintval(postRequestParameter('zip'))
649                                                         );
650                                                 } else {
651                                                         $data = array(
652                                                                 'zip' => ''
653                                                         );
654                                                 }
655                                                 $content['zip_content'] = loadTemplate('member_order-zip1', true, $data);
656                                         } // END - if
657
658                                         // Output form for page 1 (ZIP code or HTML)
659                                         loadTemplate('member_order_page1', false, $content);
660                                 }
661                         } else {
662                                 // No mail types defined
663                                 displayMessage('<span class="notice">{--MEMBER_NO_PAYMENTS--}</span>');
664                         }
665                 } else {
666                         // No points left
667                         displayMessage('<span class="notice">{--MEMBER_NO_POINTS--}</span>');
668                 }
669         } else {
670                 // No cateogries are defined yet
671                 displayMessage('<span class="notice">{--MEMBER_NO_CATEGORIES--}</span>');
672         }
673 } else {
674         // Please confirm some mails first
675         displayMessage('<span class="notice">{%message,MEMBER_LINKS_LEFT=' . $links . '%}</span>', $links);
676 }
677
678 if (!empty($url)) {
679         // Redirect to requested URL
680         redirectToUrl($url);
681 } // END - if
682
683 // [EOF]
684 ?>