summaryrefslogtreecommitdiff
path: root/rss.rb
blob: 58c94835372384e21e0f827b6bd00963a910fa3f (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
#!/usr/bin/env ruby
require_relative 'lib'
require 'date'
require 'time'
require 'json'

items = []
%w[music videos climbing].each do |cat|
  Dir[File.join(MEDIA_DIR, cat, '*')].each do |dir|
    next unless File.basename(dir).match(/^\d/)

    date = File.basename(dir).split('_')[0]
    updated = Date.parse(date)
    title = File.basename(dir).split('_')[1..-1].join(' ')
    description = File.read(File.join(dir, 'README')).chomp.sub(/^\n/, '').sub("\n\n", "\n")
    title = description if title.empty?
    # title = date if title.empty?
    items << {
      title: title,
      link: File.join('https://pdp8.info', cat + '.html#' + date),
      guid: File.join('https://pdp8.info', cat + '.html#' + date),
      description: "<![CDATA[#{description}]]>",
      pubDate: updated.httpdate
    }
  end
end

Dir[File.join(OUTBOX_DIR, 'create', '*.json')]
  .collect { |f| JSON.load_file(f) }
  .select { |a| a['to'].include?('https://www.w3.org/ns/activitystreams#Public') }
  .select { |a| a['object'] and a['object']['attachment'] }
  .collect  { |a| a['object'] }
  .each do |object|
  updated = Date.parse object['published']
  object['attachment'].each do |a|
    next unless a['url'] =~ %r{pictures/webp} and a['mediaType'] == 'image/webp'

    items << {
      title: a['name'],
      link: a['url'],
      guid: a['url'],
      description: "<![CDATA[<img alt='#{a['name']}' src=#{a['url']}>]]>",
      pubDate: updated.httpdate
    }
  end
end

# jj items.sort_by { |i| DateTime.parse(i[:pubDate]) }.reverse

xml = ['<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>pdp8</title>
    <link>https://pdp8.info</link>
    <description>music, pictures and videos</description>
    <language>en</language>
    <atom:link href="https://pdp8.info/rss.xml" rel="self" type="application/rss+xml" /> ']

date = DateTime.now
xml << "    <pubDate>#{date.httpdate}</pubDate>"

items.sort_by { |i| DateTime.parse(i[:pubDate]) }.reverse[0..24].each do |item|
  xml << '    <item>'
  item.each do |k, v|
    xml << "      <#{k}>#{v}</#{k}>"
  end
  xml << '    </item>'
end
xml << '  </channel>
</rss>'

File.open(File.join(WWW_DIR, 'rss.xml'), 'w+') { |f| f.puts xml.join("\n") }