App-SD
view release on metacpan or search on metacpan
lib/App/SD/Replica/lighthouse/PullEncoder.pm view on Meta::CPAN
package App::SD::Replica::lighthouse::PullEncoder;
use Any::Moose;
extends 'App::SD::ForeignReplica::PullEncoder';
use Params::Validate qw(:all);
use Memoize;
use DateTime;
use Net::Lighthouse::User;
has sync_source => (
isa => 'App::SD::Replica::lighthouse',
is => 'rw',
);
my %PROP_MAP = %App::SD::Replica::lighthouse::PROP_MAP;
sub ticket_id {
my $self = shift;
return shift->number;
}
=head2 translate_ticket_state
=cut
sub translate_ticket_state {
my $self = shift;
my $ticket = shift;
return $ticket;
}
=head2 find_matching_tickets QUERY
Returns a array of all tickets found matching your QUERY hash.
=cut
sub find_matching_tickets {
my $self = shift;
my %args = (@_);
my $last_changeset_seen_dt = $self->_only_pull_tickets_modified_after()
|| DateTime->from_epoch( epoch => 0 );
my @tickets =
$self->sync_source->lighthouse->tickets( query => $args{query} );
my @updated = map { $_->load( $_->number ); $_ }
grep { $_->{updated_at} ge $last_changeset_seen_dt } @tickets;
return \@updated;
}
sub _only_pull_tickets_modified_after {
my $self = shift;
my $last_pull = $self->sync_source->upstream_last_modified_date();
return unless $last_pull;
my $before = App::SD::Util::string_to_datetime($last_pull);
$self->log_debug( "Failed to parse '" . $self->sync_source->upstream_last_modified_date() . "' as a timestamp. That means we have to sync ALL history") unless ($before);
return $before;
}
=head2 find_matching_transactions { ticket => $id, starting_transaction => $num }
Returns a reference to an array of all transactions (as hashes) on ticket $id after transaction $num.
=cut
sub find_matching_transactions {
my $self = shift;
my %args = validate( @_, { ticket => 1, starting_transaction => 1 } );
my $sequence = 0;
# hack, let's add sequence for comments
my @raw_versions =
map { $_->{sequence} = $sequence++; $_ } $args{ticket}->versions;
my @raw_attachments = $args{ticket}->attachments;
my @raw_txns = ( @raw_versions, @raw_attachments );
my @txns;
for my $txn ( @raw_txns ) {
my $txn_date = $txn->created_at->epoch;
# Skip things we know we've already pulled
next if $txn_date < ( $args{'starting_transaction'} || 0 );
# Skip things we've pushed
next
if (
$self->sync_source->foreign_transaction_originated_locally(
( defined $txn->{sequence} ? $txn->{sequence} : $txn->id ),
$args{'ticket'}->number
)
);
push @txns,
{
timestamp => $txn->created_at,
object => $txn,
serial => defined $txn->{sequence} ? $txn->{sequence} : $txn->id,
};
}
$self->sync_source->log_debug('Done looking at pulled txns');
return \@txns;
}
sub transcode_create_txn {
my $self = shift;
my $txn = shift;
my $ticket = $txn->{object};
( run in 1.069 second using v1.01-cache-2.11-cpan-39bf76dae61 )