1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
|
# Movable Type (r) Open Source (C) 2001-2008 Six Apart, Ltd.
# This program is distributed under the terms of the
# GNU General Public License, version 2.
#
# $Id: TBPing.pm 2547 2008-06-11 00:07:27Z bchoate $
package MT::TBPing;
use strict;
use base qw( MT::Object MT::Scorable );
sub JUNK() { -1 }
sub NOT_JUNK () { 1 }
__PACKAGE__->install_properties({
column_defs => {
'id' => 'integer not null auto_increment',
'blog_id' => 'integer not null',
'tb_id' => 'integer not null',
'title' => 'string(255)',
'excerpt' => 'text',
'source_url' => 'string(255)',
'ip' => 'string(15) not null',
'blog_name' => 'string(255)',
'visible' => 'boolean',
'junk_status' => 'smallint not null',
'last_moved_on' => 'datetime not null',
'junk_score' => 'float',
'junk_log' => 'text',
},
indexes => {
created_on => 1,
tb_visible => {
columns => [ 'tb_id', 'visible', 'created_on' ],
},
ip => 1,
last_moved_on => 1, # used for junk expiration
# For URL lookups to aid spam filtering
blog_url => {
columns => [ 'blog_id', 'visible', 'source_url' ],
},
blog_stat => {
columns => ['blog_id', 'junk_status', 'created_on'],
},
blog_visible => {
columns => ['blog_id', 'visible', 'created_on', 'id'],
},
visible_date => {
columns => [ 'visible', 'created_on' ],
},
junk_date => {
columns => [ 'junk_status', 'created_on' ],
},
},
defaults => {
junk_status => NOT_JUNK,
last_moved_on => '20000101000000',
},
audit => 1,
meta => 1,
datasource => 'tbping',
primary_key => 'id',
});
sub class_label {
return MT->translate('TrackBack');
}
sub class_label_plural {
return MT->translate('TrackBacks');
}
sub is_junk {
$_[0]->junk_status == JUNK;
}
sub is_not_junk {
$_[0]->junk_status != JUNK;
}
sub is_published {
return $_[0]->visible && !$_[0]->is_junk;
}
sub is_moderated {
return !$_[0]->visible() && !$_[0]->is_junk();
}
sub blog {
my ($ping) = @_;
my $blog = $ping->{__blog};
unless ($blog) {
my $blog_id = $ping->blog_id;
my $blog_class = MT->model('blog');
$blog = $blog_class->load($blog_id) or
return $ping->error(MT->translate(
"Load of blog '[_1]' failed: [_2]", $blog_id, $blog_class->errstr));
$ping->{__blog} = $blog;
}
return $blog;
}
sub parent {
my ($ping) = @_;
if (my $tb = MT->model('trackback')->load($ping->tb_id)) {
if ($tb->entry_id) {
return MT->model('entry')->load($tb->entry_id);
} else {
return MT->model('category')->load($tb->category_id);
}
}
}
sub parent_id {
my ($ping) = @_;
if (my $tb = MT->model('trackback')->load($ping->tb_id)) {
if ($tb->entry_id) {
return ('MT::Entry', $tb->entry_id);
} else {
return ('MT::Category', $tb->category_id);
}
}
}
sub next {
my $ping = shift;
my($publish_only) = @_;
$publish_only = $publish_only ? {'visible' => 1} : {};
$ping->_nextprev('next', $publish_only);
}
sub previous {
my $ping = shift;
my($publish_only) = @_;
$publish_only = $publish_only ? {'visible' => 1} : {};
$ping->_nextprev('previous', $publish_only);
}
sub _nextprev {
my $obj = shift;
my $class = ref($obj);
my ($direction, $publish_only) = @_;
return undef unless ($direction eq 'next' || $direction eq 'previous');
my $next = $direction eq 'next';
my $label = '__' . $direction;
return $obj->{$label} if $obj->{$label};
# Selecting the adjacent object can be tricky since timestamps
# are not necessarily unique for entries. If we find that the
# next/previous object has a matching timestamp, keep selecting entries
# to select all entries with the same timestamp, then compare them using
# id as a secondary sort column.
my ($id, $ts) = ($obj->id, $obj->created_on);
my $iter = $class->load_iter({
blog_id => $obj->blog_id,
created_on => ($next ? [ $ts, undef ] : [ undef, $ts ]),
%{$publish_only}
}, {
'sort' => 'created_on',
'direction' => $next ? 'ascend' : 'descend',
'range_incl' => { 'created_on' => 1 },
'limit' => 10,
});
# This selection should always succeed, but handle situation if
# it fails by returning undef.
return unless $iter;
# The 'same' array will hold any entries that have matching
# timestamps; we will then sort those by id to find the correct
# adjacent object.
my @same;
while (my $e = $iter->()) {
# Don't consider the object that is 'current'
next if $e->id == $id;
my $e_ts = $e->created_on;
if ($e_ts eq $ts) {
# An object with the same timestamp should only be
# considered if the id is in the scope we're looking for
# (greater than for the 'next' object; less than for
# the 'previous' object).
push @same, $e
if $next && $e->id > $id or !$next && $e->id < $id;
} else {
# We found an object with a timestamp different than
# the 'current' object.
if (!@same) {
push @same, $e;
# We should check to see if this new timestamped object also
# has entries adjacent to _it_ that have the same timestamp.
while (my $e = $iter->()) {
push(@same, $e), next if $e->created_on eq $e_ts;
$iter->end, last;
}
} else {
$iter->end;
}
return $obj->{$label} = $e unless @same;
last;
}
}
if (@same) {
# If we only have 1 element in @same, return that.
return $obj->{$label} = $same[0] if @same == 1;
# Sort remaining elements in @same by id.
@same = sort { $a->id <=> $b->id } @same;
# Return front of list (smallest id) if selecting 'next'
# object. Return tail of list (largest id) if selection 'previous'.
return $obj->{$label} = $same[$next ? 0 : $#same];
}
return;
}
sub junk {
my $ping = shift;
if (($ping->junk_status || 0) != JUNK) {
require MT::Util;
my @ts = MT::Util::offset_time_list(time, $ping->blog_id);
my $ts = sprintf("%04d%02d%02d%02d%02d%02d",
$ts[5]+1900, $ts[4]+1, @ts[3,2,1,0]);
$ping->last_moved_on($ts);
}
$ping->junk_status(JUNK);
$ping->visible(0);
}
sub moderate {
my $ping = shift;
$ping->visible(0);
}
sub approve {
my $ping = shift;
$ping->visible(1);
$ping->junk_status(NOT_JUNK);
}
sub all_text {
my $this = shift;
my $text = $this->column('blog_name') || '';
$text .= "\n" . ($this->column('title') || '');
$text .= "\n" . ($this->column('source_url') || '');
$text .= "\n" . ($this->column('excerpt') || '');
$text;
}
sub to_hash {
my $ping = shift;
my $hash = $ping->SUPER::to_hash(@_);
require MT::Sanitize;
$hash->{'tbping.excerpt_html'} = MT::Sanitize->sanitize($ping->excerpt || '');
$hash->{'tbping.created_on_iso'} = sub { MT::Util::ts2iso($ping->blog_id, $ping->created_on) };
$hash->{'tbping.modified_on_iso'} = sub { MT::Util::ts2iso($ping->blog_id, $ping->modified_on) };
if (my $parent = $ping->parent) {
my $parent_hash = $parent->to_hash;
$hash->{"tbping.$_"} = $parent_hash->{$_} foreach keys %$parent_hash;
}
$hash;
}
sub visible {
my $ping = shift;
return $ping->SUPER::visible unless @_;
## Note transitions in visibility in the object, so that
## other methods can act appropriately.
my $was_visible = $ping->SUPER::visible || 0;
my $is_visible = shift || 0;
my $vis_delta = 0;
if (!$was_visible && $is_visible) {
$vis_delta = 1;
} elsif ($was_visible && !$is_visible) {
$vis_delta = -1;
}
$ping->{__changed}{visibility} = $vis_delta;
return $ping->SUPER::visible($is_visible);
}
1;
__END__
=head1 NAME
MT::TBPing - Movable Type TrackBack Ping record
=head1 SYNOPSIS
use MT::TBPing;
my $ping = MT::TBPing->new;
$ping->blog_id($tb->blog_id);
$ping->tb_id($tb->id);
$ping->title('Foo');
$ping->excerpt('This is from a TrackBack ping.');
$ping->source_url('http://www.foo.com/bar');
$ping->save
or die $ping->errstr;
=head1 DESCRIPTION
An I<MT::TBPing> object represents a TrackBack ping in the Movable Type system.
It contains all of the metadata about the ping (title, excerpt, URL, etc).
=head1 USAGE
As a subclass of I<MT::Object>, I<MT::TBPing> inherits all of the
data-management and -storage methods from that class; thus you should look
at the I<MT::Object> documentation for details about creating a new object,
loading an existing object, saving an object, etc.
=head1 DATA ACCESS METHODS
The I<MT::TBPing> object holds the following pieces of data. These fields can
be accessed and set using the standard data access methods described in the
I<MT::Object> documentation.
=over 4
=item * id
The numeric ID of the ping.
=item * blog_id
The numeric ID of the blog in which the ping is found.
=item * tb_id
The numeric ID of the TrackBack record (I<MT::Trackback> object) to which
the ping was sent.
=item * title
The title of the ping item.
=item * ip
The IP address of the server that sent the ping.
=item * excerpt
The excerpt of the ping item.
=item * source_url
The URL of the item pointed to by the ping.
=item * blog_name
The name of the blog on which the original item was posted.
=item * created_on
The timestamp denoting when the ping record was created, in the format
C<YYYYMMDDHHMMSS>. Note that the timestamp has already been adjusted for the
selected timezone.
=item * modified_on
The timestamp denoting when the ping record was last modified, in the
format C<YYYYMMDDHHMMSS>. Note that the timestamp has already been adjusted
for the selected timezone.
=back
=head1 DATA LOOKUP
In addition to numeric ID lookup, you can look up or sort records by any
combination of the following fields. See the I<load> documentation in
I<MT::Object> for more information.
=over 4
=item * created_on
=item * tb_id
=item * blog_id
=item * ip
=back
=head1 AUTHOR & COPYRIGHTS
Please see the I<MT> manpage for author, copyright, and license information.
=cut
|