ubuntu_load.py 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. #!/usr/bin/env python
  2. import json
  3. import pendulum
  4. from pprint import pprint
  5. import os.path
  6. from subprocess import check_output
  7. import feedparser
  8. from jinja2 import Environment, FileSystemLoader, select_autoescape
  9. env = Environment(
  10. loader=FileSystemLoader('templates/'),
  11. autoescape=select_autoescape(['html', 'xml'])
  12. )
  13. # Filter / delete the old files here
  14. import os
  15. import argparse
  16. parser = argparse.ArgumentParser()
  17. parser.add_argument("-e", "--expire", type=int, help="Expire files after this many days.", default=7)
  18. parser.add_argument("-f", "--fresh", help="Download fresh copy of RSS feed.", action="store_true")
  19. parser.add_argument("--hours", type=int, help="Number of hours (range) we consider to be new.", default=12)
  20. parser.add_argument("-v", "--verbose", help="Display more verbose information.", action="store_true")
  21. args = parser.parse_args()
  22. now = pendulum.now()
  23. for f in os.listdir():
  24. if f.endswith('.html') or f.endswith('.text'):
  25. created = pendulum.from_timestamp(os.path.getctime(f), tz='local')
  26. age = now-created
  27. if age.in_days() >= args.expire:
  28. # Older then 7 days
  29. os.unlink(f)
  30. print("Removed {}".format(f))
  31. else:
  32. if args.verbose:
  33. print("{0} is {1} day(s) old.".format(f, age.in_days()))
  34. url = 'https://usn.ubuntu.com/rss.xml'
  35. if args.fresh:
  36. data = feedparser.parse(url)
  37. del( data['bozo_exception'])
  38. with open('rss.json', 'w') as fp:
  39. json.dump(data, fp)
  40. else:
  41. print("Loading stale data.")
  42. with open('rss.json') as fp:
  43. data = json.load(fp)
  44. # For working "offline"
  45. # with open('rss.json') as fp:
  46. # data = json.load(fp)
  47. # pprint(data)
  48. output = { 'total': 0, 'entries': list() }
  49. for entry in data['entries']:
  50. # when = pendulum.parse(entry['published'])
  51. # Mon, 18 Nov 2019 12:42:01 +0000
  52. when = pendulum.from_format(entry['published'], "ddd, D MMM YYYY HH:mm:ss ZZ")
  53. title = entry['title']
  54. age = now - when
  55. if args.verbose:
  56. print("Age (in days):", age.in_days())
  57. if age.in_hours() > args.hours:
  58. # Skip over this old record!
  59. if args.verbose:
  60. print("Skipping {0} : {1} hours old. {2}".format(title, age.in_hours(), when))
  61. continue
  62. print("Age in hours:", age.in_hours())
  63. print("New record:", when.to_datetime_string(), "Title:", title)
  64. # print(when.to_datetime_string(), title)
  65. filename = "{0}.html".format(title)
  66. textname = "{0}.text".format(title)
  67. textname = textname.replace(':', '').replace(' ', '_')
  68. if not os.path.exists(filename):
  69. print("Missing:", entry['published'], title)
  70. with open(filename, "wb") as fp:
  71. fp.write(entry['summary'].encode('utf-8'))
  72. # Ok, convert into text
  73. # elinks -dump 0 -dump-width 72 --no-references --no-numbering ./1.html
  74. text = check_output( ["elinks", "-dump", "0", "-dump-width", "72", "--no-references", "--no-numbering", "./" + filename], universal_newlines=True, shell=False)
  75. with open(textname, "w") as fp:
  76. fp.write(text)
  77. (usn, _, short_title) = title.partition(':')
  78. output['entries'].append({"filename": textname, "title": short_title})
  79. output['total'] = output['total'] + 1
  80. # print(text)
  81. # print(entry['summary'])
  82. if output['total'] > 0:
  83. template = env.get_template('ubuntu.ini')
  84. with open('../ubuntu.ini', 'w') as fp:
  85. fp.write(template.render(output))