blob: afb96585563ca643452455ec0892e46d86d4f741 (
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
|
# Copyright (C) 2024-2026 Maria Lisina
# Copyright (C) 2024-2026 Danil Lisin
# SPDX-License-Identifier: Apache-2.0
if [[ -f "${ib_file}" && "${cache_mode}" != "none" ]]
then
ib_ctime=$(strftime %s)
ib_mtime=$(stat +mtime "${ib_file}")
if [[ $((ib_ctime - ib_mtime)) -le ${cache_time} ]]
then
return
fi
fi
until mkdir "${user_config}.lock"
do
sleep 1
done
if [[ -d "${auth_dir}" ]]
then
source "${units}/ib_token.zsh"
if [[ -n "${output_text}" ]]
then
rmdir "${user_config}.lock"
return
fi
fi
rmdir "${user_config}.lock"
if [[ -n "${ib_limit}" ]]
then
ib_limit="${ib_dlimit}=${ib_limit}"
fi
if [[ -n "${ib_page}" ]]
then
ib_page="${ib_dpage}=${ib_page}"
fi
if [[ -n "${ib_query}" ]]
then
ib_query="${ib_dquery}=${ib_query}"
fi
rm -f "${ib_file}"
if ! curl --connect-timeout ${connrefused_timeout} \
--data-urlencode "${ib_dfield1}" \
--data-urlencode "${ib_dfield2}" \
--data-urlencode "${ib_limit}" \
--data-urlencode "${ib_page}" \
--data-urlencode "${ib_query}" \
--get \
--header "${ib_headers}" \
--max-time ${external_timeout} \
--output "${ib_file}" \
--proxy "${external_proxy}" \
--retry 1 \
--retry-connrefused \
--retry-max-time $((external_timeout - connrefused_timeout)) \
--silent \
--user-agent "${useragent}" \
"${ib_data_url}"
then
output_title="An error occurred"
output_text="Failed to access ${ib_name} API"
notification_text="${output_text}"
log_text="ib_file (${update_id}): ${output_text}"
source "${units}/log.zsh"
next_offset=${inline_page:-0}
rm -f "${ib_file}"
return
fi
if ! jq -e '.' "${ib_file}" > /dev/null
then
output_title="An error occurred"
output_text="An unknown error occurred"
notification_text="${output_text}"
log_text="ib_file (${update_id}): ${output_text}"
source "${units}/log.zsh"
rm -f "${ib_file}"
return
fi
if ! jq -e ".[0]|has(\"${ib_iid}\")" "${ib_file}" > /dev/null
then
if [[ -n "${inline_options}" && -n "${offset}" ]]
then
output_title="End of results"
else
output_title="No results found"
fi
if [[ -n "${inline_options}" ]]
then
case "${ib_mode}" in
(l)
output_text="Try different page or pool name"
;;
(p)
output_text="Try different page or tags"
;;
(t)
output_text="Try different page or tag name"
;;
esac
else
output_text="Try different post ID or MD5 hash"
fi
notification_text="${output_text}"
rm -f "${ib_file}"
fi
|