diff options
Diffstat (limited to 'htdocs/src')
-rw-r--r-- | htdocs/src/Cif_Database.inc.php | 2 | ||||
-rw-r--r-- | htdocs/src/Email.inc.php | 72 | ||||
-rw-r--r-- | htdocs/src/Post.inc.php | 70 | ||||
-rw-r--r-- | htdocs/src/config.inc.php | 8 |
4 files changed, 146 insertions, 6 deletions
diff --git a/htdocs/src/Cif_Database.inc.php b/htdocs/src/Cif_Database.inc.php index e78889c..cc42b14 100644 --- a/htdocs/src/Cif_Database.inc.php +++ b/htdocs/src/Cif_Database.inc.php @@ -111,7 +111,7 @@ class Cif_Database { } /** - * Insert a collection of rows into the database. + * Insert a row into the database. * * @param string $table The table to update. * @param array $row Arrays of fields mapped to values for the new row. diff --git a/htdocs/src/Email.inc.php b/htdocs/src/Email.inc.php new file mode 100644 index 0000000..b828780 --- /dev/null +++ b/htdocs/src/Email.inc.php @@ -0,0 +1,72 @@ +<?php + +/* Foursquare Community Site + * + * Copyright (C) 2011 Foursquare Church. + * + * Developers: Jesse Morgan <jmorgan@foursquarestaff.com> + * + */ + +class Email { + private $subject; + private $to; + private $from; + private $fromname; + private $message; + private $headers; + + public function __construct($to) { + $this->to = $to; + $this->from = $GLOBALS['CONFIG']['email_from']; + $this->message = ""; + $this->headers = array(); + } + + public function setFrom($from) { + $this->from = $from; + + if (strstr($from, "<")) + $this->fromname = preg_replace("/([^<>]+) <([^<>]+)>/", "$1", $from); + } + + public function setSubject($subject) { + $this->subject = $subject; + } + + public function addHeader($header, $value) { + $this->headers[] = "$header: $value"; + } + + public function appendMessage($message) { + $this->message .= $message; + } + + public function send($logprefix="") { + // Headers + if ($this->fromname) { + $headers = "From: ". $this->fromname ." <". $this->from .">\n"; + } else { + $headers = "From: ". $this->from ."\n"; + } + $headers .= "Reply-To: ". $this->from ."\n"; + $headers .= "Date: ". date("r") ."\n"; + $headers .= join("\n", $this->headers); + + if ($GLOBALS['CONFIG']['production']) { + $ret = mail($this->to, $this->subject, $this->message, $headers); + + } else { + // If we're not in production, save to file instead of emailing. + $fh = fopen($GLOBALS['CONFIG']['root'].'/emails.log', 'a'); + fwrite($fh, sprintf("To: %s\n%s\nSubject: %s\n\n%s\n\n", + $this->to, $headers, $this->subject, $this->message)); + fclose($fh); + } + + // TODO: Add logger + //$GLOBALS['logger']->log_email($ret, $this->to, $this->subject, $logprefix); + } +} + +?> diff --git a/htdocs/src/Post.inc.php b/htdocs/src/Post.inc.php index 22d2fce..cfd7d07 100644 --- a/htdocs/src/Post.inc.php +++ b/htdocs/src/Post.inc.php @@ -12,10 +12,18 @@ require_once "base.inc.php"; class Post { private $info; + private $indatabase = false; public function __construct($info=null) { - $this->info = $info; + $this->info = is_null($info) ? array() : $info; + + if ($info !== null and isset($info['id'])) { + $this->indatabase = true; + + } else { + $this->indatabase = false; + } } public static function getById($id) { @@ -51,21 +59,54 @@ class Post { public function save() { $db = getDatabase(); - // TODO: Implement Save + // Cleanup Info + foreach ($this->info as $key=>$value) $info[$key] = addslashes($value); + + // Save or create? + if ($this->indatabase) { + return $db->update('post', $info, "WHERE `id`='". $this->getId() ."'"); + + } else { + // Creating... set special fields. + $info['stage'] = 'verification'; + $info['secretid'] = uniqid(); + + $ret = $db->insert('post', $info); + + if ($ret) { + $this->info['id'] = $ret; + $this->info['stage'] = 'verification'; + $this->info['secretid'] = $info['secretid']; + } + + return $ret; + } } public function getId() { return $this->info['id']; } + public function getSecretId() { + return $this->info['secretid']; + } + public function getName() { return htmlspecialchars($this->info['name']); } + public function setName($value) { + $this->info['name'] = $value; + } + public function getDescription() { return htmlspecialchars($this->info['description']); } + public function setDescription($value) { + $this->info['description'] = $value; + } + public function getStage() { return $this->info['stage']; } @@ -82,6 +123,18 @@ class Post { return $this->info['created']; } + public function getEmail() { + return $this->info['email']; + } + + public function setEmail($value) { + $this->info['email'] = $value; + } + + public function setCategory($value) { + $this->info['category_id'] = $value; + } + public function getAge() { $diff = time() - $this->info['createdts']; @@ -105,6 +158,19 @@ class Post { public function getLocation() { return $this->info['location']; } + + public function sendValidation() { + $email = new Email($this->getEmail()); + + $email->setSubject($GLOBAL['CONFIG']['sitetitle'] . " Email Validation"); + + $url = $GLOBALS['CONFIG']['urlroot'] . '/validate.php?id=' . $this->getSecretId(); + + $email->appendMessage("Please click on the link below to verify your email address.\n\n"); + $email->appendMessage($url); + + $email->send(); + } } ?> diff --git a/htdocs/src/config.inc.php b/htdocs/src/config.inc.php index 1ca6808..f1308b6 100644 --- a/htdocs/src/config.inc.php +++ b/htdocs/src/config.inc.php @@ -16,12 +16,14 @@ $CONFIG = array( 'dbname' => 'p4scommunity', // Site Information - 'sitetitle' => 'Foursquare Community', + 'sitetitle' => 'Foursquare Community', + 'email_from' => 'community@myfoursquarechurch.com', + 'urlroot' => 'http://localhost/~jesse/p4s/community/htdocs', - 'root' => '/Users/jesse/Development/P4Square/community/htdocs', - 'debug' => true, + 'debug' => true, + 'production' => false, ); set_include_path(get_include_path() . PATH_SEPARATOR . $CONFIG['root'].'/src'); |