2010-12-31 22:36:51 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* GNU Social
|
|
|
|
* Copyright (C) 2010, Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE:
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
* @category Widget
|
|
|
|
* @package GNU Social
|
|
|
|
* @author Max Shinn <trombonechamp@gmail.com>
|
2011-02-14 00:15:54 +00:00
|
|
|
* @copyright 2011 Free Software Foundation, Inc.
|
2010-12-31 22:36:51 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2013-08-28 14:54:26 +01:00
|
|
|
include_once $dir . '/lib/profiletools.php';
|
|
|
|
|
2010-12-31 22:36:51 +00:00
|
|
|
class GNUsocialProfileExtensionsPlugin extends Plugin
|
|
|
|
{
|
|
|
|
|
|
|
|
function onCheckSchema()
|
|
|
|
{
|
|
|
|
$schema = Schema::get();
|
2013-08-19 16:08:18 +01:00
|
|
|
$schema->ensureTable('GNUsocialProfileExtensionField', GNUsocialProfileExtensionField::schemaDef());
|
|
|
|
$schema->ensureTable('GNUsocialProfileExtensionResponse', GNUsocialProfileExtensionResponse::schemaDef());
|
2010-12-31 22:36:51 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function onRouterInitialized($m)
|
|
|
|
{
|
|
|
|
$m->connect(':nickname/bio', array('action' => 'bio'));
|
|
|
|
$m->connect('admin/profilefields', array('action' => 'profilefieldsAdminPanel'));
|
2011-02-14 00:15:54 +00:00
|
|
|
$m->connect('notice/respond', array('action' => 'newresponse'));
|
2010-12-31 22:36:51 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function onEndProfileFormData($action)
|
|
|
|
{
|
|
|
|
$fields = GNUsocialProfileExtensionField::allFields();
|
|
|
|
$user = common_current_user();
|
|
|
|
$profile = $user->getProfile();
|
|
|
|
gnusocial_profile_merge($profile);
|
|
|
|
foreach ($fields as $field) {
|
|
|
|
$action->elementStart('li');
|
|
|
|
$fieldname = $field->systemname;
|
|
|
|
if ($field->type == 'str') {
|
|
|
|
$action->input($fieldname, $field->title,
|
|
|
|
($action->arg($fieldname)) ? $action->arg($fieldname) : $profile->$fieldname,
|
|
|
|
$field->description);
|
|
|
|
}
|
|
|
|
else if ($field->type == 'text') {
|
|
|
|
$action->textarea($fieldname, $field->title,
|
|
|
|
($action->arg($fieldname)) ? $action->arg($fieldname) : $profile->$fieldname,
|
|
|
|
$field->description);
|
|
|
|
}
|
|
|
|
$action->elementEnd('li');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onEndProfileSaveForm($action)
|
|
|
|
{
|
|
|
|
$fields = GNUsocialProfileExtensionField::allFields();
|
|
|
|
$user = common_current_user();
|
|
|
|
$profile = $user->getProfile();
|
|
|
|
foreach ($fields as $field) {
|
|
|
|
$val = $action->trimmed($field->systemname);
|
|
|
|
|
|
|
|
$response = new GNUsocialProfileExtensionResponse();
|
|
|
|
$response->profile_id = $profile->id;
|
|
|
|
$response->extension_id = $field->id;
|
|
|
|
|
|
|
|
if ($response->find()) {
|
|
|
|
$response->fetch();
|
|
|
|
$response->value = $val;
|
|
|
|
if ($response->validate()) {
|
|
|
|
if (empty($val))
|
|
|
|
$response->delete();
|
|
|
|
else
|
|
|
|
$response->update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$response->value = $val;
|
|
|
|
$response->insert();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onEndShowStyles($action)
|
|
|
|
{
|
|
|
|
$action->cssLink('/plugins/GNUsocialProfileExtensions/res/style.css');
|
|
|
|
}
|
|
|
|
|
2011-02-14 00:15:54 +00:00
|
|
|
function onEndShowScripts($action)
|
|
|
|
{
|
|
|
|
$action->script('plugins/GNUsocialProfileExtensions/js/profile.js');
|
|
|
|
}
|
|
|
|
|
2010-12-31 22:36:51 +00:00
|
|
|
function onEndAdminPanelNav($nav)
|
|
|
|
{
|
|
|
|
if (AdminPanelAction::canAdmin('profilefields')) {
|
|
|
|
|
|
|
|
$action_name = $nav->action->trimmed('action');
|
|
|
|
|
|
|
|
$nav->out->menuItem(
|
|
|
|
'/admin/profilefields',
|
|
|
|
_m('Profile Fields'),
|
|
|
|
_m('Custom profile fields'),
|
|
|
|
$action_name == 'profilefieldsadminpanel',
|
|
|
|
'nav_profilefields_admin_panel'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-06-28 12:11:03 +01:00
|
|
|
function onStartPersonalGroupNav(Menu $nav, Profile $target, Profile $scoped=null)
|
2010-12-31 22:36:51 +00:00
|
|
|
{
|
|
|
|
$nav->out->menuItem(common_local_url('bio',
|
|
|
|
array('nickname' => $nav->action->trimmed('nickname'))), _('Bio'),
|
|
|
|
_('The user\'s extended profile'), $nav->action->trimmed('action') == 'bio', 'nav_bio');
|
|
|
|
}
|
|
|
|
|
2011-02-14 00:15:54 +00:00
|
|
|
//Why the heck is this shoved into this plugin!?!? It deserves its own!
|
|
|
|
function onShowStreamNoticeList($notice, $action, &$pnl)
|
|
|
|
{
|
2011-02-16 14:54:22 +00:00
|
|
|
//TODO: This function is called after the notices in $notice are superfluously retrieved in showstream.php
|
|
|
|
$newnotice = new Notice();
|
|
|
|
$newnotice->profile_id = $action->user->id;
|
|
|
|
$newnotice->orderBy('modified DESC');
|
|
|
|
$newnotice->whereAdd('reply_to IS NULL');
|
|
|
|
$newnotice->limit(($action->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
|
|
|
|
$newnotice->find();
|
|
|
|
|
|
|
|
$pnl = new NoticeTree($newnotice, $action);
|
2011-02-14 00:15:54 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-12-31 22:36:51 +00:00
|
|
|
}
|
|
|
|
|