Package net.aufdemrand.denizen.scripts.commands.core

Source Code of net.aufdemrand.denizen.scripts.commands.core.NoteCommand

package net.aufdemrand.denizen.scripts.commands.core;

import net.aufdemrand.denizencore.exceptions.CommandExecutionException;
import net.aufdemrand.denizencore.exceptions.InvalidArgumentsException;
import net.aufdemrand.denizen.objects.*;
import net.aufdemrand.denizen.objects.notable.Notable;
import net.aufdemrand.denizen.objects.notable.NotableManager;
import net.aufdemrand.denizen.scripts.ScriptEntry;
import net.aufdemrand.denizen.scripts.commands.AbstractCommand;
import net.aufdemrand.denizen.utilities.debugging.dB;


public class NoteCommand extends AbstractCommand {

    @Override
    public void parseArgs(ScriptEntry scriptEntry) throws InvalidArgumentsException {

        for (aH.Argument arg : aH.interpret(scriptEntry.getArguments())) {

            if (arg.matchesPrefix("as", "i", "id"))
                scriptEntry.addObject("id", arg.asElement());

            else if (ObjectFetcher.canFetch(arg.getValue().split("@")[0]))
                scriptEntry.addObject("object", arg.getValue());

            else if (arg.matches("remove"))
                scriptEntry.addObject("remove", Element.TRUE);

            else arg.reportUnhandled();
        }

        if (!scriptEntry.hasObject("id"))
            throw new InvalidArgumentsException("Must specify an id");
        if (!scriptEntry.hasObject("object") && !scriptEntry.hasObject("remove"))
            throw new InvalidArgumentsException("Must specify a fetchable-object to note.");
        if (!scriptEntry.hasObject("remove"))
            scriptEntry.addObject("remove", Element.FALSE);

    }

    @Override
    public void execute(ScriptEntry scriptEntry) throws CommandExecutionException {

        String object = (String) scriptEntry.getObject("object");
        Element id = scriptEntry.getElement("id");
        Element remove = scriptEntry.getElement("remove");

        dB.report(scriptEntry, getName(), aH.debugObj("object", object) + id.debug() + remove.debug());

        if (remove.asBoolean()) {
            if (NotableManager.isSaved(id.asString())) {
                NotableManager.remove(id.asString());
                dB.echoDebug(scriptEntry, "notable '" + id.asString() + "' removed");
            }
            else {
                dB.echoDebug(scriptEntry, id.asString() + " is not saved");
            }
            return;
        }

        String object_type = object.split("@")[0].toLowerCase();
        Class object_class = ObjectFetcher.getObjectClass(object_type);

        if (object_class == null) {
            dB.echoError(scriptEntry.getResidingQueue(), "Invalid object type! Could not fetch '" + object_type + "'!");
            return;
        }

        dObject arg;
        try {

            if (!ObjectFetcher.checkMatch(object_class, object)) {
                dB.echoError(scriptEntry.getResidingQueue(), "'" + object
                        + "' is an invalid " + object_class.getSimpleName() + ".");
                return;
            }

            arg = ObjectFetcher.getObjectFrom(object_class, object);

            if (arg instanceof Notable)
                ((Notable) arg).makeUnique(id.asString());

        } catch (Exception e) {
            dB.echoError(scriptEntry.getResidingQueue(), "Uh oh! Report this to the Denizen developers! Err: NoteCommandObjectReflection");
            dB.echoError(scriptEntry.getResidingQueue(), e);
        }


    }
}
TOP

Related Classes of net.aufdemrand.denizen.scripts.commands.core.NoteCommand

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.