OSDN Git Service

Plugin::Stories: add storiees->latest helper
[newslash/newslash.git] / src / newslash_web / lib / Newslash / Web.pm
index 723b767..a497974 100644 (file)
@@ -1,24 +1,39 @@
 package Newslash::Web;
 use Mojo::Base 'Mojolicious';
 use Mojo::Util qw(dumper);
-
-use Newslash::Model;
+use List::Util qw(any);
 
 use constant CONFIG_FILE => '/etc/newslash/newslash.conf';
+has subcommand => "";
 
 # This method will run once at server start
 sub startup {
     my $app = shift;
 
+    if ($ARGV[0]) {
+        $app->subcommand($ARGV[0]);
+    }
+
+    # add commands in Newslash::Command
+    push @{$app->commands->namespaces}, 'Newslash::Command';
+
     # load config file
     # first, check existence of /etc/newslash.conf
     if ($app->mode eq 'production' && -e CONFIG_FILE) {
         $app->plugin('Newslash::Plugin::YAMLConfig', file => CONFIG_FILE);
     }
     else {
-        #$app->plugin('JSONConfig');
-        $app->plugin('Newslash::Plugin::YAMLConfig');
+       if ($app->subcommand eq "configdump") {
+           $app->plugin('Newslash::Plugin::YAMLConfig', default => {});
+       }
+       else {
+           $app->plugin('Newslash::Plugin::YAMLConfig');
+       }
     }
+
+    # load default configuration values
+    $app->plugin('Newslash::Plugin::DefaultConfig');
+
     # TODO: load/save configs with database
 
     if ($app->config->{Log} && $app->config->{Log}->{backtrace}) {
@@ -26,76 +41,100 @@ sub startup {
         Carp::Always->import;
     }
 
-    # set log file
+    # system log config
     if ($app->config->{Log} && $app->config->{Log}->{system_log}) {
-        # check log is writable
-        my $pathname = $app->config->{Log}->{system_log};
-        if (-e $pathname) {
-            if (-w $pathname) {
-                $app->log->debug("logs will be outputed to $pathname ...");
-                $app->log(Mojo::Log->new);
-                $app->log->path($pathname);
-            }
-            else {
-                $app->log->error("cannot write system log to file: $pathname");
-            }
-        }
-        else {
-            if (open(my $fh, ">", $pathname)) {
-                close($fh);
-                $app->log->debug("logs will be outputed to $pathname ...");
-                $app->log(Mojo::Log->new);
-                $app->log->path($pathname);
-            }
-            else {
-                $app->log->error("cannot create system log file: $pathname");
-            }
+       my $cnf = $app->config->{Log}->{system_log};
+
+       # set log level
+       if ($cnf->{level}) {
+           my $loglv = $cnf->{level};
+           if (grep { $loglv eq $_ } qw(debug info warn error fatal)) {
+               $app->log->level($loglv);
+           }
+           else {
+               $app->log->warn('invalid log level given in config file');
+           }
+       }
+
+       # file output settings
+       if ($cnf->{mode} eq "local_file") {
+           my $pathname = $cnf->{local_file};
+           # check log is writable
+           if (!$pathname) {
+               $app->log->error("cannot write system log to file: filename not given");
+           }
+           elsif (-e $pathname) {
+               if (-w $pathname) {
+                   $app->log->debug("logs will be outputed to $pathname ...");
+                   $app->log(Mojo::Log->new);
+                   $app->log->path($pathname);
+               }
+               else {
+                   $app->log->error("cannot write system log to file: $pathname");
+               }
+           }
+           else {
+               if (open(my $fh, ">", $pathname)) {
+                   close($fh);
+                   $app->log->debug("logs will be outputed to $pathname ...");
+                   $app->log(Mojo::Log->new);
+                   $app->log->path($pathname);
+               }
+               else {
+                   $app->log->error("cannot create system log file: $pathname");
+               }
+           }
         }
     }
 
-    # set log level
-    if ($app->config->{Log} && $app->config->{Log}->{level}) {
-        my $loglv = $app->config->{Log}->{level};
-        if (grep { $loglv eq $_ } qw(debug info warn error fatal)) {
-            $app->log->level($loglv);
-        }
-        else {
-            $app->log->warn('invalid log level given in config file');
+    # add static contents directories
+    if ($app->config->{System} && $app->config->{System}->{static_dir}) {
+        for my $dir (@{$app->config->{System}->{static_dir}}) {
+            push @{$app->static->paths}, $dir;
         }
     }
 
+    # secret key for hasing
+    $app->secrets([$app->config->{System}->{secret_key},]);
+
+    # when "test" mode, output debug logs.
+    $app->log->level('debug') if $app->mode eq 'test';
+
+    # check if 'maintenance' mode
+    my $maintenance_mode = 0;
+    if ($app->subcommand
+        && any { $app->subcommand eq $_ } qw[configdump configimport databaseinit
+                                             testdatainsert useradd usermod
+                                           ]) {
+       $maintenance_mode = 1;
+    }
+
     ############################################################
     #
     # Plugin Settings
     #
     ############################################################
 
-    # when "test" mode, output debug logs.
-    $app->log->level('debug') if $app->mode eq 'test';
-
-    # renderer helper
-    $app->plugin('Newslash::Plugin::RendererHelper');
-
-    # enable logging
-    $app->plugin('Newslash::Plugin::AccessLog::Debug', $app->config->{Log} || {});
-    $app->plugin('Newslash::Plugin::AccessLog::LocalFile', $app->config->{Log} || {});
+    # profiler settings
+    if ($app->mode eq 'development'
+        && $app->config->{Profiler}
+        && $app->config->{Profiler}->{enable}) {
+        if ($app->config->{Profiler}->{profiler} eq 'nytprof') {
+            $app->plugin('Mojolicious::Plugin::NYTProf', { nytprof => {} });
+        }
+    }
 
-    # secret key for hasing
-    $app->secrets([$app->config->{System}->{secret_key},]);
+    # enable access logging
+    $app->plugin('Newslash::Plugin::AccessLog');
 
     # Helpers for Newslash
     $app->plugin('Newslash::Plugin::NewslashHelpers');
 
-    # stash for plugins
-    #$app->config->{_Plugins} = {};
-
     # use Epoch
     $app->plugin('Newslash::Plugin::Epoch');
 
-    # use BasicAuth?
-    if ($app->config->{BasicAuth} && $app->config->{BasicAuth}->{enable}) {
-        $app->plugin('Newslash::Plugin::BasicAuth');
-    }
+    # support BasicAuth
+    $app->plugin('Newslash::Plugin::BasicAuth');
 
     # use TimeLimitedCache ($app->cache)
     $app->plugin('Newslash::Plugin::TimeLimitedCache');
@@ -104,37 +143,40 @@ sub startup {
     $app->plugin('Newslash::Plugin::KeyValueStore');
 
     # add Model Loader
-    my $model_opts = $app->config;
-    $model_opts->{Logger} = $app->log;
-    $app->helper(model => Newslash::Model::loader($model_opts));
-    Newslash::Model::startup($model_opts, $app);
+    $app->plugin('Newslash::Plugin::Model', { bypass_startup => $maintenance_mode });
 
-    # use Model Cache ($app->model_cache)
-    $app->plugin('Newslash::Plugin::ModelCache');
+    # use Easy Cache ($app->ezcache)
+    $app->plugin('Newslash::Plugin::EasyCache');
 
     # use Template::Toolkit 2 render
     $app->plugin('Newslash::Plugin::TT2Renderer');
 
-    # use ViewFunctions
-    $app->plugin('Newslash::Plugin::ViewFunctions');
+    # use ResponseFilter (Faculities)
+    $app->plugin('Newslash::Plugin::ResponseFilter');
 
     # use CustomBoxes
     $app->plugin('Newslash::Plugin::CustomBoxes');
 
-    # use Analytics helper
-    $app->plugin('Newslash::Plugin::GoogleAnalytics');
+    # use AntiCsrf
+    $app->plugin('Newslash::Plugin::AntiCsrf');
 
-    # user AntiCsrf ($app->anti_csrf)
-    if ($app->mode ne 'test') {
-        # when test mode, disable AntiCsrf.
-        $app->plugin('Newslash::Plugin::AntiCsrf');
+    # contents preprocessor
+    $app->plugin('Newslash::Plugin::Preprocessor');
+    if ($maintenance_mode) {
+        $app->log->info("bypassing preprocessor...");
+    }
+    else {
+       $app->preprocessor->generate_all;
     }
-
-    # quasi-static content
-    $app->plugin('Newslash::Plugin::QuasiStaticContent');
 
     # javascript loader
     $app->plugin('Newslash::Plugin::JavaScriptLoader');
+    if ($maintenance_mode) {
+        $app->log->info("bypassing javascriptloader...");
+    }
+    else {
+       $app->javascript_loader->load_all_bundles;
+    }
 
     # user authorization
     $app->plugin('Newslash::Plugin::UserAuth');
@@ -143,9 +185,7 @@ sub startup {
     $app->plugin('Newslash::Plugin::AccessControl');
 
     # ReCaptcha control
-    if ($app->mode ne 'test') {
-        $app->plugin('Newslash::Plugin::ReCaptcha');
-    }
+    $app->plugin('Newslash::Plugin::ReCaptcha');
 
     # set canocal (for test.srad.jp)
     $app->plugin('Newslash::Plugin::Canonical');
@@ -171,33 +211,17 @@ sub startup {
     # AD renderer
     $app->plugin('Newslash::Plugin::ADRenderer');
 
-    ############################################################
-    #
-    # Generate site-global used javascript file
-    #
-    ############################################################
-    my $templ_name = "common/siteconfig.js";
-    my $mod_reasons = $app->model('moderations')->reasons();
-    my $topics = $app->model('tags')->get_topics;
-    my @acl2_types = $app->model('users')->acl2_types;
-    my $keywords = {};
-    for my $topic (@$topics) {
-        my $lc_keyword = lc($topic->{keyword});
-        my $lc_textname = lc($topic->{textname});
-        $keywords->{$lc_keyword} = {keyword => $topic->{keyword},
-                                    textname => $topic->{textname},
-                                    image => $topic->{image}};
-        if ($lc_keyword ne $lc_textname) {
-            $keywords->{$lc_textname} = $keywords->{$lc_keyword};
-        }
-    }
-    my $vars = {
-                moderate_reasons => $mod_reasons,
-                topics => $keywords,
-                acl2_types => \@acl2_types,
-               };
-    my $siteconfig = $app->tt2renderer->render($templ_name, $vars);
-    $app->static_content->add_content("js/siteconfig.js", $siteconfig, "text/javascript; charset=utf-8");
+    # HTTP Compression
+    $app->plugin('Newslash::Plugin::HttpCompression');
+
+    # Users helper
+    $app->plugin('Newslash::Plugin::Users');
+
+    # Stories helper
+    $app->plugin('Newslash::Plugin::Stories');
+
+    # Sendmail helper
+    $app->plugin('Newslash::Plugin::Sendmail');
 
     ############################################################
     #
@@ -216,8 +240,8 @@ sub startup {
     $r->get('/submissions')->to('timeline#submissions');
     $r->get('/polls')->to('timeline#polls');
 
-    # siteconfig.js for global settings
-    $r->get('/siteconfig/:epoch/siteconfig.js')->to('site_config#site_config');
+    # RSS
+    $r->get('/rss/sradjp' => [format => ['rss', 'xml']])->to('rss#sradjp');
 
     # Banned page
     $r->get('/banned')->to('index#banned', noindex => 1);
@@ -227,10 +251,6 @@ sub startup {
     $r->post('/login')->to('login#login');
     $r->get('/logout')->to('login#logout');
 
-    # User Register
-    $r->get('/my/newuser')->to('login#newuser');
-    $r->post('/my/newuser')->to('login#newuser', captcha_check => 1);
-
     # story page
     $r->get('/story/:sid/' => [sid => qr|\d\d/\d\d/\d\d/\d+|])
       ->to('story#single');
@@ -274,11 +294,21 @@ sub startup {
     $r->get('/tag/')->to('tag#list_tags');
 
     # my page
-    $r->get('/my/settings')->to('user#settings', seclev => 1);
-    $r->get('/my/sidebar')->to('user#sidebar', seclev => 1);
+    $r->get('/my/settings')->to('my#settings', seclev => 1);
+    $r->get('/my/sidebar')->to('my#sidebar', seclev => 1);
     $r->get('/my/messages')->to('my#messages', seclev => 1);
     $r->get('/my/')->to('user#home', seclev => 1);
 
+    # User Register
+    $r->get('/my/newuser')->to('login#newuser');
+    $r->post('/my/newuser')->to('login#newuser', captcha_check => 1);
+    $r->get('/my/activation')->to('login#activation');
+    $r->get('/my/resetpassword')->to('login#reset_password');
+    $r->post('/my/resetpassword')->to('login#reset_password', captcha_check => 1);
+
+    # Change Email
+    $r->get('/my/change_email')->to('my#change_email', seclev => 1);
+
     # search page
     $r->get('/search')->to('search#search');
 
@@ -328,6 +358,10 @@ sub startup {
     my $api = $r->under('/api/v1');
     $api->post('/login')->to('API::Login#login');
 
+    $api->post('/newuser/validate')->to('API::User#validate_new_user');
+    $api->post('/newuser/create')->to('API::User#create_new_user');
+    $api->post('/newuser/password')->to('API::User#newuser_password');
+
     $api->get('/sidebar/item')->to('API::SidebarItem#get', seclev => 1);
 
     $api->get('/comment')->to('API::Comment#get');
@@ -372,7 +406,7 @@ sub startup {
     $user->get('/foes'         => [nickname => qr/~.*/])->to('user#foes');
     $user->get('/fans'         => [nickname => qr/~.*/])->to('user#fans');
     $user->get('/freaks'       => [nickname => qr/~.*/])->to('user#freaks');
-    #$user->get('/achievements' => [nickname => qr/~.*/])->to('user#achievements');
+    $user->get('/achievements' => [nickname => qr/~.*/])->to('user#achievements');
     #$r->get('/:user_name/journal' => [user_name => qr/~.*/])->to('journal#user_journals');
 
 }