mourningdove/cgi-bin/DW/Controller/Misc.pm
2026-05-24 01:03:05 +00:00

232 lines
7.6 KiB
Perl

#!/usr/bin/perl
#
# DW::Controller::Misc
#
# This controller is for miscellaneous, tiny pages that don't have much in the
# way of actions. Things that aren't hard to do and can be done in 10-20 lines.
# If the page you want to create is bigger, please consider creating its own
# file to house it.
#
# Authors:
# Mark Smith <mark@dreamwidth.org>
# idonotlikepeas <peasbugs@gmail.com>
# Afuna <coder.dw@afunamatata.com>
# Jen Griffin <kareila@livejournal.com>
#
# Copyright (c) 2009-2023 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::Controller::Misc;
use strict;
use warnings;
use DW::Controller;
use DW::Routing;
use DW::Template;
use DW::FormErrors;
use LJ::BetaFeatures;
DW::Routing->register_string( '/misc/feedping', \&feedping_handler, app => 1 );
DW::Routing->register_string( '/misc/get_domain_session', \&domain_session_handler, app => 1 );
DW::Routing->register_string( '/misc/whereami', \&whereami_handler, app => 1 );
DW::Routing->register_string( '/guidelines', \&community_guidelines, user => 1 );
DW::Routing->register_string( "/random/index", \&random_personal_handler, app => 1 );
DW::Routing->register_string( "/community/random/index", \&random_community_handler, app => 1 );
DW::Routing->register_string( "/beta", \&beta_handler, app => 1 );
DW::Routing->register_string( "/site/index", \&sitemap_handler, app => 1 );
DW::Routing->register_static( '/index', 'index-free.tt', app => 1 );
DW::Routing->register_static( '/internal/404', 'error/404.tt', app => 1 );
DW::Routing->register_static( '/site/opensource', 'site/opensource.tt', app => 1 );
DW::Routing->register_static( '/doc/s2', 'doc/s2/index.tt', app => 1 );
sub beta_handler {
my ($opts) = @_;
my ( $ok, $rv ) = controller( form_auth => 1 );
return $rv unless $ok;
my $r = $rv->{r};
my $errors = DW::FormErrors->new;
if ( $r->did_post ) {
my $post = $r->post_args;
my $feature = $post->{feature};
$errors->add_string( 'feature', "No feature defined." ) unless $feature;
my $u = LJ::load_user( $post->{user} );
$errors->add_string( 'user', "Invalid user." ) unless $u;
unless ( $errors->exist ) {
if ( $post->{on} ) {
LJ::BetaFeatures->add_to_beta( $u => $feature );
}
else {
LJ::BetaFeatures->remove_from_beta( $u => $feature );
}
}
}
my $now = time();
my @current_features;
if ( keys %LJ::BETA_FEATURES ) {
my @all_features =
sort {
( $LJ::BETA_FEATURES{$b}->{start_time} <=> $LJ::BETA_FEATURES{$a}->{start_time} )
|| ( $b cmp $a )
}
keys %LJ::BETA_FEATURES;
foreach my $feature (@all_features) {
my $feature_handler = LJ::BetaFeatures->get_handler($feature);
push @current_features, $feature_handler
if $LJ::BETA_FEATURES{$feature}->{start_time} <= $now
&& $LJ::BETA_FEATURES{$feature}->{end_time} > $now
&& !$feature_handler->is_sitewide_beta;
}
}
my $vars = {
remote => $rv->{remote},
features => \@current_features,
news_journal => LJ::load_user($LJ::NEWS_JOURNAL),
replace_ljuser_tag => sub {
$_[0] =~ s/<\?ljuser (.+) ljuser\?>/LJ::ljuser($1)/mge;
return $_[0];
},
};
return DW::Template->render_template( 'beta.tt', $vars );
}
sub feedping_handler {
my ($opts) = @_;
my ( $ok, $rv ) = controller( anonymous => 1, form_auth => 0 );
return $rv unless $ok;
my $r = $rv->{r};
my $error_out = sub {
my ( $code, $message ) = @_;
$r->status($code);
$r->print($message);
return $r->OK;
};
my $out = sub {
my ($message) = @_;
$r->print($message);
return $r->OK;
};
return $out->(
"This is a REST-like interface for pinging $LJ::SITENAMESHORT feed crawler to re-fetch a syndication URL. Do a POST to this URL with a 'feed' parameter equal to the URL. Possible HTTP responses are 400 (bad request), 404 (we're not indexing that feed), or 204 (we'll get to it soon). (also permitted are multiple feed parameters, if you're not sure we're indexing your Atom vs RSS, etc. At most 3 are currently accepted.)"
) unless $r->did_post;
my $post = $r->post_args;
my $test_url = $post->{feed};
return $error_out->( $r->HTTP_BAD_REQUEST, "No 'feed' parameter with URL." )
unless $test_url;
my @feeds = $post->get_all("feed");
return $error_out->( $r->HTTP_BAD_REQUEST, "Too many 'feed' parameters." )
if @feeds > 3;
my $updated = 0;
my $dbh = LJ::get_db_writer();
foreach my $url (@feeds) {
$updated = 1
if $dbh->do( "UPDATE syndicated SET checknext=NOW(), failcount=0 WHERE synurl=?",
undef, $url ) > 0;
}
return $out->("Thanks! We'll get to it soon.")
if $updated;
return $error_out->( $r->NOT_FOUND, "Unknown feed(s)." );
}
sub domain_session_handler {
my ($opts) = @_;
my ( $ok, $rv ) = controller( anonymous => 1, form_auth => 0 );
return $rv unless $ok;
my $r = $rv->{r};
my $get = $r->get_args;
return $r->redirect( LJ::Session->helper_url( $get->{return} || "$LJ::SITEROOT/login" ) );
}
# handles the /misc/whereami page
sub whereami_handler {
my ( $ok, $rv ) = controller( authas => 1 );
return $rv unless $ok;
my $vars = {
%$rv,
cluster_name => $LJ::CLUSTER_NAME{ $rv->{u}->clusterid }
|| LJ::Lang::ml('/misc/whereami.tt.cluster.unknown'),
};
return DW::Template->render_template( 'misc/whereami.tt', $vars );
}
sub community_guidelines {
my ($opts) = @_;
my $r = DW::Request->get;
my $u = LJ::load_user( $opts->username );
return error_ml('error.invaliduser')
unless LJ::isu($u);
return error_ml('error.guidelines.notcomm')
unless $u->is_community;
my $guidelines_entry = $u->get_posting_guidelines_entry;
return error_ml( 'error.guidelines.none',
{ user => $u->ljuser_display, aopts => "href='" . $u->profile_url . "'" } )
unless $guidelines_entry;
return $r->redirect( $guidelines_entry->url );
}
sub random_community_handler {
return _random_handler( journaltype => "C" );
}
sub random_personal_handler {
return _random_handler( journaltype => "P" );
}
sub _random_handler {
my (%opts) = @_;
my $journaltype = $opts{journaltype};
my $r = DW::Request->get;
# repeat thrice just in case (may try a different cluster second time, or pull up a different set of users)
my $u;
foreach ( 1 ... 3 ) {
$u = LJ::User->load_random_user($journaltype);
return $r->redirect( $u->journal_base . "/" ) if $u;
}
# if we are unable to load a random journal / community, ask to try again
my $ml_string = $journaltype eq "C" ? "random.retry.community" : "random.retry.personal";
return error_ml( $ml_string, { aopts => "href='$LJ::SITEROOT" . $r->uri . "'" } );
}
sub sitemap_handler {
my $vars = {
shop_enabled => LJ::is_enabled('payments'),
merch_url => $LJ::MERCH_URL,
load_user => sub { LJ::load_user( $_[0] ) },
};
return DW::Template->render_template( 'site/index.tt', $vars );
}
1;