001/*
002 * Copyright (c) 2016-2017 Daniel Ennis (Aikar) - MIT License
003 *
004 *  Permission is hereby granted, free of charge, to any person obtaining
005 *  a copy of this software and associated documentation files (the
006 *  "Software"), to deal in the Software without restriction, including
007 *  without limitation the rights to use, copy, modify, merge, publish,
008 *  distribute, sublicense, and/or sell copies of the Software, and to
009 *  permit persons to whom the Software is furnished to do so, subject to
010 *  the following conditions:
011 *
012 *  The above copyright notice and this permission notice shall be
013 *  included in all copies or substantial portions of the Software.
014 *
015 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
016 *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
017 *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
018 *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
019 *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
020 *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
021 *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
022 */
023
024package co.aikar.commands;
025
026import java.util.HashMap;
027import java.util.Map;
028
029public class ConditionContext <I extends CommandIssuer> {
030
031    private final I issuer;
032    private final String config;
033    private final Map<String, String> configs;
034
035    ConditionContext(I issuer, String config) {
036        this.issuer = issuer;
037        this.config = config;
038        this.configs = new HashMap<>();
039        if (config != null) {
040            for (String s : ACFPatterns.COMMA.split(config)) {
041                String[] v = ACFPatterns.EQUALS.split(s, 2);
042                this.configs.put(v[0], v.length > 1 ? v[1] : null);
043            }
044        }
045    }
046
047
048    public I getIssuer() {
049        return issuer;
050    }
051
052    public String getConfig() {
053        return this.config;
054    }
055    public boolean hasConfig(String flag) {
056        return configs.containsKey(flag);
057    }
058
059    public String getConfigValue(String flag, String def) {
060        return configs.getOrDefault(flag, def);
061    }
062
063    public Integer getConfigValue(String flag, Integer def) {
064        return ACFUtil.parseInt(this.configs.get(flag), def);
065    }
066}