Renamed ifSqlHasZeroNums() to ifSqlHasZeroNumRows() and improved some queries.
[mailer.git] / inc / modules / member / what-unconfirmed.php
index 68c90049a3cbc6c936fe5f1a571674f7d5397039..b1ef76e919167274f062d112ddd6daede52349cb 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/19/2003 *
- * ===============                              Last change: 07/13/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 10/19/2003 *
+ * ===================                          Last change: 07/13/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-unconfirmed.php                             *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Unbestaetigte Mails                              *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2015 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * 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 *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-} elseif (!IS_MEMBER()) {
-       LOAD_URL("modules.php?module=index");
-} elseif (!EXT_IS_ACTIVE("mailid")) {
-       LOAD_URL("modules.php?module=login");
+       exit();
+} elseif (!isMember()) {
+       redirectToIndexMemberOnlyModule();
 }
 
 // Add description as navigation point
-ADD_DESCR("member", __FILE__);
+addYouAreHereLink('member', __FILE__);
+
+// Essential extension ext-mailid must be active
+if (!isExtensionActive('mailid')) {
+       displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=mailid%}');
+       return;
+} // END - if
+
+// Shall we display a mail?
+if ((isGetRequestElementSet('bonusid')) && (isExtensionActive('bonus'))) {
+       // Display bonus mail by loading it's full data
+       $result_data = sqlQueryEscaped('SELECT
+       `id`,
+       `subject`,
+       `timestamp`,
+       `cat_id`,
+       `points`,
+       `text`,
+       `is_notify`,
+       `data_type`,
+       `time`,
+       `url`
+FROM
+       `{?_MYSQL_PREFIX?}_bonus`
+WHERE
+       `id`=%s
+LIMIT 1',
+               array(bigintval(getRequestElement('bonusid'))), __FILE__, __LINE__);
+
+       // Load data
+       $content = sqlFetchArray($result_data);
+
+       // Translate some data
+       $content['timestamp'] = generateDateTime($content['timestamp'], '2');
+       $content['userid'] = getMemberId();
+       $content['user_mail_status'] = '{%message,MEMBER_MAIL_BONUS_CONFIRMED_UNKNOWN=' . $content['id'] . '%}';
+
+       // Is ext-user active?
+       if (isExtensionActive('user')) {
+               // Default is never confirmed
+               $content['user_mail_status'] = '{%message,MEMBER_MAIL_BONUS_NEVER_CONFIRMED=' . $content['id'] . '%}';
+
+               // Get the timestamp from the mail
+               $confirmedStamp = getEpocheTimeFromUserStats('bonusid', $content['id']);
+
+               // Have confirmed it?
+               if ($confirmedStamp > 0) {
+                       // Get timestamp from insert
+                       $content['user_mail_status'] = '{%message,MEMBER_MAIL_BONUS_CONFIRMED_ON=' . generateDateTime($confirmedStamp, '2') . '%}';
+               } // END - if
+       } // END - if
+
+       // Display it depending on mail (data) type
+       loadTemplate('member_mail_bonus_' . strtolower($content['data_type']), FALSE, $content);
+
+       // Free result
+       sqlFreeResult($result_data);
+} elseif (isGetRequestElementSet('mailid')) {
+       // Display regular member mail by loading its full data
+       $result_data = sqlQueryEscaped("SELECT
+       `id` AS `stats_id`,
+       `pool_id`,
+       `subject`,
+       `timestamp_ordered`,
+       `cat_id`,
+FROM
+       `{?_MYSQL_PREFIX?}_user_stats` AS `s`
+WHERE
+       `id`=%s
+LIMIT 1",
+               array(bigintval(getRequestElement('mailid'))), __FILE__, __LINE__);
+
+       // Load data
+       $content = sqlFetchArray($result_data);
+       $content = merge_array($content, getPoolDataFromId($content['pool_id']));
+
+       // Translate some data
+       $content['timestamp_ordered'] = generateDateTime($content['timestamp_ordered'], '2');
+       // @TODO This call cannot be saved as EL code cannot be "framed" in other EL code
+       $content['userid'] = getMemberId();
+       $content['user_mail_status'] = '{%message,MEMBER_MAIL_NORMAL_CONFIRMED_UNKNOWN=' . $content['id'] . '%}';
+
+       // Is ext-user active?
+       if (isExtensionActive('user')) {
+               // Default is never confirmed
+               $content['user_mail_status'] = '{%message,MEMBER_MAIL_NORMAL_NEVER_CONFIRMED=' . $content['id'] . '%}';
+
+               // Get the timestamp from the mail
+               $confirmedStamp = getEpocheTimeFromUserStats('mailid', $content['id']);
+
+               // Have confirmed it?
+               if ($confirmedStamp > 0) {
+                       // Get timestamp from insert
+                       $content['user_mail_status'] = '{%message,MEMBER_MAIL_NORMAL_CONFIRMED_ON=' . generateDateTime($confirmedStamp, '2') . '%}';
+               } // END - if
+       } // END - if
+
+       // Display it depending on mail (data) type
+       loadTemplate('member_mail_normal_' . strtolower($content['data_type']), FALSE, $content);
+
+       // Free result
+       sqlFreeResult($result_data);
+}
 
