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
|
# Movable Type (r) Open Source (C) 2001-2012 Six Apart, Ltd.
# This program is distributed under the terms of the
# GNU General Public License, version 2.
#
# $Id$
package MT::ArchiveType::Date;
use base qw( MT::ArchiveType );
sub group_based {
return 1;
}
sub dated_group_entries {
my $obj = shift;
my ( $ctx, $at, $ts, $limit ) = @_;
my $blog = $ctx->stash('blog');
my ( $start, $end );
if ($ts) {
( $start, $end ) = $obj->date_range($ts);
$ctx->{current_timestamp} = $start;
$ctx->{current_timestamp_end} = $end;
}
else {
$start = $ctx->{current_timestamp};
$end = $ctx->{current_timestamp_end};
}
require MT::Entry;
my @entries = MT::Entry->load(
{ blog_id => $blog->id,
status => MT::Entry::RELEASE(),
authored_on => [ $start, $end ]
},
{ range_incl => { authored_on => 1 },
'sort' => 'authored_on',
'direction' => 'descend',
( $limit ? ( 'limit' => $limit ) : () ),
}
) or return $ctx->error("Couldn't get $at archive list");
\@entries;
}
sub dated_category_entries {
my $obj = shift;
my ( $ctx, $at, $cat, $ts ) = @_;
my $blog = $ctx->stash('blog');
my ( $start, $end );
if ($ts) {
( $start, $end ) = $obj->date_range($ts);
}
else {
$start = $ctx->{current_timestamp};
$end = $ctx->{current_timestamp_end};
}
my @entries = MT::Entry->load(
{ blog_id => $blog->id,
status => MT::Entry::RELEASE(),
authored_on => [ $start, $end ]
},
{ range_incl => { authored_on => 1 },
'join' =>
[ 'MT::Placement', 'entry_id', { category_id => $cat->id } ],
'sort' => 'authored_on',
'direction' => 'descend',
}
) or return $ctx->error("Couldn't get $at archive list");
\@entries;
}
sub dated_author_entries {
my $obj = shift;
my ( $ctx, $at, $author, $ts ) = @_;
my $blog = $ctx->stash('blog');
my ( $start, $end );
if ($ts) {
( $start, $end ) = $obj->date_range($ts);
}
else {
$start = $ctx->{current_timestamp};
$end = $ctx->{current_timestamp_end};
}
my @entries = MT::Entry->load(
{ blog_id => $blog->id,
author_id => $author->id,
status => MT::Entry::RELEASE(),
authored_on => [ $start, $end ]
},
{ range_incl => { authored_on => 1 },
'sort' => 'authored_on',
'direction' => 'descend',
}
) or return $ctx->error("Couldn't get $at archive list");
\@entries;
}
sub get_entry {
my $archiver = shift;
my ( $ts, $blog_id, $order ) = @_;
my ( $start, $end ) = $archiver->date_range($ts);
if ( $order eq 'previous' ) {
$order = 'descend';
$ts = $start;
}
else {
$order = 'ascend';
$ts = $end;
}
my $entry = MT->model('entry')->load(
{ blog_id => $blog_id,
status => MT::Entry::RELEASE()
},
{ limit => 1,
'sort' => 'authored_on',
direction => $order,
start_val => $ts
}
);
$entry;
}
# get an entry in the next or previous archive for dated-based ArchiveType
sub next_archive_entry {
$_[0]->adjacent_archive_entry( { %{ $_[1] }, order => 'next' } );
}
sub previous_archive_entry {
$_[0]->adjacent_archive_entry( { %{ $_[1] }, order => 'previous' } );
}
sub adjacent_archive_entry {
my $obj = shift;
my ($param) = @_;
my $order = ( $param->{order} eq 'previous' ) ? 'descend' : 'ascend';
my $cat = $param->{category} if $obj->category_based;
my $author = $param->{author} if $obj->author_based;
my $ts = $param->{ts};
my $blog_id = $param->{blog_id}
|| ( $param->{blog} ? $param->{blog}->id : undef );
# if $param->{entry} given, override $ts and $blog_id.
if ( my $e = $param->{entry} ) {
$ts = $e->authored_on;
$blog_id = $e->blog_id;
}
my ( $start, $end ) = $obj->date_range($ts);
$ts = ( $order eq 'descend' ) ? $start : $end;
require MT::Entry;
require MT::Placement;
my $entry = MT::Entry->load(
{ status => MT::Entry::RELEASE(),
$blog_id ? ( blog_id => $blog_id ) : (),
$author ? ( author_id => $author->id ) : (),
},
{ limit => 1,
'sort' => 'authored_on',
direction => $order,
start_val => $ts,
$cat
? ( 'join' => [
'MT::Placement', 'entry_id',
{ category_id => $cat->id }
]
)
: (),
}
);
$entry;
}
1;
|