summaryrefslogtreecommitdiff
path: root/blm
diff options
context:
space:
mode:
Diffstat (limited to 'blm')
-rwxr-xr-xblm18
1 files changed, 15 insertions, 3 deletions
diff --git a/blm b/blm
index f00e254..51bd0e5 100755
--- a/blm
+++ b/blm
@@ -4,9 +4,21 @@
jq -r '.data[] |
"From BLOCKET " + (.list_time | sub("\\+[0-9][0-9]:00$"; "Z") | fromdate | strftime("%a %b %e %T %Y")) + "\n" +
- "From: \"" + .advertiser.name + ", " + .location[0].name + " (" + .advertiser.type + ")\" <noreply@localhost>\n" +
- "Subject: " + "(" + (.price.value | tostring) + ") " + .subject + "\n" +
- ([.images[].url] | map("X-Image: " + . + "?type=original") | join("\n")) + "\n" +
+'"$(test "$1" = -d && printf '%s\n' '
+ "From: \"" + .advertiser.name + ", " + .location[0].name + "\" <noreply@localhost>\n" +
+ "Subject: (" + (.price.value | tostring) + ") " + .subject + "\n" +
+' || printf '%s\n' '
+ "From: \"" + .advertiser.name + "\" <noreply@localhost>\n" +
+ "Subject: " + .subject + "\n" +
+')"'
+ "ID: " + .ad_id + "\n" +
+ "Link: " + .share_url + "\n" +
+ "Price: " + (.price.value | tostring) + " " + .price.suffix + "\n" +
+ "Type: " + .advertiser.type + "\n" +
+ ([.category[].name] | map("Category: " + . ) | join("\n")) + "\n" +
+ ([.location[].name] | map("Location: " + . ) | join("\n")) + "\n" +
+ "Map: " + .map_url + "\n" +
+ ([.images[].url] | map("Image: " + . + "?type=original") | join("\n")) + "\n" +
"\n" + .body + "\n" +
"\n"
'