\n"; $body .= LJ::make_authas_select($remote, { 'authas' => $GET{'authas'} }) . "\n"; $body .= "\n\n"; }; # used for error messages my $err = sub { $title = "Error"; $body = ''; $authasform->() if $remote; $body .= ""; return; }; # id is optional my $id = $POST{'id'} if $POST{'id'} =~ /^\d+$/; # this catches core_hidden if it's set $POST{'parid'} ||= $POST{'parid_hidden'}; # authenticate user $remote = LJ::get_remote(); return $err->('You must be logged in to view your layers.') unless $remote; my $authas = $GET{'authas'} || $remote->{'user'}; my $u = LJ::get_authas_user($authas); # if we don't have a u, maybe they're an admin and can view stuff anyway? my $noactions = 0; if ($GET{user} && (LJ::check_priv($remote, 'canview', 'styles') || LJ::check_priv($remote, 'canview', '*'))) { return $err->('This privilege cannot be used on the system account.') if $GET{user} eq 'system'; $u = LJ::load_user($GET{user}); $noactions = 1; # don't let admins change anything } return $err->('You could not be authenticated as the specified user.') unless $u; # load user and public layers my $pub = LJ::S2::get_public_layers(); my $ulay = LJ::S2::get_layers_of_user($u); my $has_priv = LJ::get_cap($u, 's2styles'); return $err->($remote->{user} eq $u->{user} ? 'Your account type does not allow advanced customization.' : 'The selected user\'s account type does not allow advanced customization.' ) unless $has_priv; # start of output $title = "Your Layers"; $body .= BML::ml("Backlink", { 'link' => './', 'text' => 'Advanced Customization', }) . "\n"; $body .= BML::ml("Actionlink", { 'link' => "Your Styles", }) . "\n"; ### perform actions ### # create if ($POST{'action:create'} && !$noactions) { return $err->("You have reached your maximum number of allowed layers") if keys %$ulay >= LJ::get_cap($u, 's2layersmax'); my $err_badparid = "No/bogus parent layer ID given (for layouts and core languages, use core parent ID; for themes and layout languages, use layout ID)"; my $type = $POST{'type'} or return $err->("No layer type selected."); my $parid = $POST{'parid'}+0 or return $err->($err_badparid); return $err->("Invalid layer type") unless $type =~ /^layout|theme|user|i18nc?$/; my $parent_type = ($type eq "theme" || $type eq "i18n" || $type eq "user") ? "layout" : "core"; # parent ID is public layer if ($pub->{$parid}) { # of the wrong type return $err->($err_badparid) if $pub->{$parid}->{'type'} ne $parent_type; # parent ID is user layer, or completely invalid } else { return $err->($err_badparid) if ! $ulay->{$parid} || $ulay->{$parid}->{'type'} != $parent_type; } my $id = LJ::S2::create_layer($u, $parid, $type); return $err->("Error creating layer") unless $id; my $lay = { 'userid' => $u->{'userid'}, 'type' => $type, 'b2lid' => $parid, 's2lid' => $id, }; # help user out a bit, creating the beginning of their layer. my $s2 = "layerinfo \"type\" = \"$type\";\n"; $s2 .= "layerinfo \"name\" = \"\";\n\n"; my $error; unless (LJ::S2::layer_compile($lay, \$error, { 's2ref' => \$s2 })) { return $err->("Error setting up & compiling layer: $error"); } # redirect so they can't refresh and create a new layer again return BML::redirect("layers.bml?authas=$authas"); } # delete if ($POST{'action:del'} && !$noactions) { my $id = $POST{'id'}+0; my $lay = LJ::S2::load_layer($id); return $err->("The specified layer does not exist") unless $lay; return $err->("You do not own the specified layer") unless $lay->{'userid'} == $u->{'userid'}; unless ($POST{'confirm'}) { my $layerinfo = {}; LJ::S2::load_layer_info($layerinfo, [ $id ]); my $name = $layerinfo->{$id}->{'name'} ? "'$layerinfo->{$id}->{'name'}'" : "#$id"; $name = LJ::ehtml($name); $title = "Deleting layer $name"; $body .= "
"; $body .= BML::ml("Backlink", { 'link' => "layers.bml?authas=$authas", 'text' => 'Your Layers', }) . "\n"; $body .= "
"; $body .= LJ::html_hidden('action:del', '1', 'id', $id); $body .= "Are you sure you want to delete $lay->{'type'} layer $name?"; $body .= "

