44 lines
1.1 KiB
Bash
Executable File
44 lines
1.1 KiB
Bash
Executable File
#! /bin/bash
|
|
|
|
# Lecture configuration drop
|
|
CONFIG_DROP="/etc/drop.chapril.org/dropchaprilorg.conf"
|
|
source ${CONFIG_DROP}
|
|
|
|
# Lecture configuration agirbot
|
|
CONFIG_AGIRBOT="/etc/chagirbot/agiraprilorg.conf"
|
|
source ${CONFIG_AGIRBOT}
|
|
|
|
main() {
|
|
post_report
|
|
}
|
|
|
|
post_report() {
|
|
datafile=$(mktemp /tmp/report_stats_$(date +%Y-%m-%d_%H%M)_XXXX.json)
|
|
cat <<EOF > "${datafile}"
|
|
{
|
|
"issue": {
|
|
"notes": "$(/srv/drop.chapril.org/tools/rapports_activites/rapport_activites.sh | sed -z 's/\n/\\n/g')"
|
|
}
|
|
}
|
|
EOF
|
|
|
|
curl -s \
|
|
-H "Content-Type: application/json" \
|
|
-H "X-Redmine-API-Key: ${key}" \
|
|
-X PUT --data-binary "@${datafile}" \
|
|
"${REDMINE_BASE_URL}/issues/${REDMINE_TICKET_ID}.json"
|
|
rm "${datafile}"
|
|
}
|
|
|
|
last_comment_date() {
|
|
curl -H "X-Redmine-API-Key: ${key}" -s "${REDMINE_BASE_URL}/issues/${REDMINE_TICKET_ID}.json?include=journals" \
|
|
| jq '.issue.journals | last | .created_on'
|
|
}
|
|
|
|
list() {
|
|
curl -H "X-Redmine-API-Key: ${key}" -s "${REDMINE_BASE_URL}/issues/${REDMINE_TICKET_ID}.json?include=journals" \
|
|
| jq '.issue.journals[] | [.user.name, .notes]'
|
|
}
|
|
|
|
main
|