forked from GNUsocial/gnu-social
[SearchSub][README] No longer is a default plugin since 8614cd77
This commit is contained in:
@@ -1,48 +1,40 @@
|
||||
<?php
|
||||
// This file is part of GNU social - https://www.gnu.org/software/social
|
||||
//
|
||||
// GNU social 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.
|
||||
//
|
||||
// GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Data class to store local search subscriptions
|
||||
*
|
||||
* PHP version 5
|
||||
*
|
||||
* @category SearchSubPlugin
|
||||
* @package StatusNet
|
||||
* @author Brion Vibber <brion@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/>.
|
||||
* @category Plugin
|
||||
* @package SearchSubPlugin
|
||||
* @author Brion Vibber <brion@status.net>
|
||||
* @copyright 2011-2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
||||
*/
|
||||
|
||||
if (!defined('STATUSNET')) {
|
||||
exit(1);
|
||||
}
|
||||
defined('GNUSOCIAL') || die();
|
||||
|
||||
/**
|
||||
* For storing the search subscriptions
|
||||
*
|
||||
* @category PollPlugin
|
||||
* @package StatusNet
|
||||
* @author Brion Vibber <brion@status.net>
|
||||
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
||||
* @link http://status.net/
|
||||
* @author Brion Vibber <brion@status.net>
|
||||
* @copyright 2011-2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
||||
*
|
||||
* @see DB_DataObject
|
||||
*/
|
||||
|
||||
class SearchSub extends Managed_DataObject
|
||||
{
|
||||
public $__table = 'searchsub'; // table name
|
||||
@@ -80,7 +72,7 @@ class SearchSub extends Managed_DataObject
|
||||
* @param string $search subscribee
|
||||
* @return SearchSub
|
||||
*/
|
||||
static function start(Profile $profile, $search)
|
||||
public static function start(Profile $profile, $search)
|
||||
{
|
||||
$ts = new SearchSub();
|
||||
$ts->search = $search;
|
||||
@@ -97,27 +89,27 @@ class SearchSub extends Managed_DataObject
|
||||
* @param profile $profile subscriber
|
||||
* @param string $search subscribee
|
||||
*/
|
||||
static function cancel(Profile $profile, $search)
|
||||
public static function cancel(Profile $profile, $search)
|
||||
{
|
||||
$ts = SearchSub::pkeyGet(array('search' => $search,
|
||||
'profile_id' => $profile->id));
|
||||
'profile_id' => $profile->id));
|
||||
if ($ts) {
|
||||
$ts->delete();
|
||||
self::blow('searchsub:by_profile:%d', $profile->id);
|
||||
}
|
||||
}
|
||||
|
||||
static function forProfile(Profile $profile)
|
||||
public static function forProfile(Profile $profile)
|
||||
{
|
||||
$searches = array();
|
||||
|
||||
$keypart = sprintf('searchsub:by_profile:%d', $profile->id);
|
||||
$searchstring = self::cacheGet($keypart);
|
||||
|
||||
|
||||
if ($searchstring !== false) {
|
||||
if (!empty($searchstring)) {
|
||||
$searches = explode(',', $searchstring);
|
||||
}
|
||||
if (!empty($searchstring)) {
|
||||
$searches = explode(',', $searchstring);
|
||||
}
|
||||
} else {
|
||||
$searchsub = new SearchSub();
|
||||
$searchsub->profile_id = $profile->id;
|
||||
|
Reference in New Issue
Block a user