summaryrefslogtreecommitdiff
path: root/src/main/kotlin/io/dico/parcels2/command/CommandsAddedStatusLocal.kt
blob: 223e504c2d7440ed63cdc68f85b97b145be07899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package io.dico.parcels2.command

import io.dico.dicore.command.Validate
import io.dico.dicore.command.annotation.Cmd
import io.dico.dicore.command.annotation.Desc
import io.dico.parcels2.ParcelsPlugin
import io.dico.parcels2.util.ext.hasAdminManage
import org.bukkit.OfflinePlayer
import org.bukkit.entity.Player

class CommandsAddedStatusLocal(plugin: ParcelsPlugin) : AbstractParcelCommands(plugin) {

    @Cmd("allow", aliases = ["add", "permit"])
    @Desc("Allows a player to build on this parcel",
        shortVersion = "allows a player to build on this parcel")
    @ParcelRequire(owner = true)
    fun ParcelScope.cmdAllow(sender: Player, player: OfflinePlayer): Any? {
        Validate.isTrue(parcel.owner != null || sender.hasAdminManage, "This parcel is unowned")
        Validate.isTrue(!parcel.owner!!.matches(player), "The target already owns the parcel")
        Validate.isTrue(parcel.allow(player), "${player.name} is already allowed to build on this parcel")
        return "${player.name} is now allowed to build on this parcel"
    }

    @Cmd("disallow", aliases = ["remove", "forbid"])
    @Desc("Disallows a player to build on this parcel,",
        "they won't be allowed to anymore",
        shortVersion = "disallows a player to build on this parcel")
    @ParcelRequire(owner = true)
    fun ParcelScope.cmdDisallow(sender: Player, player: OfflinePlayer): Any? {
        Validate.isTrue(parcel.disallow(player), "${player.name} is not currently allowed to build on this parcel")
        return "${player.name} is not allowed to build on this parcel anymore"
    }

    @Cmd("ban", aliases = ["deny"])
    @Desc("Bans a player from this parcel,",
        "making them unable to enter",
        shortVersion = "bans a player from this parcel")
    @ParcelRequire(owner = true)
    fun ParcelScope.cmdBan(sender: Player, player: OfflinePlayer): Any? {
        Validate.isTrue(parcel.owner != null || sender.hasAdminManage, "This parcel is unowned")
        Validate.isTrue(!parcel.owner!!.matches(player), "The owner cannot be banned from the parcel")
        Validate.isTrue(parcel.ban(player), "${player.name} is already banned from this parcel")
        return "${player.name} is now banned from this parcel"
    }

    @Cmd("unban", aliases = ["undeny"])
    @Desc("Unbans a player from this parcel,",
        "they will be able to enter it again",
        shortVersion = "unbans a player from this parcel")
    @ParcelRequire(owner = true)
    fun ParcelScope.cmdUnban(sender: Player, player: OfflinePlayer): Any? {
        Validate.isTrue(parcel.unban(player), "${player.name} is not currently banned from this parcel")
        return "${player.name} is not banned from this parcel anymore"
    }

}