MCPcopy Index your code
hub / github.com/eternal-flame-AD/gotify-broadcast

github.com/eternal-flame-AD/gotify-broadcast @v0.3.12

Chat with this repo
repository ↗ · DeepWiki ↗ · release v0.3.12 ↗ · + Follow
85 symbols 208 edges 23 files 37 documented · 44%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

gotify-broadcast

A plugin which brings broadcasts to gotify.

Screenshot

screenshot

Installation

If you found your gotify version is included in the build, you can download the shared object and put that into your plugin dir.

If you did not find you gotify version, follow these steps to build one for your own:

  1. Download a zip file of the source code of current release at the releases page and extract it.
  2. export GO111MODULE=on if you are in GOPATH
  3. make download-tools
  4. make GOTIFY_VERSION=v1.2.1 build to build the plugin for your gotify version (GOTIFY_VERSION could be a tag, a branch or a commit).

Configuration

The configuration contains three keys: channels, sender_filter, and receiver_filter.

Channels

The channels key in the configuration describes which channels you are using. Each channen has two parameters: name and public.

The name parameter is used to identify the channel. It must be unique and is required while sending broadcasts.

The public parameter specifies whether this channel will be visible to other users in the Displayer panel in their WebUI. If this is set to false, they will not be able to see this channel on the WebUI, but they can still recieve messages from this broadcast. Thus, it is recommended to set a receiver filter which defaults to Reject on private channels.

channels:
- name: example_public_channel
  public: true
- name: example_private_channel
  public: false

Filters

In order to control from which and to which a broadcast is sent, a filter system is integrated into this plugin.

The Matching Routine

Messages are filtered with a iptables-like filter system. The filter is a chain of Rules, which contains a match describing how this rule matches messages, and a action describing the action to take when this rule matches successfully.

receiver_filter:
  - match:
    - mode: <mode>
      <param>: <param>
    - mode: <mode>
      <param>: <param>
    action: <action>
  - match:
    - mode: <mode>
      <param>: <param>
    - mode: <mode>
      <param>: <param>
    action: <action>
  - match:
    - mode: <mode>
      <param>: <param>
    - mode: <mode>
      <param>: <param>
    action: <action>
sender_filter:
  - match:
    - mode: <mode>
      <param>: <param>
    - mode: <mode>
      <param>: <param>
    action: <action>
  - match:
    - mode: <mode>
      <param>: <param>
    - mode: <mode>
      <param>: <param>
    action: <action>
  - match:
    - mode: <mode>
      <param>: <param>
    - mode: <mode>
      <param>: <param>
    action: <action>

All modes and its parameter requirements is documented here

On the sender side

When a broadcast is created, the receiver_filter will be applied to each recipient. Similar to the OUTPUT chain in iptables, when the filter evaluates to Accept, the message is sent to that recipient (but whether the message is actually received also depends on the configuration of the sender_filter filter on the recipient side)

                 +--------------------------------------------------------+
                 |                  Outgoing Message                      |
                 |                                                        |
                 +---------------------------+----------------------------+
                                             |
                                             |
+--------------------------------------------+
|
|
|
|           +----------------+       +-----------------+       +-----------------+
|           |                |       |                 |       |                 |
|           |  +----------+  |       |  +-----------+  |       |  +-----------+  |           +-----------------+
|           |  |          |  |   N   |  |           |  |   N   |  |           |  |    N      |                 |
+-------------->   Match  +------------->   Match   +------------->   Match   +--------------> Default: Accept |
            |  |          |  |       |  |           |  |       |  |           |  |           |                 |
            |  +----+-----+  |       |  +-----+-----+  |       |  +-----+-----+  |           +-----------------+
            |       |        |       |        |        |       |        |        |
            |       |Y       |       |        |        |       |        |        |
            |       |        |       |        |        |       |        |        |
            |  +----v-----+  |       |        |        |       |        |        |
            |  |          |  |       |        |        |       |        |        |
            |  |   Match  |  |       |        |        |       |        |        |
            |  |          |  |       |        |        |       |        |        |
            |  +----+-----+  |       |        |        |       |        |        |
            |       |        |       |        |Y       |       |        |Y       |
            |       |        |       |        |        |       |        |        |
            |       |        |       |        |        |       |        |        |
            |       |        |       |        |        |       |        |        |
            |       |Y       |       |        |        |       |        |        |
            |       |        |       |        |        |       |        |        |
            |       |        |       |        |        |       |        |        |
            |       |        |       |        |        |       |        |        |
            |       |        |       |        |        |       |        |        |
            |  +----v-----+  |       |  +-----v-----+  |       |  +-----v-----+  |
            |  |  Accept  |  |       |  |   Reject  |  |       |  |   Reject  |  |
            |  |          |  |       |  |           |  |       |  |           |  |
            |  +----------+  |       |  +-----------+  |       |  +-----------+  |
            |                |       |                 |       |                 |
            +----------------+       +-----------------+       +-----------------+
             receiver_filter[0]       receiver_filter[1]        receiver_filter[2]
