Saber-Factions/src/main/java/com/massivecraft/factions/cmd/CmdPaypalSet.java

71 lines
2.1 KiB
Java
Raw Normal View History

2018-09-21 08:28:20 +02:00
package com.massivecraft.factions.cmd;
import com.massivecraft.factions.Faction;
2019-08-02 23:01:33 +02:00
import com.massivecraft.factions.P;
2018-09-21 08:29:28 +02:00
import com.massivecraft.factions.struct.Permission;
import com.massivecraft.factions.zcore.util.TL;
2018-11-07 06:38:43 +01:00
public class CmdPaypalSet extends FCommand {
2018-09-21 08:29:28 +02:00
public CmdPaypalSet() {
this.aliases.add("setpaypal");
this.optionalArgs.put("faction", "yours");
this.requiredArgs.add("email");
this.permission = Permission.PAYPALSET.node;
this.disableOnLock = false;
this.senderMustBePlayer = true;
this.senderMustBeMember = true;
this.senderMustBeModerator = false;
this.senderMustBeColeader = false;
this.senderMustBeAdmin = true;
}
@Override
public void perform() {
2019-08-02 23:01:33 +02:00
if (!P.p.getConfig().getBoolean("fpaypal.Enabled")) {
fme.msg(TL.GENERIC_DISABLED);
return;
}
if (args.size() == 1) {
if (isEmail(argAsString(0))) {
myFaction.paypalSet(argAsString(0));
msg(TL.COMMAND_PAYPALSET_SUCCESSFUL, argAsString(0));
} else {
msg(TL.COMMAND_PAYPALSET_NOTEMAIL, argAsString(0));
}
} else if (args.size() == 2) {
if (fme.isAdminBypassing()) {
Faction faction = argAsFaction(1);
if (faction != null) {
if (isEmail(argAsString(0))) {
myFaction.paypalSet(argAsString(0));
msg(TL.COMMAND_PAYPALSET_ADMIN_SUCCESSFUL, faction.getTag(), argAsString(0));
} else {
msg(TL.COMMAND_PAYPALSET_ADMIN_FAILED, argAsString(0));
}
}
} else {
msg(TL.GENERIC_NOPERMISSION, "set another factions paypal!");
}
} else {
2019-08-02 23:01:33 +02:00
msg(P.p.cmdBase.cmdPaypalSet.getUseageTemplate());
}
}
private boolean isEmail(String email) {
return email.contains("@") && email.contains(".");
}
@Override
public TL getUsageTranslation() {
return TL.COMMAND_PAYPALSET_DESCRIPTION;
}
2018-09-21 08:28:20 +02:00
}
2018-09-21 08:29:28 +02:00