| 1 | package MT::CMS::Blog; |
|---|
| 2 | |
|---|
| 3 | use strict; |
|---|
| 4 | |
|---|
| 5 | sub edit { |
|---|
| 6 | my $cb = shift; |
|---|
| 7 | my ($app, $id, $obj, $param) = @_; |
|---|
| 8 | |
|---|
| 9 | my $q = $app->param; |
|---|
| 10 | my $cfg = $app->config; |
|---|
| 11 | my $blog = $app->blog; |
|---|
| 12 | my $blog_id = $id; |
|---|
| 13 | |
|---|
| 14 | if ($id) { |
|---|
| 15 | my $output = $param->{output} ||= 'cfg_prefs.tmpl'; |
|---|
| 16 | $param->{need_full_rebuild} = 1 if $q->param('need_full_rebuild'); |
|---|
| 17 | $param->{need_index_rebuild} = 1 if $q->param('need_index_rebuild'); |
|---|
| 18 | $param->{show_ip_info} = $cfg->ShowIPInformation; |
|---|
| 19 | $param->{use_plugins} = $cfg->UsePlugins; |
|---|
| 20 | |
|---|
| 21 | my $entries_on_index = ( $obj->entries_on_index || 0 ); |
|---|
| 22 | if ($entries_on_index) { |
|---|
| 23 | $param->{'list_on_index'} = $entries_on_index; |
|---|
| 24 | $param->{'posts'} = 1; |
|---|
| 25 | } |
|---|
| 26 | else { |
|---|
| 27 | $param->{'list_on_index'} = ( $obj->days_on_index || 0 ); |
|---|
| 28 | $param->{'days'} = 1; |
|---|
| 29 | } |
|---|
| 30 | my $lang = $obj->language || 'en'; |
|---|
| 31 | $lang = 'en' if lc($lang) eq 'en-us' || lc($lang) eq 'en_us'; |
|---|
| 32 | $lang = 'ja' if lc($lang) eq 'jp'; |
|---|
| 33 | $param->{ 'language_' . $lang } = 1; |
|---|
| 34 | |
|---|
| 35 | $param->{system_allow_comments} = $cfg->AllowComments; |
|---|
| 36 | $param->{system_allow_pings} = $cfg->AllowPings; |
|---|
| 37 | $param->{tk_available} = eval { require MIME::Base64; 1; } |
|---|
| 38 | && eval { require LWP::UserAgent; 1 }; |
|---|
| 39 | $param->{'auto_approve_commenters'} = |
|---|
| 40 | !$obj->manual_approve_commenters; |
|---|
| 41 | $param->{identity_system} = $app->config('IdentitySystem'); |
|---|
| 42 | $param->{handshake_return} = $app->base . $app->mt_uri; |
|---|
| 43 | $param->{"moderate_comments"} = $obj->moderate_unreg_comments; |
|---|
| 44 | $param->{ "moderate_comments_" |
|---|
| 45 | . ( $obj->moderate_unreg_comments || 0 ) } = 1; |
|---|
| 46 | $param->{ "moderate_pings_" . ( $obj->moderate_pings || 0 ) } = 1; |
|---|
| 47 | |
|---|
| 48 | my $cmtauth_reg = $app->registry('commenter_authenticators'); |
|---|
| 49 | foreach my $auth ( keys %$cmtauth_reg ) { |
|---|
| 50 | $cmtauth_reg->{$auth}->{disabled} = 1 |
|---|
| 51 | if exists( $cmtauth_reg->{$auth}->{condition} ) |
|---|
| 52 | && !( $cmtauth_reg->{$auth}->{condition}->() ); |
|---|
| 53 | } |
|---|
| 54 | if ( my $auths = $blog->commenter_authenticators ) { |
|---|
| 55 | foreach ( split ',', $auths ) { |
|---|
| 56 | if ( 'MovableType' eq $_ ) { |
|---|
| 57 | $param->{enabled_MovableType} = 1; |
|---|
| 58 | } |
|---|
| 59 | else { |
|---|
| 60 | $cmtauth_reg->{$_}->{enabled} = 1; |
|---|
| 61 | } |
|---|
| 62 | } |
|---|
| 63 | } |
|---|
| 64 | my @cmtauth_loop; |
|---|
| 65 | foreach ( keys %$cmtauth_reg ) { |
|---|
| 66 | $cmtauth_reg->{$_}->{key} = $_; |
|---|
| 67 | if ( |
|---|
| 68 | UNIVERSAL::isa( |
|---|
| 69 | $cmtauth_reg->{$_}->{plugin}, 'MT::Plugin' |
|---|
| 70 | ) |
|---|
| 71 | ) |
|---|
| 72 | { |
|---|
| 73 | push @cmtauth_loop, $cmtauth_reg->{$_}; |
|---|
| 74 | } |
|---|
| 75 | } |
|---|
| 76 | unshift @cmtauth_loop, $cmtauth_reg->{'TypeKey'} |
|---|
| 77 | if exists( $cmtauth_reg->{'TypeKey'} ) |
|---|
| 78 | && $blog->remote_auth_token; |
|---|
| 79 | unshift @cmtauth_loop, $cmtauth_reg->{'Vox'} |
|---|
| 80 | if exists $cmtauth_reg->{'Vox'}; |
|---|
| 81 | unshift @cmtauth_loop, $cmtauth_reg->{'LiveJournal'} |
|---|
| 82 | if exists $cmtauth_reg->{'LiveJournal'}; |
|---|
| 83 | unshift @cmtauth_loop, $cmtauth_reg->{'OpenID'} |
|---|
| 84 | if exists $cmtauth_reg->{'OpenID'}; |
|---|
| 85 | |
|---|
| 86 | $param->{cmtauth_loop} = \@cmtauth_loop; |
|---|
| 87 | |
|---|
| 88 | if ( $output eq 'cfg_prefs.tmpl' ) { |
|---|
| 89 | $app->add_breadcrumb( $app->translate('General Settings') ); |
|---|
| 90 | |
|---|
| 91 | my $lang = $obj->language || 'en'; |
|---|
| 92 | $lang = 'en' if lc($lang) eq 'en-us' || lc($lang) eq 'en_us'; |
|---|
| 93 | $lang = 'ja' if lc($lang) eq 'jp'; |
|---|
| 94 | $param->{ 'language_' . $lang } = 1; |
|---|
| 95 | |
|---|
| 96 | if ( $obj->cc_license ) { |
|---|
| 97 | $param->{cc_license_name} = |
|---|
| 98 | MT::Util::cc_name( $obj->cc_license ); |
|---|
| 99 | $param->{cc_license_image_url} = |
|---|
| 100 | MT::Util::cc_image( $obj->cc_license ); |
|---|
| 101 | $param->{cc_license_url} = |
|---|
| 102 | MT::Util::cc_url( $obj->cc_license ); |
|---|
| 103 | } |
|---|
| 104 | } |
|---|
| 105 | elsif ( $output eq 'cfg_entry.tmpl' ) { |
|---|
| 106 | ## load entry preferences for new/edit entry page of the blog |
|---|
| 107 | my $pref_param = $app->load_entry_prefs; |
|---|
| 108 | %$param = ( %$param, %$pref_param ); |
|---|
| 109 | $param->{ 'sort_order_posts_' |
|---|
| 110 | . ( $obj->sort_order_posts || 0 ) } = 1; |
|---|
| 111 | $param->{ 'status_default_' . $obj->status_default } = 1 |
|---|
| 112 | if $obj->status_default; |
|---|
| 113 | $param->{ 'allow_comments_default_' |
|---|
| 114 | . ( $obj->allow_comments_default || 0 ) } = 1; |
|---|
| 115 | $param->{system_allow_pings} = |
|---|
| 116 | $cfg->AllowPings && $blog->allow_pings; |
|---|
| 117 | $param->{system_allow_comments} = $cfg->AllowComments |
|---|
| 118 | && ( $blog->allow_reg_comments |
|---|
| 119 | || $blog->allow_unreg_comments ); |
|---|
| 120 | my $replace_fields = $blog->smart_replace_fields || ''; |
|---|
| 121 | my @replace_fields = split( /,/, $replace_fields ); |
|---|
| 122 | foreach my $fld (@replace_fields) { |
|---|
| 123 | $param->{ 'nwc_' . $fld } = 1; |
|---|
| 124 | } |
|---|
| 125 | $param->{ 'nwc_smart_replace_' . ( $blog->smart_replace || 0 ) } = 1; |
|---|
| 126 | $param->{ 'nwc_replace_none' } = ( $blog->smart_replace || 0 ) == 2; |
|---|
| 127 | } |
|---|
| 128 | elsif ( $output eq 'cfg_web_services.tmpl' ) { |
|---|
| 129 | $param->{system_disabled_notify_pings} = |
|---|
| 130 | $cfg->DisableNotificationPings; |
|---|
| 131 | $param->{system_allow_outbound_pings} = |
|---|
| 132 | $cfg->OutboundTrackbackLimit eq 'any'; |
|---|
| 133 | my %selected_pings = map { $_ => 1 } |
|---|
| 134 | split ',', ($obj->update_pings || ''); |
|---|
| 135 | my $pings = $app->registry('ping_servers'); |
|---|
| 136 | my @pings; |
|---|
| 137 | push @pings, |
|---|
| 138 | { |
|---|
| 139 | key => $_, |
|---|
| 140 | label => $pings->{$_}->{label}, |
|---|
| 141 | exists( $selected_pings{$_} ) ? ( selected => 1 ) : (), |
|---|
| 142 | } foreach keys %$pings; |
|---|
| 143 | $param->{pings_loop} = \@pings; |
|---|
| 144 | } |
|---|
| 145 | elsif ( $output eq 'cfg_comments.tmpl' ) { |
|---|
| 146 | $param->{email_new_comments_1} = |
|---|
| 147 | ( $obj->email_new_comments || 0 ) == 1; |
|---|
| 148 | $param->{email_new_comments_2} = |
|---|
| 149 | ( $obj->email_new_comments || 0 ) == 2; |
|---|
| 150 | $param->{nofollow_urls} = $obj->nofollow_urls; |
|---|
| 151 | $param->{follow_auth_links} = $obj->follow_auth_links; |
|---|
| 152 | $param->{ 'sort_order_comments_' |
|---|
| 153 | . ( $obj->sort_order_comments || 0 ) } = 1; |
|---|
| 154 | $param->{global_sanitize_spec} = $cfg->GlobalSanitizeSpec; |
|---|
| 155 | $param->{ 'sanitize_spec_' . ( $obj->sanitize_spec ? 1 : 0 ) } = |
|---|
| 156 | 1; |
|---|
| 157 | $param->{sanitize_spec_manual} = $obj->sanitize_spec |
|---|
| 158 | if $obj->sanitize_spec; |
|---|
| 159 | $param->{allow_comments} = $blog->allow_reg_comments |
|---|
| 160 | || $blog->allow_unreg_comments; |
|---|
| 161 | $param->{use_comment_confirmation} = |
|---|
| 162 | defined $blog->use_comment_confirmation |
|---|
| 163 | ? $blog->use_comment_confirmation |
|---|
| 164 | : 0; |
|---|
| 165 | $param->{system_allow_comments} = $cfg->AllowComments |
|---|
| 166 | && ( $blog->allow_reg_comments |
|---|
| 167 | || $blog->allow_unreg_comments ); |
|---|
| 168 | my @cps = MT->captcha_providers; |
|---|
| 169 | |
|---|
| 170 | foreach my $cp (@cps) { |
|---|
| 171 | if ( ( $blog->captcha_provider || '' ) eq $cp->{key} ) { |
|---|
| 172 | $cp->{selected} = 1; |
|---|
| 173 | } |
|---|
| 174 | } |
|---|
| 175 | $param->{captcha_loop} = \@cps; |
|---|
| 176 | } |
|---|
| 177 | elsif ( $output eq 'cfg_trackbacks.tmpl' ) { |
|---|
| 178 | $param->{email_new_pings_1} = ( $obj->email_new_pings || 0 ) == 1; |
|---|
| 179 | $param->{email_new_pings_2} = ( $obj->email_new_pings || 0 ) == 2; |
|---|
| 180 | $param->{nofollow_urls} = $obj->nofollow_urls; |
|---|
| 181 | $param->{system_allow_selected_pings} = |
|---|
| 182 | $cfg->OutboundTrackbackLimit eq 'selected'; |
|---|
| 183 | $param->{system_allow_outbound_pings} = |
|---|
| 184 | $cfg->OutboundTrackbackLimit eq 'any'; |
|---|
| 185 | $param->{system_allow_local_pings} = |
|---|
| 186 | ( $cfg->OutboundTrackbackLimit eq 'local' ) |
|---|
| 187 | || ( $cfg->OutboundTrackbackLimit eq 'any' ); |
|---|
| 188 | } |
|---|
| 189 | elsif ( $output eq 'cfg_registration.tmpl' ) { |
|---|
| 190 | $param->{commenter_authenticators} = |
|---|
| 191 | $obj->commenter_authenticators; |
|---|
| 192 | my $registration = $cfg->CommenterRegistration; |
|---|
| 193 | if ( $registration->{Allow} ) { |
|---|
| 194 | $param->{registration} = |
|---|
| 195 | $blog->allow_commenter_regist ? 1 : 0; |
|---|
| 196 | } |
|---|
| 197 | else { |
|---|
| 198 | $param->{system_disallow_registration} = 1; |
|---|
| 199 | } |
|---|
| 200 | $param->{allow_reg_comments} = $blog->allow_reg_comments; |
|---|
| 201 | $param->{allow_unreg_comments} = $blog->allow_unreg_comments; |
|---|
| 202 | $param->{require_typekey_emails} = $obj->require_typekey_emails; |
|---|
| 203 | } |
|---|
| 204 | elsif ( $output eq 'cfg_spam.tmpl' ) { |
|---|
| 205 | my $threshold = $obj->junk_score_threshold || 0; |
|---|
| 206 | $threshold = '+' . $threshold if $threshold > 0; |
|---|
| 207 | $param->{junk_score_threshold} = $threshold; |
|---|
| 208 | $param->{junk_folder_expiry} = $obj->junk_folder_expiry || 60; |
|---|
| 209 | $param->{auto_delete_junk} = $obj->junk_folder_expiry; |
|---|
| 210 | } |
|---|
| 211 | elsif ( $output eq 'cfg_archives.tmpl' ) { |
|---|
| 212 | $app->add_breadcrumb( $app->translate('Publishing Settings') ); |
|---|
| 213 | if ( $obj->column('archive_path') |
|---|
| 214 | || $obj->column('archive_url') ) |
|---|
| 215 | { |
|---|
| 216 | $param->{enable_archive_paths} = 1; |
|---|
| 217 | $param->{archive_path} = $obj->column('archive_path'); |
|---|
| 218 | $param->{archive_url} = $obj->column('archive_url'); |
|---|
| 219 | } |
|---|
| 220 | else { |
|---|
| 221 | $param->{archive_path} = ''; |
|---|
| 222 | $param->{archive_url} = ''; |
|---|
| 223 | } |
|---|
| 224 | $param->{ 'archive_type_preferred_' |
|---|
| 225 | . $blog->archive_type_preferred } = 1 |
|---|
| 226 | if $blog->archive_type_preferred; |
|---|
| 227 | my $at = $blog->archive_type; |
|---|
| 228 | if ( $at && $at ne 'None' ) { |
|---|
| 229 | my @at = split /,/, $at; |
|---|
| 230 | for my $at (@at) { |
|---|
| 231 | $param->{ 'archive_type_' . $at } = 1; |
|---|
| 232 | } |
|---|
| 233 | } |
|---|
| 234 | require MT::PublishOption; |
|---|
| 235 | if ( $app->model('template')->exist( |
|---|
| 236 | { blog_id => $blog->id, build_type => MT::PublishOption::DYNAMIC() }) |
|---|
| 237 | || $app->model('templatemap')->exist( |
|---|
| 238 | { blog_id => $blog->id, build_type => MT::PublishOption::DYNAMIC() }) ) |
|---|
| 239 | { |
|---|
| 240 | $param->{dynamic_enabled} = 1; |
|---|
| 241 | } |
|---|
| 242 | eval "require List::Util; require Scalar::Util;"; |
|---|
| 243 | unless ($@) { |
|---|
| 244 | $param->{can_use_publish_queue} = 1; |
|---|
| 245 | } |
|---|
| 246 | if ( $blog->publish_queue ) { |
|---|
| 247 | $param->{publish_queue} = 1; |
|---|
| 248 | } |
|---|
| 249 | if ( $blog->include_cache ) { |
|---|
| 250 | $param->{include_cache} = 1; |
|---|
| 251 | } |
|---|
| 252 | } |
|---|
| 253 | elsif ( $output eq 'cfg_plugin.tmpl' ) { |
|---|
| 254 | $app->add_breadcrumb( $app->translate('Plugin Settings') ); |
|---|
| 255 | $param->{blog_view} = 1; |
|---|
| 256 | require MT::CMS::Plugin; |
|---|
| 257 | MT::CMS::Plugin::build_plugin_table( $app, |
|---|
| 258 | param => $param, |
|---|
| 259 | scope => 'blog:' . $blog_id |
|---|
| 260 | ); |
|---|
| 261 | $param->{can_config} = 1; |
|---|
| 262 | } |
|---|
| 263 | else { |
|---|
| 264 | $app->add_breadcrumb( $app->translate('Settings') ); |
|---|
| 265 | } |
|---|
| 266 | ( my $offset = $obj->server_offset ) =~ s![-\.]!_!g; |
|---|
| 267 | $offset =~ s!_0+$!!; # fix syntax highlight ->! |
|---|
| 268 | $param->{ 'server_offset_' . $offset } = 1; |
|---|
| 269 | if ( $output eq 'cfg_comments.tmpl' ) { |
|---|
| 270 | ## Load text filters. |
|---|
| 271 | $param->{text_filters_comments} = |
|---|
| 272 | $app->load_text_filters( $obj->convert_paras_comments, |
|---|
| 273 | 'comment' ); |
|---|
| 274 | } |
|---|
| 275 | elsif ( $output eq 'cfg_entry.tmpl' ) { |
|---|
| 276 | ## Load text filters. |
|---|
| 277 | $param->{text_filters} = |
|---|
| 278 | $app->load_text_filters( $obj->convert_paras, 'entry' ); |
|---|
| 279 | } |
|---|
| 280 | $param->{nav_config} = 1; |
|---|
| 281 | $param->{error} = $app->errstr if $app->errstr; |
|---|
| 282 | } else { |
|---|
| 283 | $app->add_breadcrumb( $app->translate('New Blog') ); |
|---|
| 284 | ( my $tz = $cfg->DefaultTimezone ) =~ s![-\.]!_!g; |
|---|
| 285 | $tz =~ s!_00$!!; # fix syntax highlight ->! |
|---|
| 286 | $param->{ 'server_offset_' . $tz } = 1; |
|---|
| 287 | $param->{'can_edit_config'} = $app->user->can_create_blog; |
|---|
| 288 | $param->{'can_set_publish_paths'} = $app->user->can_create_blog; |
|---|
| 289 | |
|---|
| 290 | my $sets = $app->registry("template_sets"); |
|---|
| 291 | $sets->{$_}{key} = $_ for keys %$sets; |
|---|
| 292 | $sets->{'mt_blog'}{selected} = 1; |
|---|
| 293 | $sets = $app->filter_conditional_list([ values %$sets ]); |
|---|
| 294 | no warnings; |
|---|
| 295 | @$sets = sort { $a->{order} <=> $b->{order} } @$sets; |
|---|
| 296 | $param->{'template_set_loop'} = $sets; |
|---|
| 297 | $param->{'template_set_index'} = $#$sets; |
|---|
| 298 | } |
|---|
| 299 | |
|---|
| 300 | if ( !$param->{site_path} |
|---|
| 301 | && !( $param->{site_path} = $app->config('DefaultSiteRoot') ) ) |
|---|
| 302 | { |
|---|
| 303 | my $cwd = $app->document_root; |
|---|
| 304 | $cwd = File::Spec->catdir($cwd, 'BLOG-NAME'); # for including the end of directory separator |
|---|
| 305 | $cwd =~ s!BLOG-NAME\z!!; # canonpath() remove it |
|---|
| 306 | $cwd =~ s!([\\/])cgi(?:-bin)?([\\/].*)?$!$1!; |
|---|
| 307 | $cwd =~ s!([\\/])mt[\\/]?$!$1!i; |
|---|
| 308 | $param->{suggested_site_path} = $cwd; |
|---|
| 309 | } |
|---|
| 310 | if ( !$param->{id} ) { |
|---|
| 311 | if ( $param->{site_path} ) { |
|---|
| 312 | $param->{site_path} = |
|---|
| 313 | File::Spec->catdir( $param->{site_path}, 'BLOG-NAME' ); |
|---|
| 314 | } |
|---|
| 315 | else { |
|---|
| 316 | $param->{suggested_site_path} = |
|---|
| 317 | File::Spec->catdir( $param->{suggested_site_path}, |
|---|
| 318 | 'BLOG-NAME' ); |
|---|
| 319 | } |
|---|
| 320 | } |
|---|
| 321 | |
|---|
| 322 | # If not yet defined, set the site_url to the config default, if one exists. |
|---|
| 323 | $param->{site_url} ||= $app->config('DefaultSiteURL'); |
|---|
| 324 | if ( !$param->{site_url} ) { |
|---|
| 325 | $param->{suggested_site_url} = $app->base . '/'; |
|---|
| 326 | $param->{suggested_site_url} =~ s!/cgi(?:-bin)?(/.*)?$!/!; |
|---|
| 327 | $param->{suggested_site_url} =~ s!/mt/?$!/!i; |
|---|
| 328 | } |
|---|
| 329 | if ( !$param->{id} ) { |
|---|
| 330 | if ( $param->{site_url} ) { |
|---|
| 331 | $param->{site_url} .= '/' |
|---|
| 332 | unless $param->{site_url} =~ /\/$/; |
|---|
| 333 | $param->{site_url} .= 'BLOG-NAME/'; |
|---|
| 334 | } |
|---|
| 335 | else { |
|---|
| 336 | $param->{suggested_site_url} .= '/' |
|---|
| 337 | unless $param->{suggested_site_url} =~ /\/$/; |
|---|
| 338 | $param->{suggested_site_url} .= 'BLOG-NAME/'; |
|---|
| 339 | } |
|---|
| 340 | } |
|---|
| 341 | 1; |
|---|
| 342 | } |
|---|
| 343 | |
|---|
| 344 | sub list { |
|---|
| 345 | my $app = shift; |
|---|
| 346 | |
|---|
| 347 | $app->return_to_dashboard( redirect => 1 ) if $app->param('blog_id'); |
|---|
| 348 | |
|---|
| 349 | my $author = $app->user; |
|---|
| 350 | my $list_pref = $app->list_pref('blog'); |
|---|
| 351 | |
|---|
| 352 | my $limit = $list_pref->{rows}; |
|---|
| 353 | my $offset = $app->param('offset') || 0; |
|---|
| 354 | my $args = { offset => $offset, sort => 'name' }; |
|---|
| 355 | $args->{limit} = $limit + 1; |
|---|
| 356 | unless ( $author->is_superuser ) { |
|---|
| 357 | $args->{join} = MT::Permission->join_on( |
|---|
| 358 | 'blog_id', |
|---|
| 359 | { author_id => $author->id }, |
|---|
| 360 | { unique => 1 } |
|---|
| 361 | ); |
|---|
| 362 | } |
|---|
| 363 | my $blog_class = $app->model('blog'); |
|---|
| 364 | my %param = %$list_pref; |
|---|
| 365 | my @blogs = $blog_class->load( undef, $args ); |
|---|
| 366 | my $can_edit_authors = $author->is_superuser; |
|---|
| 367 | my $blog_loop = make_blog_list( $app, \@blogs ); |
|---|
| 368 | |
|---|
| 369 | if ($blog_loop) { |
|---|
| 370 | ## We tried to load $limit + 1 entries above; if we actually got |
|---|
| 371 | ## $limit + 1 back, we know we have another page of entries. |
|---|
| 372 | my $have_next = @$blog_loop > $limit; |
|---|
| 373 | pop @$blog_loop while @$blog_loop > $limit; |
|---|
| 374 | if ($offset) { |
|---|
| 375 | $param{prev_offset} = 1; |
|---|
| 376 | $param{prev_offset_val} = $offset - $limit; |
|---|
| 377 | $param{prev_offset_val} = 0 if $param{prev_offset_val} < 0; |
|---|
| 378 | } |
|---|
| 379 | if ($have_next) { |
|---|
| 380 | $param{next_offset} = 1; |
|---|
| 381 | $param{next_offset_val} = $offset + $limit; |
|---|
| 382 | } |
|---|
| 383 | } |
|---|
| 384 | $param{offset} = $offset; |
|---|
| 385 | $param{object_type} = 'blog'; |
|---|
| 386 | $param{list_start} = $offset + 1; |
|---|
| 387 | delete $args->{limit}; |
|---|
| 388 | delete $args->{offset}; |
|---|
| 389 | $param{list_total} = $blog_class->count( undef, $args ); |
|---|
| 390 | $param{list_end} = $offset + ( $blog_loop ? scalar @$blog_loop : 0 ); |
|---|
| 391 | $param{next_max} = $param{list_total} - $limit; |
|---|
| 392 | $param{next_max} = 0 if ( $param{next_max} || 0 ) < $offset + 1; |
|---|
| 393 | $param{can_create_blog} = $author->can_create_blog; |
|---|
| 394 | $param{saved_deleted} = $app->param('saved_deleted'); |
|---|
| 395 | $param{refreshed} = $app->param('refreshed'); |
|---|
| 396 | $param{nav_blogs} = 1; |
|---|
| 397 | $param{list_noncron} = 1; |
|---|
| 398 | $param{search_label} = $app->translate('Blogs'); |
|---|
| 399 | |
|---|
| 400 | if ($blog_loop) { |
|---|
| 401 | $param{object_loop} = $param{blog_table}[0]{object_loop} = $blog_loop; |
|---|
| 402 | $app->load_list_actions( 'blog', \%param ); |
|---|
| 403 | } |
|---|
| 404 | |
|---|
| 405 | $param{page_actions} = $app->page_actions('list_blog'); |
|---|
| 406 | $param{feed_name} = $app->translate("Blog Activity Feed"); |
|---|
| 407 | $param{feed_url} = $app->make_feed_link('blog'); |
|---|
| 408 | $app->add_breadcrumb( $app->translate("Blogs") ); |
|---|
| 409 | $param{nav_weblogs} = 1; |
|---|
| 410 | $param{object_label} = $blog_class->class_label; |
|---|
| 411 | $param{object_label_plural} = $blog_class->class_label_plural; |
|---|
| 412 | $param{screen_class} = "list-blog"; |
|---|
| 413 | $param{screen_id} = "list-blog"; |
|---|
| 414 | $param{listing_screen} = 1; |
|---|
| 415 | return $app->load_tmpl( 'list_blog.tmpl', \%param ); |
|---|
| 416 | } |
|---|
| 417 | |
|---|
| 418 | sub cfg_archives { |
|---|
| 419 | my $app = shift; |
|---|
| 420 | my %param; |
|---|
| 421 | %param = %{ $_[0] } if $_[0]; |
|---|
| 422 | my $q = $app->param; |
|---|
| 423 | |
|---|
| 424 | my $blog_id = $q->param('blog_id'); |
|---|
| 425 | |
|---|
| 426 | return $app->return_to_dashboard( redirect => 1 ) unless $blog_id; |
|---|
| 427 | |
|---|
| 428 | my $blog = $app->model('blog')->load($blog_id) |
|---|
| 429 | or return $app->error($app->translate('Can\'t load blog #[_1].', $blog_id)); |
|---|
| 430 | my @data; |
|---|
| 431 | for my $at ( split /\s*,\s*/, $blog->archive_type ) { |
|---|
| 432 | my $archiver = $app->publisher->archiver($at); |
|---|
| 433 | next unless $archiver; |
|---|
| 434 | next if 'entry' ne $archiver->entry_class; |
|---|
| 435 | my $archive_label = $archiver->archive_label; |
|---|
| 436 | $archive_label = $at unless $archive_label; |
|---|
| 437 | $archive_label = $archive_label->() if ( ref $archive_label ) eq 'CODE'; |
|---|
| 438 | push @data, |
|---|
| 439 | { |
|---|
| 440 | archive_type_translated => $archive_label, |
|---|
| 441 | archive_type => $at, |
|---|
| 442 | archive_type_is_preferred => |
|---|
| 443 | ( $blog->archive_type_preferred eq $at ? 1 : 0 ), |
|---|
| 444 | }; |
|---|
| 445 | } |
|---|
| 446 | @data = sort { MT::App::CMS::archive_type_sorter( $a, $b ) } @data; |
|---|
| 447 | $param{entry_archive_types} = \@data; |
|---|
| 448 | $param{saved_deleted} = 1 if $q->param('saved_deleted'); |
|---|
| 449 | $param{saved_added} = 1 if $q->param('saved_added'); |
|---|
| 450 | $param{archives_changed} = 1 if $q->param('archives_changed'); |
|---|
| 451 | $param{no_writedir} = $q->param('no_writedir'); |
|---|
| 452 | $param{no_cachedir} = $q->param('no_cachedir'); |
|---|
| 453 | $param{no_writecache} = $q->param('no_writecache'); |
|---|
| 454 | $param{include_system} = $blog->include_system || ''; |
|---|
| 455 | |
|---|
| 456 | if ( $app->config->ObjectDriver =~ qr/(db[id]::)?sqlite/i ) { |
|---|
| 457 | $param{hide_build_option} = 1 |
|---|
| 458 | unless $app->config->UseSQLite2; |
|---|
| 459 | } |
|---|
| 460 | my $mtview_path = File::Spec->catfile( $blog->site_path(), "mtview.php" ); |
|---|
| 461 | |
|---|
| 462 | if ( -f $mtview_path ) { |
|---|
| 463 | open my ($fh), $mtview_path; |
|---|
| 464 | while ( my $line = <$fh> ) { |
|---|
| 465 | $param{dynamic_caching} = 1 |
|---|
| 466 | if $line =~ m/^\s*\$mt->caching\s*=\s*true;/i; |
|---|
| 467 | $param{dynamic_conditional} = 1 |
|---|
| 468 | if $line =~ /^\s*\$mt->conditional\s*=\s*true;/i; |
|---|
| 469 | } |
|---|
| 470 | close $fh; |
|---|
| 471 | } |
|---|
| 472 | $param{output} = 'cfg_archives.tmpl'; |
|---|
| 473 | $q->param( '_type', 'blog' ); |
|---|
| 474 | $q->param( 'id', $blog_id ); |
|---|
| 475 | $param{screen_class} = "settings-screen archive-settings"; |
|---|
| 476 | $param{object_type} = 'author'; |
|---|
| 477 | $param{search_label} = $app->translate('Users'); |
|---|
| 478 | $app->forward( "view", \%param ); |
|---|
| 479 | } |
|---|
| 480 | |
|---|
| 481 | sub cfg_prefs { |
|---|
| 482 | my $app = shift; |
|---|
| 483 | my $q = $app->param; |
|---|
| 484 | my $blog_id = scalar $q->param('blog_id'); |
|---|
| 485 | return $app->return_to_dashboard( redirect => 1 ) |
|---|
| 486 | unless $blog_id; |
|---|
| 487 | $q->param( '_type', 'blog' ); |
|---|
| 488 | $q->param( 'id', $blog_id ); |
|---|
| 489 | my $blog_prefs = $app->user_blog_prefs; |
|---|
| 490 | my $perms = $app->permissions; |
|---|
| 491 | return $app->error( $app->translate('Permission denied.') ) |
|---|
| 492 | unless $app->user->is_superuser() |
|---|
| 493 | || ( |
|---|
| 494 | $perms |
|---|
| 495 | && ( $perms->can_edit_config |
|---|
| 496 | || $perms->can_administer_blog |
|---|
| 497 | || $perms->can_set_publish_paths ) |
|---|
| 498 | ); |
|---|
| 499 | my $output = 'cfg_prefs.tmpl'; |
|---|
| 500 | $app->forward("view", |
|---|
| 501 | { |
|---|
| 502 | output => $output, |
|---|
| 503 | screen_class => 'settings-screen general-screen' |
|---|
| 504 | } |
|---|
| 505 | ); |
|---|
| 506 | } |
|---|
| 507 | |
|---|
| 508 | sub cfg_web_services { |
|---|
| 509 | my $app = shift; |
|---|
| 510 | my $q = $app->param; |
|---|
| 511 | my $blog_id = scalar $q->param('blog_id'); |
|---|
| 512 | return $app->return_to_dashboard( redirect => 1 ) |
|---|
| 513 | unless $blog_id; |
|---|
| 514 | $q->param( '_type', 'blog' ); |
|---|
| 515 | $q->param( 'id', scalar $q->param('blog_id') ); |
|---|
| 516 | $app->forward( "view", |
|---|
| 517 | { |
|---|
| 518 | output => 'cfg_web_services.tmpl', |
|---|
| 519 | screen_class => 'settings-screen web-services-settings' |
|---|
| 520 | } |
|---|
| 521 | ); |
|---|
| 522 | } |
|---|
| 523 | |
|---|
| 524 | sub rebuild_phase { |
|---|
| 525 | my $app = shift; |
|---|
| 526 | my $type = $app->param('_type') || 'entry'; |
|---|
| 527 | my @ids = $app->param('id'); |
|---|
| 528 | $app->{goback} = "window.location='" . $app->return_uri . "'"; |
|---|
| 529 | $app->{value} ||= $app->translate('Go Back'); |
|---|
| 530 | if ( $type eq 'entry' ) { |
|---|
| 531 | my %ids = map { $_ => 1 } @ids; |
|---|
| 532 | return $app->rebuild_these( \%ids ); |
|---|
| 533 | } |
|---|
| 534 | elsif ( $type eq 'template' ) { |
|---|
| 535 | require MT::Template; |
|---|
| 536 | foreach (@ids) { |
|---|
| 537 | my $template = MT::Template->load($_); |
|---|
| 538 | $app->rebuild_indexes( |
|---|
| 539 | Template => $template, |
|---|
| 540 | Force => 1 |
|---|
| 541 | ) or return; |
|---|
| 542 | } |
|---|
| 543 | } |
|---|
| 544 | $app->run_callbacks('post_build'); |
|---|
| 545 | $app->call_return; |
|---|
| 546 | } |
|---|
| 547 | |
|---|
| 548 | sub rebuild_pages { |
|---|
| 549 | my $app = shift; |
|---|
| 550 | my $perms = $app->permissions |
|---|
| 551 | or return $app->error( $app->translate("No permissions") ); |
|---|
| 552 | require MT::Entry; |
|---|
| 553 | require MT::Blog; |
|---|
| 554 | my $q = $app->param; |
|---|
| 555 | my $start_time = $q->param('start_time'); |
|---|
| 556 | |
|---|
| 557 | if ( ! $start_time ) { |
|---|
| 558 | # start of build; invoke callback |
|---|
| 559 | $app->run_callbacks('pre_build'); |
|---|
| 560 | $start_time = time; |
|---|
| 561 | } |
|---|
| 562 | |
|---|
| 563 | my $blog_id = int($q->param('blog_id')); |
|---|
| 564 | return $app->errtrans("Invalid request.") unless $blog_id; |
|---|
| 565 | |
|---|
| 566 | my $blog = MT::Blog->load($blog_id) |
|---|
| 567 | or return $app->error($app->translate('Can\'t load blog #[_1].', $blog_id)); |
|---|
| 568 | my $order = $q->param('type'); |
|---|
| 569 | my @order = split /,/, $order; |
|---|
| 570 | my $next = $q->param('next'); |
|---|
| 571 | my $done = 0; |
|---|
| 572 | my $type = $order[$next]; |
|---|
| 573 | |
|---|
| 574 | my $pub = $app->publisher; |
|---|
| 575 | $pub->start_time( $start_time ); # force start time to parameter start_time |
|---|
| 576 | |
|---|
| 577 | my $archiver = $pub->archiver($type); |
|---|
| 578 | my $archive_label = $archiver ? $archiver->archive_label : ''; |
|---|
| 579 | |
|---|
| 580 | $archive_label = $app->translate($type) unless $archive_label; |
|---|
| 581 | $archive_label = $archive_label->() if ( ref $archive_label ) eq 'CODE'; |
|---|
| 582 | $next++; |
|---|
| 583 | $done++ if $next >= @order; |
|---|
| 584 | my $offset = 0; |
|---|
| 585 | my ($total) = $q->param('total'); |
|---|
| 586 | |
|---|
| 587 | my $with_indexes = $q->param('with_indexes'); |
|---|
| 588 | my $no_static = $q->param('no_static'); |
|---|
| 589 | my $template_id = $q->param('template_id'); |
|---|
| 590 | |
|---|
| 591 | my ($tmpl_saved); |
|---|
| 592 | |
|---|
| 593 | # Make sure errors go to a sensible place when in fs mode |
|---|
| 594 | # TODO: create contin. earlier, pass it thru |
|---|
| 595 | if ( $app->param('fs') ) { |
|---|
| 596 | my ( $type, $obj_id ) = $app->param('type') =~ m/(entry|index)-(\d+)/; |
|---|
| 597 | if ( $type && $obj_id ) { |
|---|
| 598 | my $edit_type = $type; |
|---|
| 599 | $edit_type = 'template' if $type eq 'index'; |
|---|
| 600 | if ($type eq 'entry') { |
|---|
| 601 | require MT::Entry; |
|---|
| 602 | my $entry = MT::Entry->load($obj_id); |
|---|
| 603 | $edit_type = $entry ? $entry->class : 'entry'; |
|---|
| 604 | } |
|---|
| 605 | $app->{goback} = |
|---|
| 606 | "window.location='" |
|---|
| 607 | . $app->object_edit_uri( $edit_type, $obj_id ) . "'"; |
|---|
| 608 | $app->{value} ||= $app->translate('Go Back'); |
|---|
| 609 | } |
|---|
| 610 | } |
|---|
| 611 | |
|---|
| 612 | if ( $type eq 'all' ) { |
|---|
| 613 | return $app->error( $app->translate("Permission denied.") ) |
|---|
| 614 | unless $perms->can_rebuild; |
|---|
| 615 | |
|---|
| 616 | # FIXME: Rebuild the entire blog???? |
|---|
| 617 | $app->rebuild( BlogID => $blog_id ) |
|---|
| 618 | or return $app->publish_error(); |
|---|
| 619 | } |
|---|
| 620 | elsif ( $type eq 'index' ) { |
|---|
| 621 | return $app->error( $app->translate("Permission denied.") ) |
|---|
| 622 | unless $perms->can_rebuild; |
|---|
| 623 | $app->rebuild_indexes( BlogID => $blog_id ) |
|---|
| 624 | or return $app->publish_error(); |
|---|
| 625 | } |
|---|
| 626 | elsif ( $type =~ /^index-(\d+)$/ ) { |
|---|
| 627 | return $app->error( $app->translate("Permission denied.") ) |
|---|
| 628 | unless $perms->can_rebuild; |
|---|
| 629 | my $tmpl_id = $1; |
|---|
| 630 | require MT::Template; |
|---|
| 631 | $tmpl_saved = MT::Template->load($tmpl_id); |
|---|
| 632 | $app->rebuild_indexes( |
|---|
| 633 | BlogID => $blog_id, |
|---|
| 634 | Template => $tmpl_saved, |
|---|
| 635 | Force => 1 |
|---|
| 636 | ) or return $app->publish_error(); |
|---|
| 637 | $order = "index template '". $tmpl_saved->name . "'"; |
|---|
| 638 | } |
|---|
| 639 | elsif ( $type =~ /^entry-(\d+)$/ ) { |
|---|
| 640 | my $entry_id = $1; |
|---|
| 641 | require MT::Entry; |
|---|
| 642 | my $entry = MT::Entry->load($entry_id); |
|---|
| 643 | return $app->error( $app->translate("Permission denied.") ) |
|---|
| 644 | unless $perms->can_edit_entry( $entry, $app->user ); |
|---|
| 645 | $app->rebuild_entry( |
|---|
| 646 | Entry => $entry, |
|---|
| 647 | BuildDependencies => 1, |
|---|
| 648 | OldPrevious => $q->param('old_previous'), |
|---|
| 649 | OldNext => $q->param('old_next') |
|---|
| 650 | ) or return $app->publish_error(); |
|---|
| 651 | $order = "entry '" . $entry->title . "'"; |
|---|
| 652 | } |
|---|
| 653 | elsif ( $archiver->category_based ) { |
|---|
| 654 | return $app->error( $app->translate("Permission denied.") ) |
|---|
| 655 | unless $perms->can_rebuild; |
|---|
| 656 | $offset = $q->param('offset') || 0; |
|---|
| 657 | my $start = time; |
|---|
| 658 | my $count = 0; |
|---|
| 659 | my $cb = sub { |
|---|
| 660 | $count++; |
|---|
| 661 | return time - $start > 20 ? 0 : 1; |
|---|
| 662 | }; |
|---|
| 663 | if ( $offset < $total ) { |
|---|
| 664 | $app->rebuild( |
|---|
| 665 | BlogID => $blog_id, |
|---|
| 666 | ArchiveType => $type, |
|---|
| 667 | NoIndexes => 1, |
|---|
| 668 | Offset => $offset, |
|---|
| 669 | Limit => $app->config->EntriesPerRebuild, |
|---|
| 670 | FilterCallback => $cb, |
|---|
| 671 | ) or return $app->publish_error(); |
|---|
| 672 | $offset += $count; |
|---|
| 673 | } |
|---|
| 674 | if ( $offset < $total ) { |
|---|
| 675 | $done-- if $done; |
|---|
| 676 | $next--; |
|---|
| 677 | } |
|---|
| 678 | else { |
|---|
| 679 | $offset = 0; |
|---|
| 680 | } |
|---|
| 681 | } |
|---|
| 682 | elsif ($type) { |
|---|
| 683 | my $special = 0; |
|---|
| 684 | my @options = $app->{rebuild_options} ||= {}; |
|---|
| 685 | $app->run_callbacks( 'rebuild_options', $app, \@options ); |
|---|
| 686 | for my $optn (@options) { |
|---|
| 687 | if ( ( $optn->{key} || '' ) eq $type ) { |
|---|
| 688 | $optn->{code}->(); |
|---|
| 689 | $special = 1; |
|---|
| 690 | } |
|---|
| 691 | } |
|---|
| 692 | if ( !$special ) { |
|---|
| 693 | return $app->error( $app->translate("Permission denied.") ) |
|---|
| 694 | unless $perms->can_rebuild; |
|---|
| 695 | $offset = $q->param('offset') || 0; |
|---|
| 696 | if ( $offset < $total ) { |
|---|
| 697 | my $start = time; |
|---|
| 698 | my $count = 0; |
|---|
| 699 | my $cb = sub { |
|---|
| 700 | $count++; |
|---|
| 701 | return time - $start > 20 ? 0 : 1; |
|---|
| 702 | }; |
|---|
| 703 | $app->rebuild( |
|---|
| 704 | BlogID => $blog_id, |
|---|
| 705 | ArchiveType => $type, |
|---|
| 706 | !$with_indexes ? ( NoIndexes => 1 ) : (), |
|---|
| 707 | Offset => $offset, |
|---|
| 708 | Limit => $app->config->EntriesPerRebuild, |
|---|
| 709 | FilterCallback => $cb, |
|---|
| 710 | $no_static ? ( NoStatic => 1 ) : (), |
|---|
| 711 | $template_id ? ( TemplateID => $template_id ) : (), |
|---|
| 712 | ) or return $app->publish_error(); |
|---|
| 713 | $offset += $count; |
|---|
| 714 | } |
|---|
| 715 | if ( $offset < $total ) { |
|---|
| 716 | $done-- if $done; |
|---|
| 717 | $next--; |
|---|
| 718 | } |
|---|
| 719 | else { |
|---|
| 720 | $offset = 0; |
|---|
| 721 | } |
|---|
| 722 | } |
|---|
| 723 | } |
|---|
| 724 | |
|---|
| 725 | # Rebuild done--now form the continuation. |
|---|
| 726 | unless ($done) { |
|---|
| 727 | my $dynamic = 0; |
|---|
| 728 | my $type_name = $order[$next]; |
|---|
| 729 | |
|---|
| 730 | ## If we're moving on to the next rebuild step, recalculate the |
|---|
| 731 | ## limit. |
|---|
| 732 | my $static_count; |
|---|
| 733 | if ( $type_name !~ m/^index/ ) { |
|---|
| 734 | $static_count = $blog->count_static_templates($type_name) || 0; |
|---|
| 735 | } |
|---|
| 736 | else { |
|---|
| 737 | $static_count = 1; |
|---|
| 738 | } |
|---|
| 739 | if ( !$static_count ) { |
|---|
| 740 | $dynamic = 1; |
|---|
| 741 | } |
|---|
| 742 | elsif ( defined($offset) && $offset == 0 ) { |
|---|
| 743 | $dynamic = 0; |
|---|
| 744 | } |
|---|
| 745 | if ( $offset == 0 ) { |
|---|
| 746 | |
|---|
| 747 | # determine total |
|---|
| 748 | if ( my $archiver = $app->publisher->archiver($type_name) ) { |
|---|
| 749 | if ( $archiver->entry_based || $archiver->date_based ) { |
|---|
| 750 | my $entry_class = $archiver->entry_class || 'entry'; |
|---|
| 751 | require MT::Entry; |
|---|
| 752 | my $terms = { |
|---|
| 753 | class => $entry_class, |
|---|
| 754 | status => MT::Entry::RELEASE(), |
|---|
| 755 | blog_id => $blog_id, |
|---|
| 756 | }; |
|---|
| 757 | $total = MT::Entry->count($terms); |
|---|
| 758 | } |
|---|
| 759 | elsif ( $archiver->category_based ) { |
|---|
| 760 | require MT::Category; |
|---|
| 761 | my $terms = { blog_id => $blog_id, }; |
|---|
| 762 | $total = MT::Category->count($terms); |
|---|
| 763 | } |
|---|
| 764 | elsif ( $archiver->author_based ) { |
|---|
| 765 | require MT::Author; |
|---|
| 766 | require MT::Entry; |
|---|
| 767 | my $terms = { |
|---|
| 768 | blog_id => $blog_id, |
|---|
| 769 | status => MT::Entry::RELEASE(), |
|---|
| 770 | class => 'entry', |
|---|
| 771 | }; |
|---|
| 772 | $total = MT::Author->count( |
|---|
| 773 | undef, |
|---|
| 774 | { |
|---|
| 775 | join => MT::Entry->join_on( 'author_id', $terms, { unique => 1 } ), |
|---|
| 776 | unique => 1, |
|---|
| 777 | } |
|---|
| 778 | ); |
|---|
| 779 | } |
|---|
| 780 | } |
|---|
| 781 | } |
|---|
| 782 | |
|---|
| 783 | my $type = $order[$next]; |
|---|
| 784 | if ($type) { |
|---|
| 785 | $archiver = $app->publisher->archiver($type); |
|---|
| 786 | $archive_label = $archiver ? $archiver->archive_label : ''; |
|---|
| 787 | $archive_label = $app->translate($type) unless $archive_label; |
|---|
| 788 | $archive_label = $archive_label->() |
|---|
| 789 | if ( ref $archive_label ) eq 'CODE'; |
|---|
| 790 | } |
|---|
| 791 | |
|---|
| 792 | my $complete = |
|---|
| 793 | $total |
|---|
| 794 | ? ( $total == $offset ? 100 : int( ( $offset / $total ) * 100 ) ) |
|---|
| 795 | : 0; |
|---|
| 796 | |
|---|
| 797 | my %param = ( |
|---|
| 798 | build_type => $order, |
|---|
| 799 | build_next => $next, |
|---|
| 800 | build_type_name => $archive_label, |
|---|
| 801 | archives => $archiver ? 1 : 0, |
|---|
| 802 | total => $total, |
|---|
| 803 | offset => $offset, |
|---|
| 804 | complete => $complete, |
|---|
| 805 | start_time => $start_time, |
|---|
| 806 | incomplete => 100 - $complete, |
|---|
| 807 | entry_id => scalar $q->param('entry_id'), |
|---|
| 808 | dynamic => $dynamic, |
|---|
| 809 | is_new => scalar $q->param('is_new'), |
|---|
| 810 | old_status => scalar $q->param('old_status'), |
|---|
| 811 | is_full_screen => scalar $q->param('fs'), |
|---|
| 812 | with_indexes => scalar $q->param('with_indexes'), |
|---|
| 813 | no_static => scalar $q->param('no_static'), |
|---|
| 814 | template_id => scalar $q->param('template_id'), |
|---|
| 815 | return_args => scalar $q->param('return_args') |
|---|
| 816 | ); |
|---|
| 817 | $app->load_tmpl( 'rebuilding.tmpl', \%param ); |
|---|
| 818 | } |
|---|
| 819 | else { |
|---|
| 820 | $app->run_callbacks( 'post_build' ); |
|---|
| 821 | if ( $q->param('entry_id') ) { |
|---|
| 822 | require MT::Entry; |
|---|
| 823 | my $entry = MT::Entry->load( scalar $q->param('entry_id') ) |
|---|
| 824 | or return $app->error($app->translate('Can\'t load entry #[_1].', $q->param('entry_id'))); |
|---|
| 825 | require MT::Blog; |
|---|
| 826 | my $blog = MT::Blog->load( $entry->blog_id ) |
|---|
| 827 | or return $app->error($app->translate('Can\'t load blog #[_1].', $entry->blog_id)); |
|---|
| 828 | require MT::CMS::Entry; |
|---|
| 829 | MT::CMS::Entry::ping_continuation( $app, |
|---|
| 830 | $entry, $blog, |
|---|
| 831 | OldStatus => scalar $q->param('old_status'), |
|---|
| 832 | IsNew => scalar $q->param('is_new'), |
|---|
| 833 | ); |
|---|
| 834 | } |
|---|
| 835 | else { |
|---|
| 836 | my $all = $order =~ /,/; |
|---|
| 837 | my $type = $order; |
|---|
| 838 | my $is_one_index = $order =~ /index template/; |
|---|
| 839 | my $is_entry = $order =~ /entry/; |
|---|
| 840 | my $built_type; |
|---|
| 841 | if ( $is_entry || $is_one_index ) { |
|---|
| 842 | ( $built_type = $type ) =~ |
|---|
| 843 | s/^(entry|index template)/$app->translate($1)/e; |
|---|
| 844 | } |
|---|
| 845 | else { |
|---|
| 846 | $built_type = $app->translate($type); |
|---|
| 847 | } |
|---|
| 848 | my %param = ( |
|---|
| 849 | all => $all, |
|---|
| 850 | type => $archive_label, |
|---|
| 851 | is_one_index => $is_one_index, |
|---|
| 852 | is_entry => $is_entry, |
|---|
| 853 | archives => $type ne 'index', |
|---|
| 854 | start_timestamp => MT::Util::epoch2ts($blog, $start_time), |
|---|
| 855 | total_time => time - $start_time, |
|---|
| 856 | ); |
|---|
| 857 | if ($is_one_index) { |
|---|
| 858 | $param{tmpl_url} = $blog->site_url; |
|---|
| 859 | $param{tmpl_url} .= '/' if $param{tmpl_url} !~ m!/$!; |
|---|
| 860 | $param{tmpl_url} .= $tmpl_saved->outfile; |
|---|
| 861 | } |
|---|
| 862 | if ( $q->param('fs') ) { # full screen--go to a useful app page |
|---|
| 863 | if ( my $return_args = $q->param('return_args') ) { |
|---|
| 864 | $app->call_return; |
|---|
| 865 | } |
|---|
| 866 | else { |
|---|
| 867 | my $type = $q->param('type'); |
|---|
| 868 | $type =~ /index-(\d+)/; |
|---|
| 869 | my $tmpl_id = $1; |
|---|
| 870 | $app->run_callbacks( 'rebuild', $blog ); |
|---|
| 871 | return $app->redirect( |
|---|
| 872 | $app->uri( |
|---|
| 873 | 'mode' => 'view', |
|---|
| 874 | args => { |
|---|
| 875 | '_type' => 'template', |
|---|
| 876 | id => $tmpl_id, |
|---|
| 877 | blog_id => $blog->id, |
|---|
| 878 | saved_rebuild => 1 |
|---|
| 879 | } |
|---|
| 880 | ) |
|---|
| 881 | ); |
|---|
| 882 | } |
|---|
| 883 | } |
|---|
| 884 | else { # popup--just go to cnfrmn. page |
|---|
| 885 | return $app->load_tmpl( 'popup/rebuilt.tmpl', \%param ); |
|---|
| 886 | } |
|---|
| 887 | } |
|---|
| 888 | } |
|---|
| 889 | } |
|---|
| 890 | |
|---|
| 891 | sub rebuild_new_phase { |
|---|
| 892 | my ($app) = @_; |
|---|
| 893 | my %reb_set = map { $_ => 1 } $app->param('id'); |
|---|
| 894 | $app->rebuild_these( \%reb_set, how => MT::App::CMS::NEW_PHASE() ); |
|---|
| 895 | } |
|---|
| 896 | |
|---|
| 897 | sub start_rebuild_pages { |
|---|
| 898 | my $app = shift; |
|---|
| 899 | my $q = $app->param; |
|---|
| 900 | my $start_time = $q->param('start_time'); |
|---|
| 901 | |
|---|
| 902 | if ( ! $start_time ) { |
|---|
| 903 | # start of build; invoke callback |
|---|
| 904 | $app->run_callbacks('pre_build'); |
|---|
| 905 | $start_time = time; |
|---|
| 906 | } |
|---|
| 907 | |
|---|
| 908 | my $type = $q->param('type'); |
|---|
| 909 | my $next = $q->param('next') || 0; |
|---|
| 910 | my @order = split /,/, $type; |
|---|
| 911 | my $total = $q->param('total') || 0; |
|---|
| 912 | my $type_name = $order[$next]; |
|---|
| 913 | my $archiver = $app->publisher->archiver($type_name); |
|---|
| 914 | my $archive_label = $archiver ? $archiver->archive_label : ''; |
|---|
| 915 | $archive_label = $app->translate($type_name) unless $archive_label; |
|---|
| 916 | $archive_label = $archive_label->() if ( ref $archive_label ) eq 'CODE'; |
|---|
| 917 | my $blog_id = $q->param('blog_id'); |
|---|
| 918 | |
|---|
| 919 | my $with_indexes = $q->param('with_indexes'); |
|---|
| 920 | my $no_static = $q->param('no_static'); |
|---|
| 921 | my $template_id = $q->param('template_id'); |
|---|
| 922 | |
|---|
| 923 | if ($archiver) { |
|---|
| 924 | if ( $archiver->entry_based || $archiver->date_based ) { |
|---|
| 925 | my $entry_class = $archiver->entry_class || 'entry'; |
|---|
| 926 | require MT::Entry; |
|---|
| 927 | my $terms = { |
|---|
| 928 | class => $entry_class, |
|---|
| 929 | status => MT::Entry::RELEASE(), |
|---|
| 930 | blog_id => $blog_id, |
|---|
| 931 | }; |
|---|
| 932 | $total = MT::Entry->count($terms); |
|---|
| 933 | } |
|---|
| 934 | elsif ( $archiver->category_based ) { |
|---|
| 935 | require MT::Category; |
|---|
| 936 | my $terms = { |
|---|
| 937 | blog_id => $blog_id, |
|---|
| 938 | class => $archiver->category_class, |
|---|
| 939 | }; |
|---|
| 940 | $total = MT::Category->count($terms); |
|---|
| 941 | } |
|---|
| 942 | elsif ( $archiver->author_based ) { |
|---|
| 943 | require MT::Author; |
|---|
| 944 | require MT::Entry; |
|---|
| 945 | my $terms = { |
|---|
| 946 | blog_id => $blog_id, |
|---|
| 947 | status => MT::Entry::RELEASE(), |
|---|
| 948 | class => 'entry', |
|---|
| 949 | }; |
|---|
| 950 | $total = MT::Author->count( |
|---|
| 951 | undef, |
|---|
| 952 | { |
|---|
| 953 | join => MT::Entry->join_on( 'author_id', $terms, { unique => 1 } ), |
|---|
| 954 | unique => 1, |
|---|
| 955 | } |
|---|
| 956 | ); |
|---|
| 957 | } |
|---|
| 958 | } |
|---|
| 959 | |
|---|
| 960 | my %param = ( |
|---|
| 961 | build_type => $type, |
|---|
| 962 | build_next => $next, |
|---|
| 963 | total => $total, |
|---|
| 964 | start_time => $start_time, |
|---|
| 965 | complete => 0, |
|---|
| 966 | incomplete => 100, |
|---|
| 967 | build_type_name => $archive_label, |
|---|
| 968 | with_indexes => $with_indexes, |
|---|
| 969 | no_static => $no_static, |
|---|
| 970 | template_id => $template_id, |
|---|
| 971 | return_args => $app->return_args |
|---|
| 972 | ); |
|---|
| 973 | |
|---|
| 974 | if ( $type_name =~ /^index-(\d+)$/ ) { |
|---|
| 975 | my $tmpl_id = $1; |
|---|
| 976 | require MT::Template; |
|---|
| 977 | my $tmpl = MT::Template->load($tmpl_id) |
|---|
| 978 | or return $app->error($app->translate('Can\'t load template #[_1].', $tmpl_id)); |
|---|
| 979 | $param{build_type_name} = |
|---|
| 980 | $app->translate( "index template '[_1]'", $tmpl->name ); |
|---|
| 981 | $param{is_one_index} = 1; |
|---|
| 982 | } |
|---|
| 983 | elsif ( $type_name =~ /^entry-(\d+)$/ ) { |
|---|
| 984 | my $entry_id = $1; |
|---|
| 985 | require MT::Entry; |
|---|
| 986 | my $entry = MT::Entry->load($entry_id) |
|---|
| 987 | or return $app->error($app->translate('Can\'t load entry #[_1].', $entry_id)); |
|---|
| 988 | $param{build_type_name} = |
|---|
| 989 | $app->translate( "[_1] '[_2]'", $entry->class_label, $entry->title ); |
|---|
| 990 | $param{is_entry} = 1; |
|---|
| 991 | $param{entry_id} = $entry_id; |
|---|
| 992 | for my $col (qw( is_new old_status old_next old_previous )) { |
|---|
| 993 | $param{$col} = $q->param($col); |
|---|
| 994 | } |
|---|
| 995 | } |
|---|
| 996 | $param{is_full_screen} = ( $param{is_entry} ) |
|---|
| 997 | || $q->param('single_template'); |
|---|
| 998 | $param{page_titles} = [ { bc_name => 'Rebuilding' } ]; |
|---|
| 999 | $app->load_tmpl( 'rebuilding.tmpl', \%param ); |
|---|
| 1000 | } |
|---|
| 1001 | |
|---|
| 1002 | sub _create_build_order { |
|---|
| 1003 | my ( $app, $blog, $param ) = @_; |
|---|
| 1004 | |
|---|
| 1005 | my $at = $blog->archive_type || ''; |
|---|
| 1006 | my ( @blog_at, @at, @data ); |
|---|
| 1007 | my $archiver; |
|---|
| 1008 | my $archive_label; |
|---|
| 1009 | |
|---|
| 1010 | if ( $at && $at ne 'None' ) { |
|---|
| 1011 | @blog_at = split /,/, $at; |
|---|
| 1012 | require MT::PublishOption; |
|---|
| 1013 | foreach my $t (@blog_at) { |
|---|
| 1014 | $archiver = $app->publisher->archiver($t); |
|---|
| 1015 | next unless $archiver; # ignore unknown archive types |
|---|
| 1016 | next if MT::PublishOption::archive_build_type($t) == MT::PublishOption::DISABLED(); |
|---|
| 1017 | push @at, $t; |
|---|
| 1018 | $archive_label = $archiver->archive_label; |
|---|
| 1019 | $archive_label = $at unless $archive_label; |
|---|
| 1020 | $archive_label = $archive_label->() |
|---|
| 1021 | if ( ref $archive_label ) eq 'CODE'; |
|---|
| 1022 | push( |
|---|
| 1023 | @data, |
|---|
| 1024 | { |
|---|
| 1025 | archive_type => $t, |
|---|
| 1026 | archive_type_label => $archive_label |
|---|
| 1027 | } |
|---|
| 1028 | ); |
|---|
| 1029 | } |
|---|
| 1030 | } |
|---|
| 1031 | $param->{archive_type_loop} = \@data; |
|---|
| 1032 | $param->{build_order} = join ',', @at, 'index'; |
|---|
| 1033 | 1; |
|---|
| 1034 | } |
|---|
| 1035 | |
|---|
| 1036 | sub rebuild_confirm { |
|---|
| 1037 | my $app = shift; |
|---|
| 1038 | my $blog_id = $app->param('blog_id'); |
|---|
| 1039 | require MT::Blog; |
|---|
| 1040 | my $blog = MT::Blog->load($blog_id) |
|---|
| 1041 | or return $app->error($app->translate('Can\'t load blog #[_1].', $blog_id)); |
|---|
| 1042 | |
|---|
| 1043 | my %param = ( |
|---|
| 1044 | build_next => 0, |
|---|
| 1045 | ); |
|---|
| 1046 | _create_build_order( $app, $blog, \%param ); |
|---|
| 1047 | |
|---|
| 1048 | $param{index_selected} = ( $app->param('prompt') || "" ) eq 'index'; |
|---|
| 1049 | |
|---|
| 1050 | if ( my $tmpl_id = $app->param('tmpl_id') ) { |
|---|
| 1051 | require MT::Template; |
|---|
| 1052 | my $tmpl = MT::Template->load($tmpl_id) |
|---|
| 1053 | or return $app->error($app->translate('Can\'t load template #[_1].', $tmpl_id)); |
|---|
| 1054 | $param{index_tmpl_id} = $tmpl->id; |
|---|
| 1055 | $param{index_tmpl_name} = $tmpl->name; |
|---|
| 1056 | } |
|---|
| 1057 | my $options = $app->registry("rebuild_options") || {}; |
|---|
| 1058 | my @options; |
|---|
| 1059 | if ($options) { |
|---|
| 1060 | foreach my $opt ( keys %$options ) { |
|---|
| 1061 | $options->{$opt}{key} ||= $opt; |
|---|
| 1062 | push @options, $options->{$opt}; |
|---|
| 1063 | } |
|---|
| 1064 | } |
|---|
| 1065 | $app->run_callbacks( 'rebuild_options', $app, \@options ); |
|---|
| 1066 | my $rebuild_options = $app->filter_conditional_list( \@options ); |
|---|
| 1067 | $param{rebuild_option_loop} = $rebuild_options; |
|---|
| 1068 | $param{refocus} = 1; |
|---|
| 1069 | $app->add_breadcrumb( $app->translate('Publish Site') ); |
|---|
| 1070 | $app->load_tmpl( 'popup/rebuild_confirm.tmpl', \%param ); |
|---|
| 1071 | } |
|---|
| 1072 | |
|---|
| 1073 | sub save_favorite_blogs { |
|---|
| 1074 | my $app = shift; |
|---|
| 1075 | $app->validate_magic() or return; |
|---|
| 1076 | my $fav = $app->param('id'); |
|---|
| 1077 | return unless int($fav) > 0; |
|---|
| 1078 | $app->add_to_favorite_blogs($fav); |
|---|
| 1079 | $app->send_http_header("text/javascript+json"); |
|---|
| 1080 | return 'true'; |
|---|
| 1081 | } |
|---|
| 1082 | |
|---|
| 1083 | sub cc_return { |
|---|
| 1084 | my $app = shift; |
|---|
| 1085 | my $code = $app->param('license_code'); |
|---|
| 1086 | my $url = $app->param('license_url'); |
|---|
| 1087 | my $image = $app->param('license_button'); |
|---|
| 1088 | my %param = ( license_name => MT::Util::cc_name($code) ); |
|---|
| 1089 | if ($url) { |
|---|
| 1090 | $param{license_code} = "$code $url $image"; |
|---|
| 1091 | } |
|---|
| 1092 | else { |
|---|
| 1093 | $param{license_code} = $code; |
|---|
| 1094 | } |
|---|
| 1095 | $app->load_tmpl( 'cc_return.tmpl', \%param ); |
|---|
| 1096 | } |
|---|
| 1097 | |
|---|
| 1098 | sub handshake { |
|---|
| 1099 | my $app = shift; |
|---|
| 1100 | my $blog_id = $app->param('blog_id'); |
|---|
| 1101 | my $remote_auth_token = $app->param('remote_auth_token'); |
|---|
| 1102 | |
|---|
| 1103 | my %param = (); |
|---|
| 1104 | $param{remote_auth_token} = $remote_auth_token; |
|---|
| 1105 | $app->load_tmpl( 'handshake_return.tmpl', \%param ); |
|---|
| 1106 | } |
|---|
| 1107 | |
|---|
| 1108 | sub update_welcome_message { |
|---|
| 1109 | my $app = shift; |
|---|
| 1110 | $app->validate_magic or return; |
|---|
| 1111 | |
|---|
| 1112 | my $perms = $app->permissions; |
|---|
| 1113 | return $app->errtrans("Permission denied.") |
|---|
| 1114 | unless $perms && $perms->can_edit_config; |
|---|
| 1115 | |
|---|
| 1116 | my $blog_id = $app->param('blog_id'); |
|---|
| 1117 | my $message = $app->param('welcome-message-text'); |
|---|
| 1118 | my $blog_class = $app->model('blog'); |
|---|
| 1119 | my $blog = $blog_class->load($blog_id) |
|---|
| 1120 | or return $app->error( $app->translate("Invalid blog") ); |
|---|
| 1121 | $blog->welcome_msg($message); |
|---|
| 1122 | $blog->save; |
|---|
| 1123 | $app->redirect( |
|---|
| 1124 | $app->uri( mode => 'menu', args => { blog_id => $blog_id } ) ); |
|---|
| 1125 | } |
|---|
| 1126 | |
|---|
| 1127 | sub dialog_select_weblog { |
|---|
| 1128 | my $app = shift; |
|---|
| 1129 | |
|---|
| 1130 | #return $app->errtrans("Permission denied.") |
|---|
| 1131 | # unless $app->user->is_superuser; |
|---|
| 1132 | |
|---|
| 1133 | my $favorites = $app->param('select_favorites'); |
|---|
| 1134 | my %favorite; |
|---|
| 1135 | my $confirm_js; |
|---|
| 1136 | my $terms = {}; |
|---|
| 1137 | my $args = {}; |
|---|
| 1138 | if ($favorites) { |
|---|
| 1139 | my $auth = $app->user or return; |
|---|
| 1140 | if ( my @favs = @{ $auth->favorite_blogs || [] } ) { |
|---|
| 1141 | $terms->{id} = \@favs; |
|---|
| 1142 | $args->{not}{id} = 1; |
|---|
| 1143 | } |
|---|
| 1144 | $confirm_js = 'saveFavorite'; |
|---|
| 1145 | } |
|---|
| 1146 | |
|---|
| 1147 | my $hasher = sub { |
|---|
| 1148 | my ( $obj, $row ) = @_; |
|---|
| 1149 | $row->{label} = $row->{name}; |
|---|
| 1150 | $row->{'link'} = $row->{site_url}; |
|---|
| 1151 | }; |
|---|
| 1152 | |
|---|
| 1153 | $app->listing( |
|---|
| 1154 | { |
|---|
| 1155 | type => 'blog', |
|---|
| 1156 | code => $hasher, |
|---|
| 1157 | template => 'dialog/select_weblog.tmpl', |
|---|
| 1158 | terms => $terms, |
|---|
| 1159 | args => $args, |
|---|
| 1160 | params => { |
|---|
| 1161 | dialog_title => $app->translate("Select Blog"), |
|---|
| 1162 | items_prompt => $app->translate("Selected Blog"), |
|---|
| 1163 | search_prompt => $app->translate( |
|---|
| 1164 | "Type a blog name to filter the choices below."), |
|---|
| 1165 | panel_label => $app->translate("Blog Name"), |
|---|
| 1166 | panel_description => $app->translate("Description"), |
|---|
| 1167 | panel_type => 'blog', |
|---|
| 1168 | panel_multi => defined $app->param('multi') |
|---|
| 1169 | ? $app->param('multi') |
|---|
| 1170 | : 0, |
|---|
| 1171 | panel_searchable => 1, |
|---|
| 1172 | panel_first => 1, |
|---|
| 1173 | panel_last => 1, |
|---|
| 1174 | list_noncron => 1, |
|---|
| 1175 | return_url => $app->uri . '?' |
|---|
| 1176 | . ( $app->param('return_args') || '' ), |
|---|
| 1177 | confirm_js => $confirm_js, |
|---|
| 1178 | idfield => ( $app->param('idfield') || '' ), |
|---|
| 1179 | namefield => ( $app->param('namefield') || '' ), |
|---|
| 1180 | }, |
|---|
| 1181 | } |
|---|
| 1182 | ); |
|---|
| 1183 | } |
|---|
| 1184 | |
|---|
| 1185 | sub can_view { |
|---|
| 1186 | my ( $eh, $app, $id ) = @_; |
|---|
| 1187 | my $perms = $app->permissions; |
|---|
| 1188 | if ( $id |
|---|
| 1189 | && ( $perms->can_set_publish_paths && !$perms->can_administer_blog ) ) |
|---|
| 1190 | { |
|---|
| 1191 | return 1 if 'view' eq $app->mode; |
|---|
| 1192 | } |
|---|
| 1193 | if ( |
|---|
| 1194 | ( |
|---|
| 1195 | $id && !( |
|---|
| 1196 | $perms->can_edit_config |
|---|
| 1197 | || $perms->can_set_publish_paths |
|---|
| 1198 | || $perms->can_manage_feedback |
|---|
| 1199 | ) |
|---|
| 1200 | ) |
|---|
| 1201 | || ( !$id && !$app->user->can_create_blog ) |
|---|
| 1202 | ) |
|---|
| 1203 | { |
|---|
| 1204 | return 0; |
|---|
| 1205 | } |
|---|
| 1206 | 1; |
|---|
| 1207 | } |
|---|
| 1208 | |
|---|
| 1209 | sub can_save { |
|---|
| 1210 | my ( $eh, $app, $id ) = @_; |
|---|
| 1211 | my $perms = $app->permissions; |
|---|
| 1212 | return ( $id |
|---|
| 1213 | && ( $perms->can_edit_config || $perms->can_set_publish_paths ) ) |
|---|
| 1214 | || ( !$id && $app->user->can_create_blog ); |
|---|
| 1215 | } |
|---|
| 1216 | |
|---|
| 1217 | sub can_delete { |
|---|
| 1218 | my ( $eh, $app, $obj ) = @_; |
|---|
| 1219 | my $author = $app->user; |
|---|
| 1220 | return 1 if $author->is_superuser(); |
|---|
| 1221 | require MT::Permission; |
|---|
| 1222 | my $perms = $author->permissions( $obj->id ); |
|---|
| 1223 | return $perms && $perms->can_administer_blog; |
|---|
| 1224 | } |
|---|
| 1225 | |
|---|
| 1226 | sub pre_save { |
|---|
| 1227 | my $eh = shift; |
|---|
| 1228 | my ( $app, $obj ) = @_; |
|---|
| 1229 | if ( !$app->param('overlay') |
|---|
| 1230 | && $app->param('cfg_screen') ) |
|---|
| 1231 | { |
|---|
| 1232 | |
|---|
| 1233 | # Checkbox options have to be blanked if they aren't passed. |
|---|
| 1234 | my $screen = $app->param('cfg_screen'); |
|---|
| 1235 | my @fields; |
|---|
| 1236 | if ( $screen eq 'cfg_web_services' ) { |
|---|
| 1237 | } |
|---|
| 1238 | elsif ( $screen eq 'cfg_archives' ) { |
|---|
| 1239 | } |
|---|
| 1240 | elsif ( $screen eq 'cfg_templatemaps' ) { |
|---|
| 1241 | } |
|---|
| 1242 | elsif ( $screen eq 'cfg_comments' ) { |
|---|
| 1243 | @fields = qw( allow_comment_html autolink_urls |
|---|
| 1244 | use_comment_confirmation ); |
|---|
| 1245 | } |
|---|
| 1246 | elsif ( $screen eq 'cfg_registration' ) { |
|---|
| 1247 | @fields = qw( allow_commenter_regist |
|---|
| 1248 | require_comment_emails allow_unreg_comments |
|---|
| 1249 | require_typekey_emails ); |
|---|
| 1250 | } |
|---|
| 1251 | elsif ( $screen eq 'cfg_entry' ) { |
|---|
| 1252 | @fields = qw( allow_comments_default |
|---|
| 1253 | allow_pings_default ); |
|---|
| 1254 | } |
|---|
| 1255 | elsif ( $screen eq 'cfg_trackbacks' ) { |
|---|
| 1256 | @fields = qw( allow_pings moderate_pings |
|---|
| 1257 | autodiscover_links internal_autodiscovery ); |
|---|
| 1258 | } |
|---|
| 1259 | elsif ( $screen eq 'cfg_plugins' ) { |
|---|
| 1260 | } |
|---|
| 1261 | for my $cb (@fields) { |
|---|
| 1262 | unless ( defined $app->param($cb) ) { |
|---|
| 1263 | |
|---|
| 1264 | # two possibilities: user unchecked the option, or user was not allowed to |
|---|
| 1265 | # set the value (and therefore there was no field to submit). |
|---|
| 1266 | my $perms = $app->permissions; |
|---|
| 1267 | if ( |
|---|
| 1268 | $app->user->is_superuser |
|---|
| 1269 | || ( |
|---|
| 1270 | $perms |
|---|
| 1271 | && ( $perms->can_administer_blog |
|---|
| 1272 | || $perms->can_edit_config ) |
|---|
| 1273 | ) |
|---|
| 1274 | ) |
|---|
| 1275 | { |
|---|
| 1276 | $obj->$cb(0); |
|---|
| 1277 | } |
|---|
| 1278 | else { |
|---|
| 1279 | delete $obj->{column_values}->{$cb}; |
|---|
| 1280 | delete $obj->{changed_cols}->{$cb}; |
|---|
| 1281 | } |
|---|
| 1282 | } |
|---|
| 1283 | } |
|---|
| 1284 | if ( $screen eq 'cfg_comments' ) { |
|---|
| 1285 | |
|---|
| 1286 | # value for comments: 1 == Accept from anyone |
|---|
| 1287 | # 2 == Accept authenticated only |
|---|
| 1288 | # 0 == No comments |
|---|
| 1289 | if ( $app->param('allow_comments') ) { |
|---|
| 1290 | $obj->allow_reg_comments(1); |
|---|
| 1291 | } |
|---|
| 1292 | else { |
|---|
| 1293 | $obj->allow_unreg_comments(0); |
|---|
| 1294 | $obj->allow_reg_comments(0); |
|---|
| 1295 | } |
|---|
| 1296 | $obj->moderate_unreg_comments( $app->param('moderate_comments') ); |
|---|
| 1297 | $obj->nofollow_urls( $app->param('nofollow_urls') ? 1 : 0 ); |
|---|
| 1298 | $obj->follow_auth_links( $app->param('follow_auth_links') ? 1 : 0 ); |
|---|
| 1299 | my $cp_old = $obj->captcha_provider; |
|---|
| 1300 | $obj->captcha_provider( $app->param('captcha_provider') ); |
|---|
| 1301 | my $rebuild = $cp_old ne $obj->captcha_provider ? 1 : 0; |
|---|
| 1302 | $app->add_return_arg( need_full_rebuild => 1 ) if $rebuild; |
|---|
| 1303 | } |
|---|
| 1304 | if ( $screen eq 'cfg_web_services' ) { |
|---|
| 1305 | my $tok = ''; |
|---|
| 1306 | ( $tok = $obj->remote_auth_token ) =~ s/\s//g; |
|---|
| 1307 | $obj->remote_auth_token($tok); |
|---|
| 1308 | |
|---|
| 1309 | my $ping_servers = $app->registry('ping_servers'); |
|---|
| 1310 | my @pings_list; |
|---|
| 1311 | push @pings_list, $_ foreach grep { |
|---|
| 1312 | defined( $app->param( 'ping_' . $_ ) ) |
|---|
| 1313 | && $app->param( 'ping_' . $_ ) |
|---|
| 1314 | } |
|---|
| 1315 | keys %$ping_servers; |
|---|
| 1316 | $obj->update_pings( join( ',', @pings_list ) ); |
|---|
| 1317 | } |
|---|
| 1318 | if ( $screen eq 'cfg_entry' ) { |
|---|
| 1319 | my %param = $_[0] ? %{ $_[0] } : (); |
|---|
| 1320 | my $pref_param = $app->load_entry_prefs; |
|---|
| 1321 | %param = ( %param, %$pref_param ); |
|---|
| 1322 | } |
|---|
| 1323 | if ( $screen eq 'cfg_trackbacks' ) { |
|---|
| 1324 | if ( my $pings = $app->param('allow_pings') ) { |
|---|
| 1325 | if ($pings) { |
|---|
| 1326 | $obj->moderate_pings( $app->param('moderate_pings') ); |
|---|
| 1327 | $obj->nofollow_urls( $app->param('nofollow_urls') ? 1 : 0 ); |
|---|
| 1328 | } |
|---|
| 1329 | else { |
|---|
| 1330 | $obj->moderate_pings(1); |
|---|
| 1331 | $obj->email_new_pings(1); |
|---|
| 1332 | } |
|---|
| 1333 | } |
|---|
| 1334 | } |
|---|
| 1335 | if ( $screen eq 'cfg_registration' ) { |
|---|
| 1336 | $obj->allow_commenter_regist( |
|---|
| 1337 | $app->param('allow_commenter_regist') ); |
|---|
| 1338 | $obj->allow_unreg_comments( $app->param('allow_unreg_comments') ); |
|---|
| 1339 | if ( $app->param('allow_unreg_comments') ) { |
|---|
| 1340 | $obj->require_comment_emails( |
|---|
| 1341 | $app->param('require_comment_emails') ); |
|---|
| 1342 | } |
|---|
| 1343 | else { |
|---|
| 1344 | $obj->require_comment_emails(0); |
|---|
| 1345 | } |
|---|
| 1346 | my @authenticators; |
|---|
| 1347 | |
|---|
| 1348 | my $c = $app->registry('commenter_authenticators'); |
|---|
| 1349 | foreach ( keys %$c ) { |
|---|
| 1350 | if ( $app->param( 'enabled_' . $_ ) ) { |
|---|
| 1351 | push @authenticators, $_; |
|---|
| 1352 | } |
|---|
| 1353 | } |
|---|
| 1354 | push @authenticators, 'MovableType' |
|---|
| 1355 | if $app->param('enabled_MovableType'); |
|---|
| 1356 | my $c_old = $obj->commenter_authenticators; |
|---|
| 1357 | $obj->commenter_authenticators( join( ',', @authenticators ) ); |
|---|
| 1358 | my $rebuild = $obj->commenter_authenticators ne $c_old ? 1 : 0; |
|---|
| 1359 | if ( $app->param('enabled_TypeKey') ) { |
|---|
| 1360 | $rebuild = $obj->require_typekey_emails ? 0 : 1; |
|---|
| 1361 | $obj->require_typekey_emails( |
|---|
| 1362 | $app->param('require_typekey_emails') ); |
|---|
| 1363 | } |
|---|
| 1364 | else { |
|---|
| 1365 | $obj->require_typekey_emails(0); |
|---|
| 1366 | } |
|---|
| 1367 | my $tok = ''; |
|---|
| 1368 | ( $tok = $obj->remote_auth_token ) =~ s/\s//g; |
|---|
| 1369 | $obj->remote_auth_token($tok); |
|---|
| 1370 | |
|---|
| 1371 | $app->add_return_arg( need_full_rebuild => 1 ) if $rebuild; |
|---|
| 1372 | } |
|---|
| 1373 | if ( $screen eq 'cfg_spam' ) { |
|---|
| 1374 | my $threshold = $app->param('junk_score_threshold'); |
|---|
| 1375 | $threshold =~ s/\+//; |
|---|
| 1376 | $threshold ||= 0; |
|---|
| 1377 | $obj->junk_score_threshold($threshold); |
|---|
| 1378 | if ( my $expiry = $app->param('junk_folder_expiry') ) { |
|---|
| 1379 | $obj->junk_folder_expiry($expiry); |
|---|
| 1380 | } |
|---|
| 1381 | my $perms = $app->permissions; |
|---|
| 1382 | unless ( defined $app->param('auto_delete_junk') ) { |
|---|
| 1383 | if ( |
|---|
| 1384 | $app->user->is_superuser |
|---|
| 1385 | || ( |
|---|
| 1386 | $perms |
|---|
| 1387 | && ( $perms->can_administer_blog |
|---|
| 1388 | || $perms->can_edit_config ) |
|---|
| 1389 | ) |
|---|
| 1390 | ) |
|---|
| 1391 | { |
|---|
| 1392 | $obj->junk_folder_expiry(0); |
|---|
| 1393 | } |
|---|
| 1394 | else { |
|---|
| 1395 | delete $obj->{column_values}{junk_folder_expiry}; |
|---|
| 1396 | delete $obj->{changed_cols}{junk_folder_expiry}; |
|---|
| 1397 | } |
|---|
| 1398 | } |
|---|
| 1399 | } |
|---|
| 1400 | if ( $screen eq 'cfg_entry' ) { |
|---|
| 1401 | my %param = $_[0] ? %{ $_[0] } : (); |
|---|
| 1402 | my $pref_param = $app->load_entry_prefs; |
|---|
| 1403 | %param = ( %param, %$pref_param ); |
|---|
| 1404 | $param{ 'sort_order_posts_' . ( $obj->sort_order_posts || 0 ) } = 1; |
|---|
| 1405 | $param{words_in_excerpt} = 40 |
|---|
| 1406 | unless defined $param{words_in_excerpt} |
|---|
| 1407 | && $param{words_in_excerpt} ne ''; |
|---|
| 1408 | if ( $app->param('days_or_posts') eq 'days' ) { |
|---|
| 1409 | $obj->days_on_index( $app->param('list_on_index') ); |
|---|
| 1410 | $obj->entries_on_index(0); |
|---|
| 1411 | } |
|---|
| 1412 | else { |
|---|
| 1413 | $obj->entries_on_index( $app->param('list_on_index') ); |
|---|
| 1414 | $obj->days_on_index(0); |
|---|
| 1415 | } |
|---|
| 1416 | $obj->basename_limit(15) |
|---|
| 1417 | if $obj->basename_limit < 15; # 15 is the *minimum* |
|---|
| 1418 | $obj->basename_limit(250) |
|---|
| 1419 | if $obj->basename_limit > 250; # 15 is the *maximum* |
|---|
| 1420 | } |
|---|
| 1421 | if ( $screen eq 'cfg_archives' ) { |
|---|
| 1422 | $obj->include_system( $app->param('include_system') || '' ); |
|---|
| 1423 | if ( !$app->param('enable_archive_paths') ) { |
|---|
| 1424 | $obj->archive_url(''); |
|---|
| 1425 | $obj->archive_path(''); |
|---|
| 1426 | } |
|---|
| 1427 | } |
|---|
| 1428 | if ( $screen eq 'cfg_publish_profile' ) { |
|---|
| 1429 | if ( my $dcty = $app->param('dynamicity') ) { |
|---|
| 1430 | $obj->custom_dynamic_templates($dcty); |
|---|
| 1431 | } |
|---|
| 1432 | } |
|---|
| 1433 | } |
|---|
| 1434 | else { |
|---|
| 1435 | |
|---|
| 1436 | #$obj->is_dynamic(0) unless defined $app->{query}->param('is_dynamic'); |
|---|
| 1437 | } |
|---|
| 1438 | |
|---|
| 1439 | if ( ( $obj->sanitize_spec || '' ) eq '1' ) { |
|---|
| 1440 | $obj->sanitize_spec( scalar $app->param('sanitize_spec_manual') ); |
|---|
| 1441 | } |
|---|
| 1442 | |
|---|
| 1443 | 1; |
|---|
| 1444 | } |
|---|
| 1445 | |
|---|
| 1446 | sub _update_finfos { |
|---|
| 1447 | my ($app, $new_virtual, $where) = @_; |
|---|
| 1448 | my $finfo_class = MT->model('fileinfo'); |
|---|
| 1449 | my $driver = $finfo_class->driver; |
|---|
| 1450 | my $dbd = $driver->dbd; |
|---|
| 1451 | |
|---|
| 1452 | my $stmt = $dbd->sql_class->new; |
|---|
| 1453 | |
|---|
| 1454 | if ($where) { |
|---|
| 1455 | my $new_where = {}; |
|---|
| 1456 | while (my ($key, $val) = each %$where) { |
|---|
| 1457 | my $new_key = $dbd->db_column_name($finfo_class->datasource, $key); |
|---|
| 1458 | $new_where->{$new_key} = $val; |
|---|
| 1459 | } |
|---|
| 1460 | $stmt->add_complex_where([ $new_where ]); |
|---|
| 1461 | } |
|---|
| 1462 | my $virtual_col = $dbd->db_column_name($finfo_class->datasource, 'virtual'); |
|---|
| 1463 | $stmt->add_complex_where([ { $virtual_col => { op => '!=', value => $new_virtual } } ]); |
|---|
| 1464 | |
|---|
| 1465 | my $sql = join q{ }, 'UPDATE', $driver->table_for($finfo_class), 'SET', |
|---|
| 1466 | $virtual_col, '= ?', $stmt->as_sql_where(); |
|---|
| 1467 | |
|---|
| 1468 | my $dbh = $driver->rw_handle; |
|---|
| 1469 | $dbh->do($sql, {}, $new_virtual, @{ $stmt->{bind} }) |
|---|
| 1470 | or return $app->error($dbh->errstr || $DBI::errstr); |
|---|
| 1471 | 1; |
|---|
| 1472 | } |
|---|
| 1473 | |
|---|
| 1474 | sub post_save { |
|---|
| 1475 | my $eh = shift; |
|---|
| 1476 | my ( $app, $obj, $original ) = @_; |
|---|
| 1477 | |
|---|
| 1478 | my $perms = $app->permissions; |
|---|
| 1479 | return 1 |
|---|
| 1480 | unless $app->user->is_superuser |
|---|
| 1481 | || $app->user->can_create_blog |
|---|
| 1482 | || ( $perms && $perms->can_edit_config ); |
|---|
| 1483 | |
|---|
| 1484 | my $screen = $app->param('cfg_screen') || ''; |
|---|
| 1485 | if ( $screen eq 'cfg_publish_profile' ) { |
|---|
| 1486 | if ( my $dcty = $app->param('dynamicity') ) { |
|---|
| 1487 | # Apply publishing rules for templates based on |
|---|
| 1488 | # publishing method selected: |
|---|
| 1489 | # none (0% publish queue, all static) |
|---|
| 1490 | # async_all (100% publish queue) |
|---|
| 1491 | # async_partial (high-priority templates publish synchronously (main index, preferred indiv. archives, feed templates)) |
|---|
| 1492 | # all (100% dynamic) |
|---|
| 1493 | # archives (archives dynamic, static indexes) |
|---|
| 1494 | # custom (custom configuration) |
|---|
| 1495 | |
|---|
| 1496 | update_publishing_profile( |
|---|
| 1497 | $app, |
|---|
| 1498 | $obj |
|---|
| 1499 | ); |
|---|
| 1500 | |
|---|
| 1501 | if (($dcty eq 'none') || ($dcty =~ m/^async/)) { |
|---|
| 1502 | _update_finfos($app, 0); |
|---|
| 1503 | } |
|---|
| 1504 | elsif ($dcty eq 'all') { |
|---|
| 1505 | _update_finfos($app, 1); |
|---|
| 1506 | } |
|---|
| 1507 | elsif ($dcty eq 'archives') { |
|---|
| 1508 | # Only archives have template maps. |
|---|
| 1509 | _update_finfos($app, 1, { templatemap_id => \'is not null' }); |
|---|
| 1510 | _update_finfos($app, 0, { templatemap_id => \'is null' }); |
|---|
| 1511 | } |
|---|
| 1512 | } |
|---|
| 1513 | |
|---|
| 1514 | cfg_publish_profile_save($app, $obj) or return; |
|---|
| 1515 | } |
|---|
| 1516 | if ( $screen eq 'cfg_archives' ) { |
|---|
| 1517 | # If either of the publishing paths changed, rebuild the fileinfos. |
|---|
| 1518 | my $path_changed = 0; |
|---|
| 1519 | for my $path_field (qw( site_path archive_path site_url archive_url )) { |
|---|
| 1520 | $path_changed = 1 && last if $app->param($path_field) |
|---|
| 1521 | && $app->param($path_field) ne $original->$path_field(); |
|---|
| 1522 | } |
|---|
| 1523 | |
|---|
| 1524 | if ($path_changed) { |
|---|
| 1525 | $app->rebuild( BlogID => $obj->id, NoStatic => 1 ) |
|---|
| 1526 | or return $app->publish_error(); |
|---|
| 1527 | } |
|---|
| 1528 | |
|---|
| 1529 | cfg_archives_save($app, $obj) or return; |
|---|
| 1530 | } |
|---|
| 1531 | if ( $screen eq 'cfg_prefs' ) { |
|---|
| 1532 | my $blog_id = $obj->id; |
|---|
| 1533 | |
|---|
| 1534 | # FIXME: Needs to exclude MT::Permission records for groups |
|---|
| 1535 | $app->model('permission') |
|---|
| 1536 | ->load( { blog_id => $blog_id, author_id => 0 } ); |
|---|
| 1537 | if ( !$perms ) { |
|---|
| 1538 | $perms = $app->model('permission')->new; |
|---|
| 1539 | $perms->blog_id($blog_id); |
|---|
| 1540 | $perms->author_id(0); |
|---|
| 1541 | } |
|---|
| 1542 | } |
|---|
| 1543 | if ( $screen eq 'cfg_entry' ) { |
|---|
| 1544 | my $blog_id = $obj->id; |
|---|
| 1545 | |
|---|
| 1546 | # FIXME: Needs to exclude MT::Permission records for groups |
|---|
| 1547 | my $perms = |
|---|
| 1548 | $app->model('permission') |
|---|
| 1549 | ->load( { blog_id => $blog_id, author_id => 0 } ); |
|---|
| 1550 | if ( !$perms ) { |
|---|
| 1551 | $perms = $app->model('permission')->new; |
|---|
| 1552 | $perms->blog_id($blog_id); |
|---|
| 1553 | $perms->author_id(0); |
|---|
| 1554 | } |
|---|
| 1555 | my $prefs = $app->_entry_prefs_from_params; |
|---|
| 1556 | if ($prefs) { |
|---|
| 1557 | $perms->entry_prefs($prefs); |
|---|
| 1558 | $perms->save |
|---|
| 1559 | or return $app->errtrans( "Saving permissions failed: [_1]", |
|---|
| 1560 | $perms->errstr ); |
|---|
| 1561 | } |
|---|
| 1562 | } |
|---|
| 1563 | |
|---|
| 1564 | if ( !$original->id ) { # If the object is new, the "orignal" was blank |
|---|
| 1565 | ## If this is a new blog, we need to set up a permissions |
|---|
| 1566 | ## record for the existing user. |
|---|
| 1567 | $obj->create_default_templates( $obj->template_set ); |
|---|
| 1568 | |
|---|
| 1569 | # Add this blog to the user's "favorite blogs", pushing any 10th |
|---|
| 1570 | # blog off the list |
|---|
| 1571 | my $auth = $app->user; |
|---|
| 1572 | |
|---|
| 1573 | # FIXME: Should we still be doing this? |
|---|
| 1574 | my $perms = $app->model('permission')->new; |
|---|
| 1575 | $perms->author_id( $auth->id ); |
|---|
| 1576 | $perms->blog_id( $obj->id ); |
|---|
| 1577 | $perms->set_full_permissions; |
|---|
| 1578 | $perms->save; |
|---|
| 1579 | |
|---|
| 1580 | # permission granted - need to update commenting cookie |
|---|
| 1581 | my %cookies = $app->cookies(); |
|---|
| 1582 | $app->cookie_val(); |
|---|
| 1583 | my ($x, $y, $remember) = split(/::/, $cookies{$app->user_cookie()}->value); |
|---|
| 1584 | my $cookie = $cookies{'commenter_id'}; |
|---|
| 1585 | my $cookie_value = $cookie ? $cookie->value : ''; |
|---|
| 1586 | my ($id, $blog_ids) = split(':', $cookie_value); |
|---|
| 1587 | if ( $blog_ids ne 'S' && $blog_ids ne 'N' ) { |
|---|
| 1588 | $blog_ids .= ",'" . $obj->id . "'"; |
|---|
| 1589 | } |
|---|
| 1590 | my $timeout = $remember ? '+10y' : 0; |
|---|
| 1591 | $timeout = '+' . $app->config->CommentSessionTimeout . 's' unless $timeout; |
|---|
| 1592 | my %id_kookee = (-name => "commenter_id", |
|---|
| 1593 | -value => $auth->id . ':' . $blog_ids, |
|---|
| 1594 | -path => '/', |
|---|
| 1595 | ($timeout ? (-expires => $timeout) : ())); |
|---|
| 1596 | $app->bake_cookie(%id_kookee); |
|---|
| 1597 | |
|---|
| 1598 | require MT::Log; |
|---|
| 1599 | $app->log( |
|---|
| 1600 | { |
|---|
| 1601 | message => $app->translate( |
|---|
| 1602 | "Blog '[_1]' (ID:[_2]) created by '[_3]'", |
|---|
| 1603 | $obj->name, $obj->id, $auth->name |
|---|
| 1604 | ), |
|---|
| 1605 | level => MT::Log::INFO(), |
|---|
| 1606 | class => 'blog', |
|---|
| 1607 | category => 'new', |
|---|
| 1608 | } |
|---|
| 1609 | ); |
|---|
| 1610 | |
|---|
| 1611 | $app->run_callbacks( 'blog_template_set_change', { blog => $obj } ); |
|---|
| 1612 | } |
|---|
| 1613 | else { |
|---|
| 1614 | |
|---|
| 1615 | # if you've changed the comment configuration |
|---|
| 1616 | if ( |
|---|
| 1617 | ( |
|---|
| 1618 | grep { $original->column($_) ne $obj->column($_) } |
|---|
| 1619 | qw(allow_unreg_comments allow_reg_comments remote_auth_token) |
|---|
| 1620 | ) |
|---|
| 1621 | ) |
|---|
| 1622 | { |
|---|
| 1623 | if ( RegistrationAffectsArchives( $obj->id, 'Individual' ) ) { |
|---|
| 1624 | $app->add_return_arg( need_full_rebuild => 1 ); |
|---|
| 1625 | } |
|---|
| 1626 | else { |
|---|
| 1627 | $app->add_return_arg( need_index_rebuild => 1 ); |
|---|
| 1628 | } |
|---|
| 1629 | } |
|---|
| 1630 | |
|---|
| 1631 | # if other settings were changed that would affect published pages: |
|---|
| 1632 | if ( grep { $original->column($_) ne $obj->column($_) } |
|---|
| 1633 | qw(allow_pings allow_comment_html) ) |
|---|
| 1634 | { |
|---|
| 1635 | $app->add_return_arg( need_full_rebuild => 1 ); |
|---|
| 1636 | } |
|---|
| 1637 | |
|---|
| 1638 | if ( ($original->template_set || '') ne ($obj->template_set || '') ) { |
|---|
| 1639 | $app->run_callbacks( 'blog_template_set_change', { blog => $obj } ); |
|---|
| 1640 | $app->add_return_arg( need_full_rebuild => 1 ); |
|---|
| 1641 | } |
|---|
| 1642 | } |
|---|
| 1643 | 1; |
|---|
| 1644 | } |
|---|
| 1645 | |
|---|
| 1646 | sub save_filter { |
|---|
| 1647 | my $eh = shift; |
|---|
| 1648 | my ($app) = @_; |
|---|
| 1649 | my $name = $app->param('name'); |
|---|
| 1650 | if ( defined $name ) { |
|---|
| 1651 | $name =~ s/(^\s+|\s+$)//g; |
|---|
| 1652 | $app->param( 'name', $name ); |
|---|
| 1653 | } |
|---|
| 1654 | my $perms = $app->permissions; |
|---|
| 1655 | my $screen = $app->param('cfg_screen') || ''; |
|---|
| 1656 | return $eh->error( MT->translate("You did not specify a blog name.") ) |
|---|
| 1657 | if ( !( $screen && $perms->can_edit_config ) |
|---|
| 1658 | && ( defined $app->param('name') && ( $app->param('name') eq '' ) ) ); |
|---|
| 1659 | return $eh->error( MT->translate("Site URL must be an absolute URL.") ) |
|---|
| 1660 | if ( $screen eq 'cfg_archives' ) |
|---|
| 1661 | && $perms->can_set_publish_paths |
|---|
| 1662 | && $app->param('site_url') !~ m.^https?://.; |
|---|
| 1663 | return $eh->error( MT->translate("Archive URL must be an absolute URL.") ) |
|---|
| 1664 | if ( $screen eq 'cfg_archives' ) |
|---|
| 1665 | && $perms->can_set_publish_paths |
|---|
| 1666 | && $app->param('archive_url') !~ m.^https?://. |
|---|
| 1667 | && $app->param('enable_archive_paths'); |
|---|
| 1668 | return $eh->error( MT->translate("You did not specify an Archive Root.") ) |
|---|
| 1669 | if ( $screen eq 'cfg_archives' ) |
|---|
| 1670 | && $app->param('archive_path') =~ m/^\s*$/ |
|---|
| 1671 | && $app->param('enable_archive_paths'); |
|---|
| 1672 | return 1; |
|---|
| 1673 | } |
|---|
| 1674 | |
|---|
| 1675 | sub post_delete { |
|---|
| 1676 | my ( $eh, $app, $obj ) = @_; |
|---|
| 1677 | |
|---|
| 1678 | $app->log( |
|---|
| 1679 | { |
|---|
| 1680 | message => $app->translate( |
|---|
| 1681 | "Blog '[_1]' (ID:[_2]) deleted by '[_3]'", |
|---|
| 1682 | $obj->name, $obj->id, $app->user->name |
|---|
| 1683 | ), |
|---|
| 1684 | level => MT::Log::INFO(), |
|---|
| 1685 | class => 'blog', |
|---|
| 1686 | category => 'delete' |
|---|
| 1687 | } |
|---|
| 1688 | ); |
|---|
| 1689 | $app->_delete_pseudo_association(undef, $obj->id); |
|---|
| 1690 | } |
|---|
| 1691 | |
|---|
| 1692 | sub make_blog_list { |
|---|
| 1693 | my $app = shift; |
|---|
| 1694 | my ($blogs) = @_; |
|---|
| 1695 | |
|---|
| 1696 | my $author = $app->user; |
|---|
| 1697 | my $data; |
|---|
| 1698 | my $can_edit_authors = 1 if $author->is_superuser; |
|---|
| 1699 | my @blog_ids = map { $_->id } @$blogs; |
|---|
| 1700 | my %counts; |
|---|
| 1701 | my $e_iter = $app->model('entry')->count_group_by( |
|---|
| 1702 | { blog_id => \@blog_ids }, |
|---|
| 1703 | { group => [ 'blog_id' ] } |
|---|
| 1704 | ); |
|---|
| 1705 | while ( my ($e_count, $e_blog_id) = $e_iter->() ) { |
|---|
| 1706 | $counts{$e_blog_id}{'entry'} = $e_count; |
|---|
| 1707 | } |
|---|
| 1708 | my $c_iter = $app->model('comment')->count_group_by( |
|---|
| 1709 | { blog_id => \@blog_ids }, |
|---|
| 1710 | { group => [ 'blog_id' ] } |
|---|
| 1711 | ); |
|---|
| 1712 | while ( my ($c_count, $c_blog_id) = $c_iter->() ) { |
|---|
| 1713 | $counts{$c_blog_id}{'comment'} = $c_count; |
|---|
| 1714 | } |
|---|
| 1715 | my $p_iter = $app->model('tbping')->count_group_by( |
|---|
| 1716 | { blog_id => \@blog_ids }, |
|---|
| 1717 | { group => [ 'blog_id' ] } |
|---|
| 1718 | ); |
|---|
| 1719 | while ( my ($p_count, $p_blog_id) = $p_iter->() ) { |
|---|
| 1720 | $counts{$p_blog_id}{'ping'} = $p_count; |
|---|
| 1721 | } |
|---|
| 1722 | |
|---|
| 1723 | for my $blog (@$blogs) { |
|---|
| 1724 | my $blog_id = $blog->id; |
|---|
| 1725 | my $perms = $author->permissions($blog_id); |
|---|
| 1726 | my $row = { |
|---|
| 1727 | id => $blog->id, |
|---|
| 1728 | name => $blog->name, |
|---|
| 1729 | description => $blog->description, |
|---|
| 1730 | site_url => $blog->site_url |
|---|
| 1731 | }; |
|---|
| 1732 | $row->{num_entries} = $counts{$blog_id}{'entry'}; |
|---|
| 1733 | $row->{num_comments} = $counts{$blog_id}{'comment'}; |
|---|
| 1734 | $row->{num_pings} = $counts{$blog_id}{'ping'}; |
|---|
| 1735 | $row->{can_create_post} = $perms->can_create_post; |
|---|
| 1736 | $row->{can_edit_entries} = $perms->can_create_post |
|---|
| 1737 | || $perms->can_edit_all_posts |
|---|
| 1738 | || $perms->can_publish_post; |
|---|
| 1739 | $row->{can_edit_templates} = $perms->can_edit_templates; |
|---|
| 1740 | $row->{can_edit_config} = $perms->can_edit_config |
|---|
| 1741 | || $perms->can_administer_blog; |
|---|
| 1742 | $row->{can_set_publish_paths} = $perms->can_set_publish_paths |
|---|
| 1743 | || $perms->can_administer_blog; |
|---|
| 1744 | $row->{can_manage_feedback} = $perms->can_manage_feedback; |
|---|
| 1745 | $row->{can_edit_assets} = $perms->can_edit_assets; |
|---|
| 1746 | $row->{can_administer_blog} = $perms->can_administer_blog; |
|---|
| 1747 | push @$data, $row; |
|---|
| 1748 | } |
|---|
| 1749 | $data; |
|---|
| 1750 | } |
|---|
| 1751 | |
|---|
| 1752 | sub build_blog_table { |
|---|
| 1753 | my $app = shift; |
|---|
| 1754 | my (%args) = @_; |
|---|
| 1755 | |
|---|
| 1756 | my $blog_class = $app->model('blog'); |
|---|
| 1757 | my $tbp_class = $app->model('ping'); |
|---|
| 1758 | my $entry_class = $app->model('entry'); |
|---|
| 1759 | my $comment_class = $app->model('comment'); |
|---|
| 1760 | |
|---|
| 1761 | my $iter; |
|---|
| 1762 | if ( $args{load_args} ) { |
|---|
| 1763 | my $class = $app->model('blog'); |
|---|
| 1764 | $iter = $class->load_iter( @{ $args{load_args} } ); |
|---|
| 1765 | } |
|---|
| 1766 | elsif ( $args{iter} ) { |
|---|
| 1767 | $iter = $args{iter}; |
|---|
| 1768 | } |
|---|
| 1769 | elsif ( $args{items} ) { |
|---|
| 1770 | $iter = sub { pop @{ $args{items} } }; |
|---|
| 1771 | } |
|---|
| 1772 | return [] unless $iter; |
|---|
| 1773 | my $param = $args{param}; |
|---|
| 1774 | |
|---|
| 1775 | my $author = $app->user; |
|---|
| 1776 | my $can_edit_authors = $author->is_superuser; |
|---|
| 1777 | my @data; |
|---|
| 1778 | my $i; |
|---|
| 1779 | my ( $entry_count, $ping_count, $comment_count ); |
|---|
| 1780 | while ( my $blog = $iter->() ) { |
|---|
| 1781 | my $blog_id = $blog->id; |
|---|
| 1782 | my $row = { |
|---|
| 1783 | id => $blog->id, |
|---|
| 1784 | name => $blog->name, |
|---|
| 1785 | description => $blog->description, |
|---|
| 1786 | site_url => $blog->site_url |
|---|
| 1787 | }; |
|---|
| 1788 | |
|---|
| 1789 | # we should use count by group here... |
|---|
| 1790 | $row->{num_entries} = |
|---|
| 1791 | ( $entry_count ? $entry_count->{$blog_id} : $entry_count->{$blog_id} = |
|---|
| 1792 | MT::Entry->count( { blog_id => $blog_id } ) ) |
|---|
| 1793 | || 0; |
|---|
| 1794 | $row->{num_comments} = ( |
|---|
| 1795 | $comment_count |
|---|
| 1796 | ? $comment_count->{$blog_id} |
|---|
| 1797 | : $comment_count->{$blog_id} = MT::Comment->count( |
|---|
| 1798 | { blog_id => $blog_id, junk_status => MT::Comment::NOT_JUNK() } |
|---|
| 1799 | ) |
|---|
| 1800 | ) |
|---|
| 1801 | || 0; |
|---|
| 1802 | $row->{num_pings} = ( |
|---|
| 1803 | $ping_count ? $ping_count->{$blog_id} : $ping_count->{$blog_id} = |
|---|
| 1804 | MT::TBPing->count( |
|---|
| 1805 | { blog_id => $blog_id, junk_status => MT::TBPing::NOT_JUNK() } |
|---|
| 1806 | ) |
|---|
| 1807 | ) || 0; |
|---|
| 1808 | $row->{num_authors} = 0; |
|---|
| 1809 | |
|---|
| 1810 | # FIXME: This isn't efficient |
|---|
| 1811 | my $iter = MT::Permission->load_iter( |
|---|
| 1812 | { |
|---|
| 1813 | blog_id => [ 0, $blog_id ], |
|---|
| 1814 | |
|---|
| 1815 | # role_mask => [ 2, undef ] |
|---|
| 1816 | #}, { |
|---|
| 1817 | # range_incl => { 'role_mask' => 1 } |
|---|
| 1818 | } |
|---|
| 1819 | ); |
|---|
| 1820 | my %a; |
|---|
| 1821 | while ( my $p = $iter->() ) { |
|---|
| 1822 | next if exists $a{ $p->author_id }; |
|---|
| 1823 | $a{ $p->author_id } = 1; |
|---|
| 1824 | $row->{num_authors}++ if $p->can_create_post; |
|---|
| 1825 | } |
|---|
| 1826 | if ( $author->is_superuser ) { |
|---|
| 1827 | $row->{can_create_post} = 1; |
|---|
| 1828 | $row->{can_edit_entries} = 1; |
|---|
| 1829 | $row->{can_edit_templates} = 1; |
|---|
| 1830 | $row->{can_edit_config} = 1; |
|---|
| 1831 | $row->{can_set_publish_paths} = 1; |
|---|
| 1832 | $row->{can_administer_blog} = 1; |
|---|
| 1833 | } |
|---|
| 1834 | else { |
|---|
| 1835 | my $perms = $author->permissions($blog_id); |
|---|
| 1836 | $row->{can_create_post} = $perms->can_create_post; |
|---|
| 1837 | $row->{can_edit_entries} = $perms->can_create_post |
|---|
| 1838 | || $perms->can_edit_all_posts |
|---|
| 1839 | || $perms->can_publish_post; |
|---|
| 1840 | $row->{can_edit_templates} = $perms->can_edit_templates; |
|---|
| 1841 | $row->{can_edit_config} = $perms->can_edit_config |
|---|
| 1842 | || $perms->can_administer_blog; |
|---|
| 1843 | $row->{can_set_publish_paths} = $perms->can_set_publish_paths |
|---|
| 1844 | || $perms->can_administer_blog; |
|---|
| 1845 | $row->{can_administer_blog} = $perms->can_administer_blog; |
|---|
| 1846 | } |
|---|
| 1847 | $row->{object} = $blog; |
|---|
| 1848 | push @data, $row; |
|---|
| 1849 | } |
|---|
| 1850 | |
|---|
| 1851 | if (@data) { |
|---|
| 1852 | $param->{blog_table}[0]{object_loop} = \@data; |
|---|
| 1853 | $app->load_list_actions( 'blog', \%$param ); |
|---|
| 1854 | $param->{object_loop} = $param->{blog_table}[0]{object_loop}; |
|---|
| 1855 | } |
|---|
| 1856 | |
|---|
| 1857 | \@data; |
|---|
| 1858 | } |
|---|
| 1859 | |
|---|
| 1860 | sub cfg_blog { |
|---|
| 1861 | my $q = $_[0]->{query}; |
|---|
| 1862 | $q->param( '_type', 'blog' ); |
|---|
| 1863 | $q->param( 'id', scalar $q->param('blog_id') ); |
|---|
| 1864 | $_[0]->forward( "view", { output => 'cfg_prefs.tmpl' } ); |
|---|
| 1865 | } |
|---|
| 1866 | |
|---|
| 1867 | sub cfg_archives_save { |
|---|
| 1868 | my $app = shift; |
|---|
| 1869 | my ($blog) = @_; |
|---|
| 1870 | |
|---|
| 1871 | my $at = $app->param('preferred_archive_type'); |
|---|
| 1872 | $blog->archive_type_preferred($at); |
|---|
| 1873 | $blog->include_cache( $app->param('include_cache') ? 1 : 0 ); |
|---|
| 1874 | require MT::PublishOption; |
|---|
| 1875 | if ( ( $blog->custom_dynamic_templates eq 'all' |
|---|
| 1876 | || $blog->custom_dynamic_templates eq 'archives' ) |
|---|
| 1877 | && ( $app->model('template')->exist( |
|---|
| 1878 | { blog_id => $blog->id, build_type => MT::PublishOption::DYNAMIC() }) |
|---|
| 1879 | || $app->model('templatemap')->exist( |
|---|
| 1880 | { blog_id => $blog->id, build_type => MT::PublishOption::DYNAMIC() }) ) ) |
|---|
| 1881 | { |
|---|
| 1882 | # dynamic enabled and caching option may have changed - update mtview |
|---|
| 1883 | my $cache = $app->param('dynamic_cache') ? 1 : 0; |
|---|
| 1884 | my $conditional = $app->param('dynamic_conditional') ? 1 : 0; |
|---|
| 1885 | _create_mtview( $blog, $blog->site_path, $cache, $conditional ); |
|---|
| 1886 | _create_dynamiccache_dir( $blog, $blog->site_path ) if $cache; |
|---|
| 1887 | if ( $blog->archive_path ) { |
|---|
| 1888 | _create_mtview( $blog, $blog->archive_path, $cache, $conditional ); |
|---|
| 1889 | _create_dynamiccache_dir( $blog, $blog->archive_path ) if $cache; |
|---|
| 1890 | } |
|---|
| 1891 | } |
|---|
| 1892 | $blog->save |
|---|
| 1893 | or return $app->error( |
|---|
| 1894 | $app->translate( "Saving blog failed: [_1]", $blog->errstr ) ); |
|---|
| 1895 | |
|---|
| 1896 | 1; |
|---|
| 1897 | } |
|---|
| 1898 | |
|---|
| 1899 | sub cfg_publish_profile_save { |
|---|
| 1900 | my $app = shift; |
|---|
| 1901 | my ($blog) = @_; |
|---|
| 1902 | |
|---|
| 1903 | my $dcty = $app->param('dynamicity') || 'none'; |
|---|
| 1904 | my $pq = $dcty =~ m/^async/ ? 1 : 0; |
|---|
| 1905 | $blog->publish_queue( $pq ); |
|---|
| 1906 | if ( $dcty eq 'all' || $dcty eq 'archives' ) { |
|---|
| 1907 | # update the dynamic publishing options if they changed |
|---|
| 1908 | update_dynamicity( |
|---|
| 1909 | $app, |
|---|
| 1910 | $blog |
|---|
| 1911 | ); |
|---|
| 1912 | } |
|---|
| 1913 | $blog->save |
|---|
| 1914 | or return $app->error( |
|---|
| 1915 | $app->translate( "Saving blog failed: [_1]", $blog->errstr ) ); |
|---|
| 1916 | |
|---|
| 1917 | 1; |
|---|
| 1918 | } |
|---|
| 1919 | |
|---|
| 1920 | # FIXME: Faulty, since it doesn't take into account module includes |
|---|
| 1921 | sub RegistrationAffectsArchives { |
|---|
| 1922 | my ( $blog_id, $archive_type ) = @_; |
|---|
| 1923 | require MT::TemplateMap; |
|---|
| 1924 | require MT::Template; |
|---|
| 1925 | my @tms = MT::TemplateMap->load( |
|---|
| 1926 | { |
|---|
| 1927 | archive_type => $archive_type, |
|---|
| 1928 | blog_id => $blog_id |
|---|
| 1929 | } |
|---|
| 1930 | ); |
|---|
| 1931 | grep { !$_->build_dynamic && ($_->text =~ /<MT:?IfRegistration/i) } |
|---|
| 1932 | map { MT::Template->load( $_->template_id ) } @tms; |
|---|
| 1933 | } |
|---|
| 1934 | |
|---|
| 1935 | sub update_publishing_profile { |
|---|
| 1936 | my $app = shift; |
|---|
| 1937 | my ( $blog ) = @_; |
|---|
| 1938 | |
|---|
| 1939 | my $dcty = $blog->custom_dynamic_templates; |
|---|
| 1940 | |
|---|
| 1941 | require MT::PublishOption; |
|---|
| 1942 | require MT::Template; |
|---|
| 1943 | |
|---|
| 1944 | if ( ($dcty eq 'none') || ($dcty =~ m/^async/) ) { |
|---|
| 1945 | my @templates = MT::Template->load( { |
|---|
| 1946 | blog_id => $blog->id, |
|---|
| 1947 | # FIXME: enumeration of types |
|---|
| 1948 | type => |
|---|
| 1949 | [ 'index', 'archive', 'individual', 'page', 'category' ], |
|---|
| 1950 | } ); |
|---|
| 1951 | for my $tmpl (@templates) { |
|---|
| 1952 | my $bt = $tmpl->build_type || 0; |
|---|
| 1953 | # Do not make automatic modifications to templates with these |
|---|
| 1954 | # manually configured build types |
|---|
| 1955 | next if $bt == MT::PublishOption::DISABLED(); |
|---|
| 1956 | next if $bt == MT::PublishOption::MANUALLY(); |
|---|
| 1957 | next if $bt == MT::PublishOption::SCHEDULED(); |
|---|
| 1958 | |
|---|
| 1959 | if ($dcty eq 'async_partial') { |
|---|
| 1960 | # these should be build synchronously |
|---|
| 1961 | if (($tmpl->identifier || '') =~ m/^(main_index|feed_recent)$/) { |
|---|
| 1962 | $tmpl->build_type(MT::PublishOption::ONDEMAND()); |
|---|
| 1963 | } else { |
|---|
| 1964 | if (($tmpl->type eq 'individual') || ($tmpl->type eq 'page')) { |
|---|
| 1965 | my @tmpl_maps = MT::TemplateMap->load( { template_id => $tmpl->id } ); |
|---|
| 1966 | foreach my $tmpl_map (@tmpl_maps) { |
|---|
| 1967 | if (($tmpl_map->archive_type =~ m/^(Individual|Page)$/) && |
|---|
| 1968 | ($tmpl_map->is_preferred)) { |
|---|
| 1969 | $tmpl_map->build_type(MT::PublishOption::ONDEMAND()); |
|---|
| 1970 | $tmpl_map->save; |
|---|
| 1971 | next; |
|---|
| 1972 | } |
|---|
| 1973 | if ( $tmpl_map->build_type != MT::PublishOption::ASYNC() ) { |
|---|
| 1974 | $tmpl_map->build_type(MT::PublishOption::ASYNC()); |
|---|
| 1975 | $tmpl_map->save; |
|---|
| 1976 | } |
|---|
| 1977 | } |
|---|
| 1978 | } |
|---|
| 1979 | else { |
|---|
| 1980 | # updates all template maps too |
|---|
| 1981 | $tmpl->build_type(MT::PublishOption::ASYNC()); |
|---|
| 1982 | } |
|---|
| 1983 | } |
|---|
| 1984 | } elsif ($dcty eq 'async_all') { |
|---|
| 1985 | $tmpl->build_type(MT::PublishOption::ASYNC()); |
|---|
| 1986 | } else { |
|---|
| 1987 | $tmpl->build_type(MT::PublishOption::ONDEMAND()); |
|---|
| 1988 | } |
|---|
| 1989 | $tmpl->save(); |
|---|
| 1990 | } |
|---|
| 1991 | } |
|---|
| 1992 | elsif ( $dcty eq 'archives' ) { |
|---|
| 1993 | my @templates = MT::Template->load( { |
|---|
| 1994 | blog_id => $blog->id, |
|---|
| 1995 | # FIXME: enumeration of types |
|---|
| 1996 | type => |
|---|
| 1997 | [ 'index', 'archive', 'individual', 'page', 'category' ], |
|---|
| 1998 | } ); |
|---|
| 1999 | for my $tmpl (@templates) { |
|---|
| 2000 | my $bt = $tmpl->build_type || 0; |
|---|
| 2001 | next if $bt == MT::PublishOption::DISABLED(); |
|---|
| 2002 | next if $bt == MT::PublishOption::MANUALLY(); |
|---|
| 2003 | next if $bt == MT::PublishOption::SCHEDULED(); |
|---|
| 2004 | |
|---|
| 2005 | $tmpl->build_type( $tmpl->type ne 'index' ? MT::PublishOption::DYNAMIC() : MT::PublishOption::ONDEMAND() ); |
|---|
| 2006 | $tmpl->save(); |
|---|
| 2007 | } |
|---|
| 2008 | } |
|---|
| 2009 | elsif ( $dcty eq 'all' ) { |
|---|
| 2010 | my @templates = MT::Template->load( |
|---|
| 2011 | { |
|---|
| 2012 | blog_id => $blog->id, |
|---|
| 2013 | |
|---|
| 2014 | # FIXME: enumeration of types |
|---|
| 2015 | type => |
|---|
| 2016 | [ 'index', 'archive', 'individual', 'page', 'category' ], |
|---|
| 2017 | } |
|---|
| 2018 | ); |
|---|
| 2019 | for my $tmpl (@templates) { |
|---|
| 2020 | my $bt = $tmpl->build_type || 0; |
|---|
| 2021 | next if $bt == MT::PublishOption::DISABLED(); |
|---|
| 2022 | next if $bt == MT::PublishOption::MANUALLY(); |
|---|
| 2023 | next if $bt == MT::PublishOption::SCHEDULED(); |
|---|
| 2024 | |
|---|
| 2025 | $tmpl->build_type( MT::PublishOption::DYNAMIC() ); |
|---|
| 2026 | $tmpl->save(); |
|---|
| 2027 | } |
|---|
| 2028 | } |
|---|
| 2029 | return 1; |
|---|
| 2030 | } |
|---|
| 2031 | |
|---|
| 2032 | sub update_dynamicity { |
|---|
| 2033 | my $app = shift; |
|---|
| 2034 | my ( $blog ) = @_; |
|---|
| 2035 | |
|---|
| 2036 | my $cache = $app->param('dynamic_cache') ? 1 : 0; |
|---|
| 2037 | my $conditional = $app->param('dynamic_conditional') ? 1 : 0; |
|---|
| 2038 | |
|---|
| 2039 | require MT::PublishOption; |
|---|
| 2040 | if ( $app->model('template')->exist( |
|---|
| 2041 | { blog_id => $blog->id, build_type => MT::PublishOption::DYNAMIC() }) |
|---|
| 2042 | || $app->model('templatemap')->exist( |
|---|
| 2043 | { blog_id => $blog->id, build_type => MT::PublishOption::DYNAMIC() }) ) |
|---|
| 2044 | { |
|---|
| 2045 | # dynamic publishing enabled |
|---|
| 2046 | prepare_dynamic_publishing($app, $blog, $cache, $conditional, $blog->site_path, $blog->site_url); |
|---|
| 2047 | if ( $blog->archive_path ) { |
|---|
| 2048 | prepare_dynamic_publishing($app, $blog, $cache, $conditional, $blog->archive_path, $blog->archive_url); |
|---|
| 2049 | } |
|---|
| 2050 | my $compiled_template_path = |
|---|
| 2051 | File::Spec->catfile( $blog->site_path(), 'templates_c' ); |
|---|
| 2052 | if ( -d $compiled_template_path ) { |
|---|
| 2053 | $app->add_return_arg( 'no_writecache' => 1 ) |
|---|
| 2054 | unless ( -w $compiled_template_path ); |
|---|
| 2055 | } |
|---|
| 2056 | else { |
|---|
| 2057 | $app->add_return_arg( 'no_cachedir' => 1 ) |
|---|
| 2058 | unless ( -d $compiled_template_path ); |
|---|
| 2059 | } |
|---|
| 2060 | |
|---|
| 2061 | # FIXME: use FileMgr |
|---|
| 2062 | if ($cache) { |
|---|
| 2063 | my $cache_path = File::Spec->catfile( $blog->site_path(), 'cache' ); |
|---|
| 2064 | if ( -d $cache_path ) { |
|---|
| 2065 | $app->add_return_arg( 'no_write_cache_path' => 1 ) |
|---|
| 2066 | unless ( -w $cache_path ); |
|---|
| 2067 | } |
|---|
| 2068 | else { |
|---|
| 2069 | $app->add_return_arg( 'no_cache_path' => 1 ) |
|---|
| 2070 | unless ( -d $cache_path ); |
|---|
| 2071 | } |
|---|
| 2072 | } |
|---|
| 2073 | } |
|---|
| 2074 | } |
|---|
| 2075 | |
|---|
| 2076 | sub _create_mtview { |
|---|
| 2077 | my ( $blog, $site_path, $cache, $conditional ) = @_; |
|---|
| 2078 | |
|---|
| 2079 | my $mtview_path = File::Spec->catfile( $site_path, "mtview.php" ); |
|---|
| 2080 | eval { |
|---|
| 2081 | my $mv_contents = ''; |
|---|
| 2082 | if ( -f $mtview_path ) { |
|---|
| 2083 | open( my $mv, "<$mtview_path" ); |
|---|
| 2084 | while ( my $line = <$mv> ) { |
|---|
| 2085 | $mv_contents .= $line if ( $line !~ m!^//|<\?(?:php)?|\?>! ); |
|---|
| 2086 | } |
|---|
| 2087 | close $mv; |
|---|
| 2088 | } |
|---|
| 2089 | my $cgi_path = MT->instance->server_path() || ""; |
|---|
| 2090 | $cgi_path =~ s!/*$!!; |
|---|
| 2091 | my $mtphp_path = File::Spec->canonpath("$cgi_path/php/mt.php"); |
|---|
| 2092 | my $blog_id = $blog->id; |
|---|
| 2093 | my $config = MT->instance->{cfg_file}; |
|---|
| 2094 | my $cache_code = $cache ? "\n \$mt->caching = true;" : ''; |
|---|
| 2095 | my $conditional_code = |
|---|
| 2096 | $conditional ? "\n \$mt->conditional = true;" : ''; |
|---|
| 2097 | my $new_mtview = <<NEW_MTVIEW; |
|---|
| 2098 | |
|---|
| 2099 | include('$mtphp_path'); |
|---|
| 2100 | \$mt = new MT($blog_id, '$config');$cache_code$conditional_code |
|---|
| 2101 | \$mt->view(); |
|---|
| 2102 | NEW_MTVIEW |
|---|
| 2103 | |
|---|
| 2104 | if ( $new_mtview ne substr( $mv_contents, 0, length($new_mtview) ) ) { |
|---|
| 2105 | $mv_contents =~ s!\n!\n//!gs; |
|---|
| 2106 | my $mtview = <<MTVIEW; |
|---|
| 2107 | <?php |
|---|
| 2108 | $new_mtview |
|---|
| 2109 | $mv_contents |
|---|
| 2110 | ?> |
|---|
| 2111 | MTVIEW |
|---|
| 2112 | |
|---|
| 2113 | $blog->file_mgr->mkpath( $site_path ); |
|---|
| 2114 | open( my $mv, ">$mtview_path" ) |
|---|
| 2115 | || die "Couldn't open $mtview_path for appending"; |
|---|
| 2116 | print $mv $mtview || die "Couldn't write to $mtview_path"; |
|---|
| 2117 | close $mv; |
|---|
| 2118 | } |
|---|
| 2119 | }; |
|---|
| 2120 | if ($@) { print STDERR $@; } |
|---|
| 2121 | } |
|---|
| 2122 | |
|---|
| 2123 | sub _create_dynamiccache_dir { |
|---|
| 2124 | my ( $blog, $site_path ) = @_; |
|---|
| 2125 | |
|---|
| 2126 | # FIXME: use FileMgr |
|---|
| 2127 | my $cache_path = File::Spec->catfile( $site_path, 'cache' ); |
|---|
| 2128 | my $fmgr = $blog->file_mgr; |
|---|
| 2129 | my $saved_umask = MT->config->DirUmask; |
|---|
| 2130 | MT->config->DirUmask('0000'); |
|---|
| 2131 | $fmgr->mkpath($cache_path); |
|---|
| 2132 | MT->config->DirUmask($saved_umask); |
|---|
| 2133 | my $message; |
|---|
| 2134 | if ( -d $cache_path ) { |
|---|
| 2135 | $message = MT->translate( |
|---|
| 2136 | 'Error: Movable Type cannot write to the template cache directory. Please check the permissions for the directory called <code>[_1]</code> underneath your blog directory.', |
|---|
| 2137 | 'cache' |
|---|
| 2138 | ) unless ( -w $cache_path ); |
|---|
| 2139 | } |
|---|
| 2140 | else { |
|---|
| 2141 | $message = MT->translate( |
|---|
| 2142 | 'Error: Movable Type was not able to create a directory to cache your dynamic templates. You should create a directory called <code>[_1]</code> underneath your blog directory.', |
|---|
| 2143 | 'cache' |
|---|
| 2144 | ) unless ( -d $cache_path ); |
|---|
| 2145 | } |
|---|
| 2146 | if ( $message ) { |
|---|
| 2147 | MT->log( |
|---|
| 2148 | { |
|---|
| 2149 | message => $message, |
|---|
| 2150 | level => MT::Log::ERROR(), |
|---|
| 2151 | class => 'system', |
|---|
| 2152 | } |
|---|
| 2153 | ); |
|---|
| 2154 | } |
|---|
| 2155 | } |
|---|
| 2156 | |
|---|
| 2157 | sub prepare_dynamic_publishing { |
|---|
| 2158 | my ( $cb, $blog, $cache, $conditional, $site_path, $site_url ) = @_; |
|---|
| 2159 | |
|---|
| 2160 | my $htaccess_path = File::Spec->catfile( $site_path, ".htaccess" ); |
|---|
| 2161 | my $mtview_path = File::Spec->catfile( $site_path, "mtview.php" ); |
|---|
| 2162 | |
|---|
| 2163 | ## Don't re-create when files are there in callback. |
|---|
| 2164 | return 1 |
|---|
| 2165 | if !defined($cache) |
|---|
| 2166 | && !defined($conditional) |
|---|
| 2167 | && ( 'MT::Callback' eq ref($cb) ) |
|---|
| 2168 | && ( -f $htaccess_path ) |
|---|
| 2169 | && ( -f $mtview_path ); |
|---|
| 2170 | |
|---|
| 2171 | # IIS itself does not handle .htaccess, |
|---|
| 2172 | # but IISPassword (3rd party) does and dies with this. |
|---|
| 2173 | if ( $ENV{SERVER_SOFTWARE} !~ /Microsoft-IIS/ ) { |
|---|
| 2174 | eval { |
|---|
| 2175 | require URI; |
|---|
| 2176 | my $mtview_server_url = new URI( $site_url ); |
|---|
| 2177 | $mtview_server_url = $mtview_server_url->path(); |
|---|
| 2178 | $mtview_server_url .= |
|---|
| 2179 | ( $mtview_server_url =~ m|/$| ? "" : "/" ) . "mtview.php"; |
|---|
| 2180 | |
|---|
| 2181 | my $contents = ""; |
|---|
| 2182 | if ( open( HT, $htaccess_path ) ) { |
|---|
| 2183 | local $/ = undef; |
|---|
| 2184 | $contents = <HT>; |
|---|
| 2185 | close HT; |
|---|
| 2186 | } |
|---|
| 2187 | if ( $contents !~ /^\s*Rewrite(Cond|Engine|Rule)\b/m ) { |
|---|
| 2188 | my $htaccess = <<HTACCESS; |
|---|
| 2189 | |
|---|
| 2190 | ## %%%%%%% Movable Type generated this part; don't remove this line! %%%%%%% |
|---|
| 2191 | # Disable fancy indexes, so mtview.php gets a chance... |
|---|
| 2192 | Options -Indexes +SymLinksIfOwnerMatch |
|---|
| 2193 | <IfModule mod_rewrite.c> |
|---|
| 2194 | # The mod_rewrite solution is the preferred way to invoke |
|---|
| 2195 | # dynamic pages, because of its flexibility. |
|---|
| 2196 | |
|---|
| 2197 | # Add mtview.php to the list of DirectoryIndex options, listing it last, |
|---|
| 2198 | # so it is invoked only if the common choices aren't present... |
|---|
| 2199 | <IfModule mod_dir.c> |
|---|
| 2200 | DirectoryIndex index.php index.html index.htm default.htm default.html default.asp $mtview_server_url |
|---|
| 2201 | </IfModule> |
|---|
| 2202 | |
|---|
| 2203 | RewriteEngine on |
|---|
| 2204 | |
|---|
| 2205 | # don't serve mtview.php if the request is for a real directory |
|---|
| 2206 | # (allows the DirectoryIndex lookup to function) |
|---|
| 2207 | RewriteCond %{REQUEST_FILENAME} !-d |
|---|
| 2208 | |
|---|
| 2209 | # don't serve mtview.php if the request is for a real file |
|---|
| 2210 | # (allows the actual file to be served) |
|---|
| 2211 | RewriteCond %{REQUEST_FILENAME} !-f |
|---|
| 2212 | # anything else is handed to mtview.php for resolution |
|---|
| 2213 | RewriteRule ^(.*)\$ $mtview_server_url [L,QSA] |
|---|
| 2214 | </IfModule> |
|---|
| 2215 | |
|---|
| 2216 | <IfModule !mod_rewrite.c> |
|---|
| 2217 | # if mod_rewrite is unavailable, we forward any missing page |
|---|
| 2218 | # or unresolved directory index requests to mtview |
|---|
| 2219 | # if mtview.php can resolve the request, it returns a 200 |
|---|
| 2220 | # result code which prevents any 4xx error code from going |
|---|
| 2221 | # to the server's access logs. However, an error will be |
|---|
| 2222 | # reported in the error log file. If this is your only choice, |
|---|
| 2223 | # and you want to suppress these messages, adding a "LogLevel crit" |
|---|
| 2224 | # directive within your VirtualHost or root configuration for |
|---|
| 2225 | # Apache will turn them off. |
|---|
| 2226 | ErrorDocument 404 $mtview_server_url |
|---|
| 2227 | ErrorDocument 403 $mtview_server_url |
|---|
| 2228 | </IfModule> |
|---|
| 2229 | ## ******* Movable Type generated this part; don't remove this line! ******* |
|---|
| 2230 | |
|---|
| 2231 | HTACCESS |
|---|
| 2232 | |
|---|
| 2233 | $blog->file_mgr->mkpath( $site_path ); |
|---|
| 2234 | |
|---|
| 2235 | open( HT, ">>$htaccess_path" ) |
|---|
| 2236 | || die "Couldn't open $htaccess_path for appending"; |
|---|
| 2237 | print HT $htaccess || die "Couldn't write to $htaccess_path"; |
|---|
| 2238 | close HT; |
|---|
| 2239 | } |
|---|
| 2240 | }; |
|---|
| 2241 | if ($@) { print STDERR $@; } |
|---|
| 2242 | } |
|---|
| 2243 | |
|---|
| 2244 | _create_mtview( $blog, $site_path, $cache, $conditional ); |
|---|
| 2245 | |
|---|
| 2246 | my $compiled_template_path = |
|---|
| 2247 | File::Spec->catfile( $site_path, 'templates_c' ); |
|---|
| 2248 | my $fmgr = $blog->file_mgr; |
|---|
| 2249 | my $cfg = MT->config; |
|---|
| 2250 | my $saved_umask = $cfg->DirUmask; |
|---|
| 2251 | $cfg->DirUmask('0000'); |
|---|
| 2252 | $fmgr->mkpath($compiled_template_path); |
|---|
| 2253 | $cfg->DirUmask($saved_umask); |
|---|
| 2254 | my $message = q(); |
|---|
| 2255 | |
|---|
| 2256 | if ( -d $compiled_template_path ) { |
|---|
| 2257 | $message = MT->translate( |
|---|
| 2258 | 'Error: Movable Type cannot write to the template cache directory. Please check the permissions for the directory called <code>[_1]</code> underneath your blog directory.', |
|---|
| 2259 | 'templates_c' |
|---|
| 2260 | ) unless ( -w $compiled_template_path ); |
|---|
| 2261 | } |
|---|
| 2262 | else { |
|---|
| 2263 | $message = MT->translate( |
|---|
| 2264 | 'Error: Movable Type was not able to create a directory to cache your dynamic templates. You should create a directory called <code>[_1]</code> underneath your blog directory.', |
|---|
| 2265 | 'templates_c' |
|---|
| 2266 | ) unless ( -d $compiled_template_path ); |
|---|
| 2267 | } |
|---|
| 2268 | |
|---|
| 2269 | if ($cache) { |
|---|
| 2270 | _create_dynamiccache_dir( $blog, $site_path ); |
|---|
| 2271 | } |
|---|
| 2272 | } |
|---|
| 2273 | |
|---|
| 2274 | 1; |
|---|