" . LJ::html_submit('confirm', 'Delete') . "

\n";; $body .= "
\n"; return; } LJ::S2::delete_layer($u, $id); return BML::redirect("layers.bml?authas=$authas"); } # authas switcher form unless ($noactions) { $authasform->(); } # show list of layers $body .= "\n"; if (%$ulay) { $body .= "\n"; $body .= "\n"; my $lastbase = 0; foreach my $lid (sort { $ulay->{$a}->{'b2lid'} <=> $ulay->{$b}->{'b2lid'} || $a <=> $b } keys %$ulay) { my $bid = $ulay->{$lid}->{'b2lid'}; if ($bid != $lastbase) { $lastbase = $bid; my $parlay = $ulay->{$bid} || $pub->{$bid}; my $pname = LJ::ehtml($parlay->{'name'}); $body .= "\n"; } my $lay = $ulay->{$lid}; my $name = LJ::ehtml($lay->{'name'}) || "(none)"; $body .= "\n" } $body .= "
LayerIDTypeNameActions
Child of layer $bid: $pname
$lid$lay->{'type'}$name"; $body .= "
"; $body .= LJ::html_submit('action:edit', 'Edit...', { disabled => $noactions }); $body .= "
"; $body .= "
"; $body .= LJ::html_hidden('id', $lid); $body .= LJ::html_submit('action:del', 'Delete...', { disabled => $noactions }); $body .= "
"; $body .= "
\n\n"; } else { $body .= "None p?>\n\n"; } # jump out if we're just viewing return if $noactions; # create layer $body .= "\n"; $body .= "
\n"; $body .= "\n"; $body .= "
\n"; $body .= "Type: " . LJ::html_select({ 'name' => 'type' }, "" => "", "layout" => "Layout", "i18nc" => "Language", ) . "\n"; my @corelayers = map { $_, $pub->{$_}->{'majorversion'} } sort { $pub->{$b}->{'majorversion'} <=> $pub->{$a}->{'majorversion'} } grep { $pub->{$_}->{'b2lid'} == 0 && $pub->{$_}->{'type'} eq 'core' && /^\d+$/} keys %$pub; $body .= " Core Version: " . LJ::html_select({ 'name' => 'parid', 'selected' => $corelayers[0], 'disabled' => @corelayers > 2 ? 0: 1 }, @corelayers ) . "\n"; # store value in hidden to later be copied to 'parid' if necessary # defaults to $corelayers[0] which should be the highest numbered core $body .= LJ::html_hidden("parid_hidden", $POST{'parid'} || $corelayers[0]) . "\n"; $body .= LJ::html_submit("action:create", "Create") . "\n"; $body .= "
\n"; $body .= "
\n\n"; $body .= "\n"; $body .= "
\n"; $body .= "Type: " . LJ::html_select({ 'name' => 'type' }, "" => "", "theme" => "Theme", "i18n" => "Language", "user" => "User" ) . "\n"; my @layouts = ('', ''); push @layouts, map { $_, $pub->{$_}->{'name'} } sort { $pub->{$a}->{'name'} cmp $pub->{$b}->{'name'} || $a <=> $b} grep { $pub->{$_}->{'type'} eq 'layout' && /^\d+$/} keys %$pub; if (%$ulay) { my @ulayouts = (); push @ulayouts, map { $_, "$ulay->{$_}->{'name'} (#$_)" } sort { $ulay->{$a}->{'name'} cmp $ulay->{$b}->{'name'} || $a <=> $b} grep { $ulay->{$_}->{'type'} eq 'layout' } keys %$ulay; push @layouts, ('', '---', @ulayouts) if @ulayouts; } $body .= "Layout: " . LJ::html_select({ 'name' => 'parid' }, @layouts) . "\n"; $body .= LJ::html_submit("action:create", "Create") . "\n"; $body .= "
\n\n"; return; } _code?> body=> page?>