Skip to content
This repository was archived by the owner on Mar 3, 2025. It is now read-only.
/ notify Public archive

各端、平台快速消息通知程序,支持配置文件形式或API调用

License

Notifications You must be signed in to change notification settings

sari3l/notify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7ae7301 · Oct 22, 2024

History

13 Commits
Jun 23, 2022
Jun 24, 2022
Oct 22, 2024
Jun 14, 2022
Jun 14, 2022
Oct 22, 2024
Jun 14, 2022
Jun 14, 2022
Jul 25, 2024
Oct 22, 2024
Oct 22, 2024
Jun 21, 2022

Repository files navigation

Logo

license Go Report Card CodeFactor FOSSA Status

Usage

> ./notify -h       
Usage:
  notify [OPTIONS]

Application Options:
  -s, --show        显示配置信息
  -c, --config=     指定配置文件 (default: $HOME/.config/notify-config.yaml)
  -i, --id=         指定通知id
  -l, --level=      指定通告等级 (default: 0)
  -a, --aboveLevel= 指定最低通告等级
  -n, --noticer=    指定通知模块
  -v, --version     版本信息

Help Options:
  -h, --help        Show this help message

安装

go install -v github.com/sari3l/notify/cmd/notify@latest

配置

  1. 配置文件默认路径$HOME/.config/notify-config.yaml,或通过-c|--config指定
  2. 具体每个推送配置、样例见相关路径下 README.md

基本设置

每个配置内容下均可以设置三个参数,均可在-s中可见

  • notifyLevel 指定当前配置等级,默认0
  • notifyFormatter 指定当前配置内容占位符,默认[]
  • notifyDescription 当前配置内容描述内容,默认""

支持

  • 多参输入
    • echo -e "part1\npart2" | notify -n bark
    • notify part1 part22 -n bark
  • 指定id、level、模块,或最低level广播
  • 多占位自动映射
    opt := feishu.Option{Webhook: viper.GetString("notify.webhook")}
    opt.NotifyFormatter = []string{"{{part1}}", "{{part2}}"}
    opt.MsgType = "text"
    opt.Content = map[string]any{"text": "{{part2}}{{part1}}"}
    opt.ToNotifer.Send([]string{"1","2"})
    
    >> 21

Licenses

GPL v3.0

FOSSA Status