forked from yude/EPGS-to-Discord-v2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun.sh
111 lines (103 loc) · 4.11 KB
/
run.sh
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
#!/bin/sh
# 環境変数 LINE_TOKEN に取得したトークンを指定してください。
LINE_TOKEN="ここにLINE_TOKEN貼付け"
unixtime2datetime() {
set -- $(( $1%86400 )) $(( $1/86400+719468 )) 146097 36524 1461
set -- "$1" "$2" $(( $2-(($2+2+3*$2/$3)/$5)+($2-$2/$3)/$4-(($2+1)/$3) ))
set -- "$1" "$2" $(( $3/365 ))
set -- "$@" $(( $2-( (365*$3)+($3/4)-($3/100)+($3/400) ) ))
set -- "$@" $(( ($4-($4+20)/50)/30 ))
set -- "$@" $(( 12*$3+$5+2 ))
set -- "$1" $(( $6/12 )) $(( $6%12+1 )) $(( $4-(30*$5+3*($5+4)/5-2)+1 ))
set -- "$2" "$3" "$4" $(( $1/3600 )) $(( $1%3600 ))
set -- "$1" "$2" "$3" "$4" $(( $5/60 )) $(( $5%60 ))
printf "%04d-%02d-%02d %02d:%02d:%02d\n" "$@"
}
if [ $# = 1 ]; then
# チャンネル名, チャンネルタイプ, 番組名, 番組概要の読み込み
if [ -z "$CHANNELNAME" ]; then
CHANNELNAME="放送局名なし"
else
:
fi
if [ -z "$NAME" ]; then
title="タイトル未設定"
else
title=$NAME
fi
if [ -z "$DESCRIPTION" ]; then
description="番組概要が指定されていません。"
else
description=$DESCRIPTION
fi
if [ -z "$STARTAT" ]; then
startat="未設定"
else
start_epg_time=$(($STARTAT/1000))
start_ust_time=$( unixtime2datetime $start_epg_time )
start_jst_time=$( date -d "$start_ust_time 9hours" +'%m/%d(%a) %H:%M')
startat=$start_jst_time
fi
if [ -z "$ENDAT" ]; then
endat="未設定"
else
end_epg_time=$(($ENDAT/1000))
end_ust_time=$( unixtime2datetime $end_epg_time )
end_jst_time=$( date -d "$end_ust_time 9hours" +'%H:%M')
endat=$end_jst_time
fi
if [ -z "$DURATION" ]; then
duration="未設定"
else
duration=$(($DURATION/60000))
fi
if [ -z "$EXTENDED" ]; then
extended="未設定"
else
extended=$EXTENDED
fi
# 引数をコピー (コマンドとして認識されるのを防ぐため)
ret=$1
# 予約関係: 追加, 削除, 更新, 録画準備
if [ $ret = "reserve" ]; then
content="%0D%0A ✅ 予約追加 %0D%0A ${title} %0D%0A ${CHANNELNAME} %0D%0A ${startat}~${endat} ${duration}"分"%0D%0A ${description} %0D%0A ${extended}"
elif [ $ret = "delete" ]; then
content="%0D%0A 💨 予約削除 %0D%0A ${title} %0D%0A ${CHANNELNAME}"
elif [ $ret = "update" ]; then
content="%0D%0A 🔁 予約更新 %0D%0A ${title} %0D%0A ${CHANNELNAME} %0D%0A ${startat}~${endat} ${duration}"分""
elif [ $ret = "prestart" ]; then
content="%0D%0A 🔷 録画準備開始 %0D%0A ${title} %0D%0A ${CHANNELNAME}"
elif [ $ret = "prepfailed" ]; then
content="%0D%0A 💥 録画準備失敗 %0D%0A ${title} %0D%0A ${CHANNELNAME}"
elif [ $ret = "start" ]; then
content="%0D%0A ⏺ 録画開始 %0D%0A ${title} %0D%0A ${CHANNELNAME}"
elif [ $ret = "encod_end" ]; then
content="%0D%0A ⏹ エンコード終了 %0D%0A ${title} %0D%0A ${CHANNELNAME}"
elif [ $ret = "end" ]; then
# エラー, ドロップ, スクランブルカウントを読み込み
if [ -z "$ERROR_CNT" ]; then
ERROR_CNT="N/A"
else
: # 何もしない
fi
if [ -z "$DROP_CNT" ]; then
DROP_CNT="N/A"
else
: # 何もしない
fi
if [ -z "$SCRAMBLING_CNT" ]; then
SCRAMBLING_CNT="N/A"
else
: # 何もしない
fi
content="%0D%0A ⏹ 録画終了 %0D%0A ${title} %0D%0A ${CHANNELNAME} %0D%0A ${startat}~${endat} ${duration}"分" %0D%0A エラー: ${ERROR_CNT}, ドロップ: ${DROP_CNT}, スクランブル: ${SCRAMBLING_CNT}"
elif [ $ret = "recfailed" ]; then
content="%0D%0A ❌ 録画失敗 %0D%0A ${title} %0D%0A ${CHANNELNAME}"
else
echo "引数が不正です。"
exit 1
fi
curl -X POST -H "Authorization: Bearer ${LINE_TOKEN}" --data "message=${content}" GetAsURLEncoded https://notify-api.line.me/api/notify
else
echo "引数を指定してください。"
fi