mourningdove/cgi-bin/DW/External/Site/InsaneJournal.pm

77 lines
1.8 KiB
Perl
Raw Normal View History

2026-05-24 01:03:05 +00:00
#!/usr/bin/perl
#
# DW::External::Site::InsaneJournal
#
# Class to support the InsaneJournal.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::InsaneJournal;
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 insanejournal.com
return 0
unless $parts->[-1] eq 'com'
&& $parts->[-2] eq 'insanejournal';
return bless { hostname => 'insanejournal.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/ij-userinfo.gif', 21, 20 ],
C => [ '/external/ij-community.gif', 18, 13 ],
Y => [ '/external/lj-syndicated.gif', 16, 16 ],
};
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}->{adult_content};
return $req;
}
sub canonical_username {
return LJ::canonical_username( $_[1] );
}
1;