Examples

Only sends broadcast from a channel to admin:

channels:
- name: secret
  public: false
receiver_filter:
- match:
  - mode: channel_name
    channel_name: secret
  - mode: is_admin
    is_admin: false
  action: reject

Don't send broadcast with priority less than a specified value to some user:

receiver_filter:
- match:
  - mode: user_name
    user_name: someone_who_does_not_want_to_be_bothered
  - mode: priority_lt
    priority: 5
  action: reject

Don't send broadcast except to tom and jerry:

receiver_filter:
- match:
  - mode: user_name
    user_name: tom
  action: accept
- match:
  - mode: user_name
    user_name: jerry
  action: accept
- match:
  - mode: any
  action: reject

Mute broadcasts sent by myself:

receiver_filter:
- match:
  - mode: user_name
    user_name: <my_user_name>
  action: reject

On the receiver side

When a broadcast is received, the sender_filter will be applied, similar to the INPUT chain in iptables. When this also evaluates to Accept, the message is eventually delivered.

                 +--------------------------------------------------------+
                 |                  Incoming Message                      |
                 |                                                        |
                 +---------------------------+----------------------------+
                                             |
                                             |
+--------------------------------------------+
|
|
|
|           +----------------+       +-----------------+       +-----------------+
|           |                |       |                 |       |                 |
|           |  +----------+  |       |  +-----------+  |       |  +-----------+  |           +-----------------+
|           |  |          |  |   N   |  |           |  |   N   |  |           |  |    N      |                 |
+-------------->   Match  +------------->   Match   +------------->   Match   +--------------> Default: Accept |
            |  |          |  |       |  |           |  |       |  |           |  |           |                 |
            |  +----+-----+  |       |  +-----+-----+  |       |  +-----+-----+  |           +-----------------+
            |       |        |       |        |        |       |        |        |
            |       |Y       |       |        |        |       |        |        |
            |       |        |       |        |        |       |        |        |
            |  +----v-----+  |       |        |        |       |        |        |
            |  |          |  |       |        |        |       |        |        |
            |  |   Match  |  |       |        |        |       |        |        |
            |  |          |  |       |        |        |       |        |        |
            |  +----+-----+  |       |        |        |       |        |        |
            |       |        |       |        |Y       |       |        |Y       |
            |       |        |       |        |        |       |        |        |
            |       |        |       |        |        |       |        |        |
            |       |        |       |        |        |       |        |        |
            |       |Y       |       |        |        |       |        |        |
            |       |        |       |        |        |       |        |        |
            |       |        |       |        |        |       |        |        |
            |       |        |       |        |        |       |        |        |
            |       |        |       |        |        |       |        |        |
            |  +----v-----+  |       |  +-----v-----+  |       |  +-----v-----+  |
            |  |  Accept  |  |       |  |   Reject  |  |       |  |   Reject  |  |
            |  |          |  |       |  |           |  |       |  |           |  |
            |  +----------+  |       |  +-----------+  |       |  +-----------+  |
            |                |       |                 |       |                 |
            +----------------+       +-----------------+       +-----------------+
             sender_filter[0]         sender_filter[1]           sender_filter[2]
Examples

Reject messages which matches a regexp from my_server:

sender_filter:
- match:
  - mode: user_name
    user_name: my_server
  - mode: message_text
    regex: true
    message_text: ^\[(INFO|DEBUG)\]
  action: reject

Reject messages from non-admins but my_friend:

sender_filter:
- match:
  - mode: user_name
    user_name: my_friend
  action: accept
- match:
  - mode: is_admin
    is_admin: false
  action: reject

Reject all received broadcasts:

sender_filter:
- match:
  - mode: any
  action: reject

Sending messages

  1. Go to the WebUI, configure channels and filters.

  2. On the Displayer panel, you could see the message hook URL.

  3. POST your message to that hook URL just like how to push regular messages with an extra query parameter channel=<channel_name>

Core symbols most depended-on inside this repo

Shape

Method 33
Function 31
Struct 17
TypeAlias 4

Languages

Go100%

Modules by API surface

upstream-follower/main.go12 symbols
rules/match.go10 symbols
rules/errors.go10 symbols
rules/match_test.go6 symbols
rules/rule_test.go5 symbols
rules/rule.go4 symbols
publicchannels.go4 symbols
plugin.go4 symbols
config.go4 symbols
webhook.go3 symbols
userpool.go3 symbols
main.go3 symbols

For agents

$ claude mcp add gotify-broadcast \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page