0ac0925309
A bunch of the common_* functions for date formatting expect an interpretable string, rather than a Unix timestamp, as input. Switched to using the DB-formatted timestamps as we put them into the object rather than the unix timestamp intermediate value when formatting the plaintext and HTML fallback content.
221 lines
7.8 KiB
PHP
221 lines
7.8 KiB
PHP
<?php
|
|
/**
|
|
* Data class for happenings
|
|
*
|
|
* PHP version 5
|
|
*
|
|
* @category Data
|
|
* @package StatusNet
|
|
* @author Evan Prodromou <evan@status.net>
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
|
* @link http://status.net/
|
|
*
|
|
* StatusNet - the distributed open-source microblogging tool
|
|
* Copyright (C) 2011, StatusNet, Inc.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
if (!defined('STATUSNET')) {
|
|
exit(1);
|
|
}
|
|
|
|
/**
|
|
* Data class for happenings
|
|
*
|
|
* There's already an Event class in lib/event.php, so we couldn't
|
|
* call this an Event without causing a hole in space-time.
|
|
*
|
|
* "Happening" seemed good enough.
|
|
*
|
|
* @category Event
|
|
* @package StatusNet
|
|
* @author Evan Prodromou <evan@status.net>
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
|
* @link http://status.net/
|
|
*
|
|
* @see Managed_DataObject
|
|
*/
|
|
|
|
class Happening extends Managed_DataObject
|
|
{
|
|
const OBJECT_TYPE = 'http://activitystrea.ms/schema/1.0/event';
|
|
|
|
public $__table = 'happening'; // table name
|
|
public $id; // varchar(36) UUID
|
|
public $uri; // varchar(255)
|
|
public $profile_id; // int
|
|
public $start_time; // datetime
|
|
public $end_time; // datetime
|
|
public $title; // varchar(255)
|
|
public $location; // varchar(255)
|
|
public $url; // varchar(255)
|
|
public $description; // text
|
|
public $created; // datetime
|
|
|
|
/**
|
|
* Get an instance by key
|
|
*
|
|
* @param string $k Key to use to lookup (usually 'id' for this class)
|
|
* @param mixed $v Value to lookup
|
|
*
|
|
* @return Happening object found, or null for no hits
|
|
*
|
|
*/
|
|
function staticGet($k, $v=null)
|
|
{
|
|
return Memcached_DataObject::staticGet('Happening', $k, $v);
|
|
}
|
|
|
|
/**
|
|
* The One True Thingy that must be defined and declared.
|
|
*/
|
|
public static function schemaDef()
|
|
{
|
|
return array(
|
|
'description' => 'A real-world happening',
|
|
'fields' => array(
|
|
'id' => array('type' => 'char',
|
|
'length' => 36,
|
|
'not null' => true,
|
|
'description' => 'UUID'),
|
|
'uri' => array('type' => 'varchar',
|
|
'length' => 255,
|
|
'not null' => true),
|
|
'profile_id' => array('type' => 'int', 'not null' => true),
|
|
'start_time' => array('type' => 'datetime', 'not null' => true),
|
|
'end_time' => array('type' => 'datetime', 'not null' => true),
|
|
'title' => array('type' => 'varchar',
|
|
'length' => 255,
|
|
'not null' => true),
|
|
'location' => array('type' => 'varchar',
|
|
'length' => 255),
|
|
'url' => array('type' => 'varchar',
|
|
'length' => 255),
|
|
'description' => array('type' => 'text'),
|
|
'created' => array('type' => 'datetime',
|
|
'not null' => true),
|
|
),
|
|
'primary key' => array('id'),
|
|
'unique keys' => array(
|
|
'happening_uri_key' => array('uri'),
|
|
),
|
|
'foreign keys' => array('happening_profile_id__key' => array('profile', array('profile_id' => 'id'))),
|
|
'indexes' => array('happening_created_idx' => array('created'),
|
|
'happening_start_end_idx' => array('start_time', 'end_time')),
|
|
);
|
|
}
|
|
|
|
function saveNew($profile, $start_time, $end_time, $title, $location, $description, $url, $options=array())
|
|
{
|
|
if (array_key_exists('uri', $options)) {
|
|
$other = Happening::staticGet('uri', $options['uri']);
|
|
if (!empty($other)) {
|
|
throw new ClientException(_('Event already exists.'));
|
|
}
|
|
}
|
|
|
|
$ev = new Happening();
|
|
|
|
$ev->id = UUID::gen();
|
|
$ev->profile_id = $profile->id;
|
|
$ev->start_time = common_sql_date($start_time);
|
|
$ev->end_time = common_sql_date($end_time);
|
|
$ev->title = $title;
|
|
$ev->location = $location;
|
|
$ev->description = $description;
|
|
$ev->url = $url;
|
|
|
|
if (array_key_exists('created', $options)) {
|
|
$ev->created = $options['created'];
|
|
} else {
|
|
$ev->created = common_sql_now();
|
|
}
|
|
|
|
if (array_key_exists('uri', $options)) {
|
|
$ev->uri = $options['uri'];
|
|
} else {
|
|
$ev->uri = common_local_url('showevent',
|
|
array('id' => $ev->id));
|
|
}
|
|
|
|
$ev->insert();
|
|
|
|
// XXX: does this get truncated?
|
|
|
|
$content = sprintf(_('"%s" %s - %s (%s): %s'),
|
|
$title,
|
|
common_exact_date($ev->start_time),
|
|
common_exact_date($ev->end_time),
|
|
$location,
|
|
$description);
|
|
|
|
$rendered = sprintf(_('<span class="vevent">'.
|
|
'<span class="summary">%s</span> '.
|
|
'<abbr class="dtstart" title="%s">%s</a> - '.
|
|
'<abbr class="dtend" title="%s">%s</a> '.
|
|
'(<span class="location">%s</span>): '.
|
|
'<span class="description">%s</span> '.
|
|
'</span>'),
|
|
htmlspecialchars($title),
|
|
htmlspecialchars(common_date_iso8601($ev->start_time)),
|
|
htmlspecialchars(common_exact_date($ev->start_time)),
|
|
htmlspecialchars(common_date_iso8601($ev->end_time)),
|
|
htmlspecialchars(common_exact_date($ev->end_time)),
|
|
htmlspecialchars($location),
|
|
htmlspecialchars($description));
|
|
|
|
$options = array_merge(array('object_type' => Happening::OBJECT_TYPE),
|
|
$options);
|
|
|
|
if (!array_key_exists('uri', $options)) {
|
|
$options['uri'] = $ev->uri;
|
|
}
|
|
|
|
if (!empty($url)) {
|
|
$options['urls'] = array($url);
|
|
}
|
|
|
|
$saved = Notice::saveNew($profile->id,
|
|
$content,
|
|
array_key_exists('source', $options) ?
|
|
$options['source'] : 'web',
|
|
$options);
|
|
|
|
return $saved;
|
|
}
|
|
|
|
function getNotice()
|
|
{
|
|
return Notice::staticGet('uri', $this->uri);
|
|
}
|
|
|
|
static function fromNotice($notice)
|
|
{
|
|
return Happening::staticGet('uri', $notice->uri);
|
|
}
|
|
|
|
function getRSVPs()
|
|
{
|
|
return RSVP::forEvent($this);
|
|
}
|
|
|
|
function getRSVP($profile)
|
|
{
|
|
common_log(LOG_DEBUG, "Finding RSVP for " . $profile->id . ', ' . $this->id);
|
|
return RSVP::pkeyGet(array('profile_id' => $profile->id,
|
|
'event_id' => $this->id));
|
|
}
|
|
}
|