ninja.leaping.permissionsex.command.OptionCommands.java Source code

Java tutorial

Introduction

Here is the source code for ninja.leaping.permissionsex.command.OptionCommands.java

Source

/**
 * PermissionsEx
 * Copyright (C) zml and PermissionsEx contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package ninja.leaping.permissionsex.command;

import com.google.common.collect.ImmutableSet;
import ninja.leaping.permissionsex.PermissionsEx;
import ninja.leaping.permissionsex.data.ImmutableSubjectData;
import ninja.leaping.permissionsex.data.SubjectCache;
import ninja.leaping.permissionsex.util.command.CommandContext;
import ninja.leaping.permissionsex.util.command.CommandException;
import ninja.leaping.permissionsex.util.command.CommandSpec;
import ninja.leaping.permissionsex.util.command.Commander;

import java.util.Map;
import java.util.Set;

import static ninja.leaping.permissionsex.util.Translations.t;
import static ninja.leaping.permissionsex.util.command.args.GenericArguments.*;

public class OptionCommands {
    private OptionCommands() {
    }

    public static CommandSpec getOptionCommand(PermissionsEx pex) {
        return CommandSpec.builder().setAliases("options", "option", "opt", "o")
                .setArguments(seq(string(t("key")), optional(string(t("value")))))
                .setExecutor(new PermissionsExExecutor(pex) {
                    @Override
                    public <TextType> void execute(Commander<TextType> src, CommandContext args)
                            throws CommandException {
                        Map.Entry<String, String> subject = subjectOrSelf(src, args);
                        checkSubjectPermission(src, subject, "permissionsex.option.set");
                        Set<Map.Entry<String, String>> contexts = ImmutableSet
                                .copyOf(args.<Map.Entry<String, String>>getAll("context"));
                        SubjectCache dataCache = args.hasAny("transient")
                                ? pex.getTransientSubjects(subject.getKey())
                                : pex.getSubjects(subject.getKey());
                        ImmutableSubjectData data = getSubjectData(dataCache, subject.getValue());
                        final String key = args.getOne("key");
                        final String value = args.getOne("value");
                        if (value == null) {
                            messageSubjectOnFuture(
                                    dataCache.set(subject.getValue(), data.setOption(contexts, key, null)), src,
                                    t("Unset option '%s' for %s in %s context", key,
                                            src.fmt().hl(src.fmt().subject(subject)),
                                            formatContexts(src, contexts)));
                        } else {
                            messageSubjectOnFuture(
                                    dataCache.set(subject.getValue(), data.setOption(contexts, key, value)), src,
                                    t("Set option %s for %s in %s context", src.fmt().option(key, value),
                                            src.fmt().hl(src.fmt().subject(subject)),
                                            formatContexts(src, contexts)));
                        }
                    }
                }).build();

    }
}