-if (EXT_IS_ACTIVE("bonus")) {
-       // Load bonus ID
-       $result = SQL_QUERY_ESC("SELECT stats_id, bonus_id, link_type FROM "._MYSQL_PREFIX."_user_links WHERE userid=%s ORDER BY bonus_id DESC",
-        array($GLOBALS['userid']), __FILE__, __LINE__);
+if (isExtensionActive('bonus')) {
+       // Load bonus id
+       $result = sqlQueryEscaped("SELECT `stats_id`, `bonus_id`, `link_type` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `userid`=%s ORDER BY `bonus_id` DESC, stats_id DESC",
+               array(getMemberId()), __FILE__, __LINE__);
 } else {
-       // Don't load bonus ID
-       $result = SQL_QUERY_ESC("SELECT stats_id, stats_id, link_type FROM "._MYSQL_PREFIX."_user_links WHERE userid=%s ORDER BY stats_id DESC",
-        array($GLOBALS['userid']), __FILE__, __LINE__);
+       // Don't load bonus id if ext-bonus is not installed
+       $result = sqlQueryEscaped("SELECT `stats_id`, `link_type` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `userid`=%s ORDER BY `stats_id` DESC",
+               array(getMemberId()), __FILE__, __LINE__);
 }
 
-if (SQL_NUMROWS($result) > 0)
-{
+// Mails left for confirmation?
+if (!ifSqlHasZeroNumRows($result)) {
        // Please confirm these mails!
-       $sum = 0; $SW = 2; $OUT = "";
-       while (list($id, $id2, $type) = SQL_FETCHROW($result))
-       {
+       $sum = '0'; $OUT = '';
+
+       // Init content
+       $content = array();
+
+       // @TODO Try to rewrite this to $content = SQL_FETCHARRAY()
+       while ($row = sqlFetchArray($result)) {
                // Load data from stats table...
-               $cat = "";
-               switch ($type)
-               {
-               case "NORMAL":
-                       $result_data = SQL_QUERY_ESC("SELECT subject, subject, timestamp_ordered, cat_id, payment_id, pool_id FROM "._MYSQL_PREFIX."_user_stats WHERE id=%s LIMIT 1",
-                        array(bigintval($id)), __FILE__, __LINE__);
-                       $type = "mailid"; $DATA = $id; $PROBLEM = NORMAL_MAIL_PROBLEM;
-                       break;
-
-               case "BONUS":
-                       $result_data = SQL_QUERY_ESC("SELECT subject, text, timestamp, cat_id, points, id FROM "._MYSQL_PREFIX."_bonus WHERE id=%s LIMIT 1",
-                        array(bigintval($id2)), __FILE__, __LINE__);
-                       $type = "bonusid"; $DATA = $id2; $PROBLEM = BONUS_MAIL_PROBLEM;
-                       break;
-               }
+               $cat = '';
+               $result_data = FALSE;
+               $message = '{--MEMBER_GENERAL_MAIL_PROBLEM--}';
+               $data = $row['stats_id'] . '/' . $row['bonus_id'] . '/' . $row['link_type'];
+               switch ($row['link_type']) {
+                       case 'NORMAL':
+                               $result_data = sqlQueryEscaped("SELECT
+       `s`.`subject`,
+       `s`.`timestamp_ordered` AS `timestamp`,
+       `s`.`cat_id`,
+       `s`.`payment_id`,
+       `p`.`sender`
+FROM
+       `{?_MYSQL_PREFIX?}_user_stats` AS `s`
+LEFT JOIN
+       `{?_MYSQL_PREFIX?}_pool` AS `p`
+ON
+       `s`.`pool_id`=`p`.`id`
+WHERE
+       `s`.`id`=%s
+LIMIT 1",
+                                       array(bigintval($row['stats_id'])), __FILE__, __LINE__);
+                               $row['link_type'] = 'mailid';
+                               $data = $row['stats_id'];
+                               $message = '{--NORMAL_MAIL_PROBLEM--}';
+                               break;
+
+                       case 'BONUS':
+                               $result_data = sqlQueryEscaped("SELECT `subject`, `timestamp`, `cat_id`, `points`, NULL FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1",
+                                       array(bigintval($row['bonus_id'])), __FILE__, __LINE__);
+                               $row['link_type'] = 'bonusid';
+                               $data = $row['bonus_id'];
+                               $message = '{--BONUS_MAIL_PROBLEM--}';
+                               break;
 
-               if (SQL_NUMROWS($result_data) == 1)
-               {
-                       // Mail was found!
-                       list($subject, $text, $timestamp, $cat, $pay, $pool) = SQL_FETCHROW($result_data);
-                       SQL_FREERESULT($result_data);
-                       if ($type == "NORMAL")
-                       {
-                               $pay = GET_PAY_POINTS($pay, "payment");
-                               $result_text = SQL_QUERY_ESC("SELECT text FROM "._MYSQL_PREFIX."_pool WHERE id=%s LIMIT 1",
-                                array(bigintval($pool)), __FILE__, __LINE__);
-                               list($text) = SQL_FETCHROW($result_text);
-                               SQL_FREERESULT($result_text);
+                       default: // Unknown type detected!
+                               reportBug(__FILE__, __LINE__, sprintf("Unknown mail type %s detected.", $row['link_type']));
+                               break;
+               } // END - switch
+
+               // Data found to this mail?
+               if ((sqlNumRows($result_data) == 1) && (($row['link_type'] == 'mailid') || ($row['link_type'] == 'bonusid'))) {
+                       // Mail was found
+                       $rowData = sqlFetchArray($result_data);
+
+                       // Subject line found?
+                       if (empty($rowData['subject'])) {
+                               // No subject line!
+                               $rowData['subject'] = '{--DEFAULT_SUBJECT--}';
+                       } // END - if
+
+                       // Prepare sender id
+                       if ((isValidId($rowData['sender'])) && ($row['link_type'] == 'mailid')) {
+                               // Sender id
+                               $rowData['sender'] = bigintval($rowData['sender']);
+                       } elseif ($row['link_type'] == 'bonusid') {
+                               // Is admin
+                               $rowData['sender'] = '{--USERNAME_ADMIN_SHORT--}';
+                       } else {
+                               // Deleted
+                               $rowData['sender'] = '{--EMAIL_STATUS_DELETED--}';
                        }
-                       if (empty($subject)) $subject = DEFAULT_SUBJECT_LINE;
-                       if (empty($text))    $text    = "---";
-                       $subject = COMPILE_CODE($subject);
 
                        // Prepare data for template
-                       $content = array(
-                               'sw'     => $SW,
-                               'uid'    => $GLOBALS['userid'],
-                               'data'   => $DATA,
-                               'type'   => $type,
-                               'subj'   => $subject,
-                               'text'   => COMPILE_CODE($text),
-                               'stamp'  => MAKE_DATETIME($timestamp, "0"),
-                               'cat'    => GET_CATEGORY($cat),
-                               'points' => TRANSLATE_COMMA($pay),
+                       // @TODO cat_id is unused
+                       $rowData = array(
+                               'data'              => bigintval($data),
+                               // @TODO This 'userid' cannot be saved because of encapsulated EL code
+                               'userid'            => getMemberId(),
+                               'link_type'         => $row['link_type'],
+                               'subject'           => $rowData['subject'],
+                               'sender'            => $rowData['sender'],
+                               'timestamp_ordered' => generateDateTime($rowData['timestamp_ordered'], 2),
+                               'payment_id'        => $rowData['payment_id'],
                        );
 
-                       // Load row template and count points
-                       $OUT .= LOAD_TEMPLATE("member_unconfirmed_row", true, $content);
-                       $sum += $pay;
-               }
-                else
-               {
+                       // Load row template
+                       if (isShowPointsUnconfirmedEnabled()) {
+                               $OUT .= loadTemplate('member_list_unconfirmed_row', TRUE, $rowData);
+                       } else {
+                               $OUT .= loadTemplate('member_list_unconfirmed_nopoints_row', TRUE, $rowData);
+                       }
+
+                       // Count points (price)
+                       $sum += getPaymentPrice($rowData['payment_id']);
+               } else {
                        // Prepare data for template
-                       $content = array(
-                               'sw'    => $SW,
-                               'data'  => $DATA,
-                               'probl' => $PROBLEM,
+                       $rowData = array(
+                               'data'    => $data,
+                               'message' => $message,
                        );
 
-                       // Problem with mail detected
-                       $OUT .= LOAD_TEMPLATE("member_unconfirmed_404", true, $content);
+                       // Display points or not?
+                       if (isShowPointsUnconfirmedEnabled()) {
+                               $OUT .= loadTemplate('member_list_unconfirmed_404_row', TRUE, $rowData);
+                       } else {
+                               $OUT .= loadTemplate('member_list_unconfirmed_nopoints_404_row', TRUE, $rowData);
+                       }
                }
-               $SW = 3 - $SW;
-       }
+
+               // Free result
+               sqlFreeResult($result_data);
+       } // END - while
 
        // Free memory
-       SQL_FREERESULT($result);
+       sqlFreeResult($result);
 
        // Remember total points
-       define('__TOTAL_POINTS', TRANSLATE_COMMA($sum));
+       $content['total_points'] = $sum;
 
        // Remember all generated rows in constant for the template
-       define('__UNCONFIRMED_ROWS', $OUT);
+       $content['rows'] = $OUT;
 
        // Load main template
-       LOAD_TEMPLATE("member_unconfirmed_table");
-}
- else
-{
+       if (isShowPointsUnconfirmedEnabled()) {
+               loadTemplate('member_list_unconfirmed', FALSE, $content);
+       } else {
+               loadTemplate('member_list_unconfirmed_nopoints', FALSE, $content);
+       }
+} else {
        // No mails left to confirm... :)
-       LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_NO_MAILS_TO_CONFIRM);
+       displayMessage('{--MEMBER_NO_MAILS_TO_CONFIRM--}');
 }
 
-//
+// [EOF]
 ?>