mourningdove/cgi-bin/DW/External/Site/DeadJournal.pm
2026-05-24 01:03:05 +00:00

77 lines
1.8 KiB
Perl

#!/usr/bin/perl
#
# DW::External::Site::DeadJournal
#
# Class to support the DeadJournal.com site.
#
# Authors:
# Mark Smith <mark@dreamwidth.org>
#
# Copyright (c) 2009 by Dreamwidth Studios, LLC.
#
# This program is free software; you may redistribute it and/or modify it under
# the same terms as Perl itself. For a copy of the license, please reference
# 'perldoc perlartistic' or 'perldoc perlgpl'.
#
package DW::External::Site::DeadJournal;
use strict;
use base 'DW::External::Site';
use Carp qw/ croak /;
# new does nothing for these classes
sub new { croak 'cannot build with new'; }
# returns 1/0 if we allow this domain
sub accepts {
my ( $class, $parts ) = @_;
# allows anything at deadjournal.com
return 0
unless $parts->[-1] eq 'com'
&& $parts->[-2] eq 'deadjournal';
return bless { hostname => 'deadjournal.com' }, $class;
}
# argument: DW::External::User
# returns info for the badge image (head icon) for this user
sub badge_image {
my ( $self, $u ) = @_;
croak 'need a DW::External::User'
unless $u && ref $u eq 'DW::External::User';
my $type = $self->journaltype($u) || 'P';
my $gif = {
P => [ '/external/dj-userinfo.gif', 17, 25 ],
C => [ '/external/dj-community.gif', 17, 17 ],
Y => [ '/external/dj-syndicated.gif', 17, 17 ]
};
my $img = $gif->{$type};
return {
url => $LJ::IMGPREFIX . $img->[0],
width => $img->[1],
height => $img->[2],
};
}
# argument: request hash
# returns: modified request hash
sub pre_crosspost_hook {
my ( $self, $req ) = @_;
# avoid "unknown metadata" error
delete $req->{props}->{useragent};
delete $req->{props}->{adult_content};
delete $req->{props}->{current_location};
return $req;
}
sub canonical_username {
return LJ::canonical_username( $_[1] );
}
1;