summaryrefslogtreecommitdiff
path: root/README.md
blob: 04fd6d52f94c9cc7b4becfb4263e40435fcb9e76 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# i18n README

| Language     | File                               |
|--------------|------------------------------------|
| English (US) | [README.md](README.md)             |
| 简体中文         | [README_zh_CN.md](README_zh_CN.md) |


# 1. CrossLink: rule-based intercommunicating framework for BungeeCord and Velocity

CrossLink aims at bridging Minecraft chats and instant messaging platforms together.
CrossLink is a refactor of the legacy [BungeeCross](https://github.com/hit-mc/BungeeCross).
Heavy rewrite has been made to improve the software quality.

CrossLink treats all chat areas in sub-servers of a Minecraft server group as separate *endpoint*s. Different instant
messaging software are also different endpoints. Server operator creates configuration files, which describes how the
messages should be *routed* among distinct endpoints. This enables people from different Minecraft sub-server chats
and even different instant messaging platforms, chat together, in a tidy way.

Message forwarding is very configurable. CrossLink does not concern about where the messages come from,
or where they will ultimately go. The forwarding process is entirely controlled by the server operator.
Server operator combines **actions** like `filter by source`, `filter by content`, `replace by regexp`, `discard`
and `forward` into **rules**. Some sequential rules line up a routing table. CrossLink forward messages according to
the routing table. The combinations of **actions** are versatile to help build a highly configurable 
message forwarding system among grouped Minecraft servers and instant messaging platforms.

Currently, only Telegram is supported as an instant messaging platform.
If you wish to link to other instant messaging platforms, implementing that protocol in a *standalone* program
is encouraged, which could be linked to CrossLink with `psmb` protocol.


# 2. Environment Requirement

- Minecraft reverse proxy server:
    - BungeeCord (not tested, compatible in theory)
    - Waterfall (tested in `waterfall-1.18-470`)
    - Velocity (tested in `velocity-3.1.1-98`)

- Java Runtime:
    - OpenJDK 17 (tested in `OpenJDK 64-Bit Server VM (build 17.0.1+12-LTS, mixed mode, sharing)`)


# 3. Configuration

1. Copy plugin's `.jar` file to `plugins` folder.
2. Create subdirectory `crosslink` in that folder.
3. Create `messaging.json` and `api.json` in the folder created in previous step.
4. Copy and edit configuration like the examples below.

## 3.1 Example `messaging.json`

```json5
{
  "local": {
    // when a player joins the game,
    // show him recent messages sent before he has joined the server,
    // which live no longer than this time.
    // set a non-positive value to disable this feature
    "message_playback_seconds": 600
  },
  "remotes": [
    {
      "type": "telegram",
      // this endpoint is identified with "remote:Telegram"
      "id": "Telegram",
      // default: true, if set to false, this remote will be ignored
      "enabled": true,
      // Telegram Bot token
      "token": "======SECRET======",
      // repeat to and from this chat
      "chat_id": 123456789,
      // connect to Telegram API using this proxy
      "proxy": "socks://127.0.0.1:10809",
      // url to custom Telegram API
      "api": "https://my-telegram-api.com"
    },
    {
      "type": "psmb",
      // this endpoint is identified as "remote:mypsmb"
      "id": "mypsmb",
      // but it creates zero or one or more than one sub "virtual" endpoints
      "enabled": true,
      "host": "1.onesmp.org",
      "port": 3456,
      // messages sent to this endpoint will be published to the psmb topic whose id is 'subscribe_to'
      "publish_to": "chat_mc",
      // messages from topics matched by this pattern will be present on this endpoint
      "subscribe_from": "chat_im*",
      // the unique subscription client id required by psmb protocol
      "subscriber_id": 1314,
      // send keep alive packet in every 20 seconds
      // if the value is ignored or not positive, keepalive will be disabled
      "keepalive": 20000
    },
    {
      // not implemented yet, may be added in future version
      "type": "json-rpc",
      "id": "rpc",
      "enabled": true,
      "listen": ["127.0.0.1", 8008],
      "methods": {
        "get": "getMessage",
        "put": "sendMessage"
      }
    }
  ],
  "routing": [
    // all rules are processed sequentially
    // a message may match multiple rules and thus may be duplicate in your case
    // if the message is dropped in an action in one rule,
    // (the action type is just "drop" and it does not have any argument)
    // all subsequent rules will NOT see this message
    {
      // inbound chat messages (remote -> all servers)
      "object": "chat_message",
      // match chat messages
      "from": "remote:.*",
      // regexp matching source,
      // only messages with matched source will be
      // processed by this rule, otherwise this rule is skipped
      "actions": [
        // actions run sequentially
        {
          "type": "format",
          "color": "green"
        },
        {
          // route this message to matched destinations
          "type": "route",
          // the regexp matching destinations
          "to": "server:.*"
        }
      ]
    },
    {
      // outbound messages (starting with '#', server -> all remotes)
      "object": "chat_message",
      "from": "server:.*",
      "actions": [
        {
          // filter the message using given regexp
          // if the message does not match given pattern,
          // it won't be passed into subsequent actions
          "type": "filter",
          // match all messages starts with char '#'
          "pattern": "#.+"
        },
        {
          // replace the message
          "type": "replace",
          // removing heading '#' capture all chars after the heading '#'
          // and make them as the output
          "from": "^#(.*)",
          "to": "$1"
        },
        {
          // send the message to all remotes
          "type": "route",
          "to": "remote:.*"
        }
      ]
    },
    {
      // cross-server messages (server -> all other servers)
      "object": "chat_message",
      "from": "server:.*",
      "actions": [
        {
          "type": "route",
          "to": "server:.*",
          // do not repeat to sender, true by default
          // since the destination pattern will match the source,
          // setting backflow to false will prevent
          // players from seeing duplicate messages
          "backflow": false
        }
      ]
    }
  ]
}
```

## 3.2 Example `api.json`

```json5
{
    "host": "127.0.0.1",        // which host to listen on
    "port": 8008,               // which port to listen on
    "token": "===secret==="     // if defined, only requests with GET parameter `token`
                                // which equals to this value will be processed
                                // invalid requests will only get a 403 error
}
```


# 4. Open-source notice

CrossLink is a free software and licensed under GPLv3.
You can find the source code in [CrossLink's Homepage](https://github.com/keuin/crosslink).

CrossLink is made with the help of many open-source libraries. You can obtain the licenses and notices from their homepage:

- [java-annotations](https://github.com/JetBrains/java-annotations)
- [junit-5](https://github.com/junit-team/junit5)
- [Time4J](https://github.com/MenoData/Time4J)
- [Guice](https://github.com/google/guice)
- [adventure](https://github.com/KyoriPowered/adventure)
- [jackson-core](https://github.com/FasterXML/jackson-core)
- [java-telegram-bot-api](https://github.com/pengrad/java-telegram-bot-api)
- [bson](https://mvnrepository.com/artifact/org.mongodb/bson)