2011-12-20 17:24:22 +00:00
|
|
|
<?php
|
2019-09-11 09:25:39 +01:00
|
|
|
// 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/>.
|
|
|
|
|
2019-04-26 00:34:17 +01:00
|
|
|
/**
|
|
|
|
* Score of a notice by activity spam service
|
|
|
|
*
|
|
|
|
* @category Spam
|
2019-09-11 09:25:39 +01:00
|
|
|
* @package GNUsocial
|
2019-04-26 00:34:17 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2011 StatusNet, Inc.
|
2019-09-11 09:25:39 +01:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2019-04-26 00:34:17 +01:00
|
|
|
*/
|
2011-12-20 17:24:22 +00:00
|
|
|
|
2019-09-11 09:25:39 +01:00
|
|
|
defined('GNUSOCIAL') || die();
|
2011-12-20 17:24:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Score of a notice per the activity spam service
|
|
|
|
*
|
2019-09-11 09:25:39 +01:00
|
|
|
* @copyright 2011 StatusNet, Inc.
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2011-12-20 17:24:22 +00:00
|
|
|
*
|
2019-09-11 09:25:39 +01:00
|
|
|
* @see DB_DataObject
|
2011-12-20 17:24:22 +00:00
|
|
|
*/
|
|
|
|
class Spam_score extends Managed_DataObject
|
|
|
|
{
|
2012-03-04 14:49:07 +00:00
|
|
|
const MAX_SCALE = 10000;
|
2011-12-20 17:24:22 +00:00
|
|
|
public $__table = 'spam_score'; // table name
|
|
|
|
|
|
|
|
public $notice_id; // int
|
|
|
|
public $score; // float
|
|
|
|
public $created; // datetime
|
|
|
|
|
2019-04-26 00:34:17 +01:00
|
|
|
public static function save($notice, $result)
|
|
|
|
{
|
|
|
|
$orig = null;
|
2013-08-18 12:04:58 +01:00
|
|
|
$score = Spam_score::getKV('notice_id', $notice->id);
|
2012-03-07 13:24:28 +00:00
|
|
|
|
|
|
|
if (empty($score)) {
|
|
|
|
$score = new Spam_score();
|
|
|
|
} else {
|
|
|
|
$orig = clone($score);
|
|
|
|
}
|
|
|
|
|
2019-04-26 00:34:17 +01:00
|
|
|
$score->notice_id = $notice->id;
|
|
|
|
$score->score = $result->probability;
|
|
|
|
$score->is_spam = $result->isSpam;
|
|
|
|
$score->scaled = Spam_score::scale($score->score);
|
|
|
|
$score->created = common_sql_now();
|
2012-03-07 13:24:28 +00:00
|
|
|
$score->notice_created = $notice->created;
|
|
|
|
|
|
|
|
if (empty($orig)) {
|
|
|
|
$score->insert();
|
|
|
|
} else {
|
|
|
|
$score->update($orig);
|
|
|
|
}
|
2019-04-26 00:34:17 +01:00
|
|
|
|
2012-03-07 21:40:24 +00:00
|
|
|
self::blow('spam_score:notice_ids');
|
|
|
|
|
2012-03-07 13:24:28 +00:00
|
|
|
return $score;
|
|
|
|
}
|
|
|
|
|
2011-12-20 17:24:22 +00:00
|
|
|
/**
|
|
|
|
* The One True Thingy that must be defined and declared.
|
|
|
|
*/
|
|
|
|
public static function schemaDef()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
'description' => 'score of the notice per activityspam',
|
|
|
|
'fields' => array(
|
|
|
|
'notice_id' => array('type' => 'int',
|
2019-04-26 00:34:17 +01:00
|
|
|
'not null' => true,
|
|
|
|
'description' => 'notice getting scored'),
|
2019-09-11 12:14:40 +01:00
|
|
|
'score' => array('type' => 'float',
|
|
|
|
'size' => 'big',
|
2019-04-26 00:34:17 +01:00
|
|
|
'not null' => true,
|
|
|
|
'description' => 'score for the notice (0.0, 1.0)'),
|
2012-03-02 16:20:01 +00:00
|
|
|
'scaled' => array('type' => 'int',
|
2019-04-26 00:34:17 +01:00
|
|
|
'description' => 'scaled score for the notice (0, 10000)'),
|
2019-09-11 09:25:39 +01:00
|
|
|
'is_spam' => array('type' => 'bool',
|
2019-04-26 00:34:17 +01:00
|
|
|
'description' => 'flag for spamosity'),
|
2011-12-20 17:24:22 +00:00
|
|
|
'created' => array('type' => 'datetime',
|
2019-04-26 00:34:17 +01:00
|
|
|
'not null' => true,
|
|
|
|
'description' => 'date this record was created'),
|
2012-03-02 16:20:01 +00:00
|
|
|
'notice_created' => array('type' => 'datetime',
|
2019-04-26 00:34:17 +01:00
|
|
|
'description' => 'date the notice was created'),
|
2011-12-20 17:24:22 +00:00
|
|
|
),
|
|
|
|
'primary key' => array('notice_id'),
|
|
|
|
'foreign keys' => array(
|
|
|
|
'spam_score_notice_id_fkey' => array('notice', array('notice_id' => 'id')),
|
|
|
|
),
|
|
|
|
'indexes' => array(
|
|
|
|
'spam_score_created_idx' => array('created'),
|
2012-03-02 16:20:01 +00:00
|
|
|
'spam_score_scaled_idx' => array('scaled'),
|
2011-12-20 17:24:22 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2012-03-02 16:37:20 +00:00
|
|
|
|
|
|
|
public static function upgrade()
|
|
|
|
{
|
|
|
|
Spam_score::upgradeScaled();
|
|
|
|
Spam_score::upgradeIsSpam();
|
|
|
|
Spam_score::upgradeNoticeCreated();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected static function upgradeScaled()
|
|
|
|
{
|
|
|
|
$score = new Spam_score();
|
|
|
|
$score->whereAdd('scaled IS NULL');
|
2019-04-26 00:34:17 +01:00
|
|
|
|
2012-03-02 16:37:20 +00:00
|
|
|
if ($score->find()) {
|
|
|
|
while ($score->fetch()) {
|
|
|
|
$orig = clone($score);
|
|
|
|
$score->scaled = Spam_score::scale($score->score);
|
|
|
|
$score->update($orig);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected static function upgradeIsSpam()
|
|
|
|
{
|
|
|
|
$score = new Spam_score();
|
|
|
|
$score->whereAdd('is_spam IS NULL');
|
2019-04-26 00:34:17 +01:00
|
|
|
|
2012-03-02 16:37:20 +00:00
|
|
|
if ($score->find()) {
|
|
|
|
while ($score->fetch()) {
|
|
|
|
$orig = clone($score);
|
2019-09-11 09:25:39 +01:00
|
|
|
$score->is_spam = ($score->score >= 0.90) ? true : false;
|
2012-03-02 16:37:20 +00:00
|
|
|
$score->update($orig);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected static function upgradeNoticeCreated()
|
|
|
|
{
|
|
|
|
$score = new Spam_score();
|
|
|
|
$score->whereAdd('notice_created IS NULL');
|
2019-04-26 00:34:17 +01:00
|
|
|
|
2012-03-02 16:37:20 +00:00
|
|
|
if ($score->find()) {
|
|
|
|
while ($score->fetch()) {
|
2013-08-18 12:04:58 +01:00
|
|
|
$notice = Notice::getKV('id', $score->notice_id);
|
2012-03-02 16:37:20 +00:00
|
|
|
if (!empty($notice)) {
|
|
|
|
$orig = clone($score);
|
|
|
|
$score->notice_created = $notice->created;
|
|
|
|
$score->update($orig);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-11 09:25:39 +01:00
|
|
|
public function saveNew($notice, $result)
|
2019-04-26 00:34:17 +01:00
|
|
|
{
|
|
|
|
$score = new Spam_score();
|
|
|
|
|
|
|
|
$score->notice_id = $notice->id;
|
|
|
|
$score->score = $result->probability;
|
|
|
|
$score->is_spam = $result->isSpam;
|
|
|
|
$score->scaled = Spam_score::scale($score->score);
|
|
|
|
$score->created = common_sql_now();
|
|
|
|
$score->notice_created = $notice->created;
|
|
|
|
|
|
|
|
$score->insert();
|
|
|
|
|
|
|
|
self::blow('spam_score:notice_ids');
|
|
|
|
|
|
|
|
return $score;
|
|
|
|
}
|
|
|
|
|
2012-03-05 15:32:25 +00:00
|
|
|
public static function scale($score)
|
2012-03-02 16:37:20 +00:00
|
|
|
{
|
|
|
|
$raw = round($score * Spam_score::MAX_SCALE);
|
|
|
|
return max(0, min(Spam_score::MAX_SCALE, $raw));
|
|
|
|
}
|
2019-04-26 00:34:17 +01:00
|
|
|
|
|
|
|
public function delete($useWhere = false)
|
|
|
|
{
|
|
|
|
self::blow('spam_score:notice_ids');
|
|
|
|
self::blow('spam_score:notice_ids;last');
|
|
|
|
return parent::delete($useWhere);
|
|
|
|
}
|
2011-12-20 17:24:22 +00:00
|
|
|
}
|