summaryrefslogtreecommitdiffstats
path: root/bin/news
blob: 8240c06d9d5b97df63bb79e90337af67e43d98da (plain) (blame)
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
124
125
126
127
128
129
130
131
#!/usr/bin/env python3
#
#   SPDX-License-Identifier: ISC
#
#   Copyright © 2019 Free Software Foundation of India.
#

import datetime
import os
import os.path
import re
import subprocess as subp
import sys


# placeholders
PH = {
   'title': '<!-- NEWS-ITEM-TITLE -->',
   'date': '<!-- DATE -->',
   'content': '<!-- MAIN-CONTENT -->',
}


def err(s):
    print('Error: {}'.format(s))
    sys.exit(1)


def files():
    return os.scandir('md/news')


def read(f):
    with open(f) as f:
        c = f.read()
    return c


def write(p, c):
    d = os.path.dirname(p)

    if not os.path.exists(d):
        os.makedirs(d)

    with open(p, 'w') as f:
        f.write(c)


def slug(p):
    m = re.search(r'([a-zA-Z\-]+)\.md', p)

    if not m:
        err('Unable to get slug')

    return m.group(1)


def title(c):
    m = re.search(r'^\# (.+)$', c, re.M)

    if not m:
        err('Title not found')

    return m.group(1)


def date(c):
    m = re.search(r'pubdate: ([0-9]{8})', c)

    if not m:
        err('Publication date not found')

    return m.group(1)


def content(c):
    m = re.search(r'^\# (.+)$', c, re.M)

    if not m:
        err('Unable to slurp content')

    return c[m.end():]


def template(type):
    return read('templates/{}.html'.format(type))


def datefmt(d):
    return datetime.datetime.strptime(d, '%Y%m%d').strftime('%B %d, %Y')


def markdown(c):
    try:
        r = subp.run(['bin/markdown'],
                     input=c,
                     stdout=subp.PIPE,
                     check=True,
                     universal_newlines=True)
    except Exception as e:
        p('Markdown failed for {}'.format(c))

    return r.stdout


def html(t, d, c):
    h = template('news')
    h = h.replace(PH['title'], t, 2)
    h = h.replace(PH['date'], datefmt(d), 1)
    h = h.replace(PH['content'], markdown(c), 1)

    return h


def process(f):
    c = read(f.path)

    t = title(c)
    d = date(c)
    c = content(c)

    h = html(t, d, c)


def run():
    for f in files():
        process(f)


if __name__ == "__main__":
    run()