ubuntu_load.py 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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("-n", "--new", type=int, help="Number of Days (range) we consider to be new.", default=2)
  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. print("Removing old file {0} ({1} >= {2}).".format(f, age.in_days(), args.expire))
  30. os.unlink(f)
  31. else:
  32. if args.verbose:
  33. print("Keep {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 age.in_days() > args.new:
  56. # Skip over this old record!
  57. if args.verbose:
  58. # print("Skipping {0} : {1} days old. {2}".format(title, age.in_days(), when))
  59. print("Skipping {0} : {1} days old.".format(title, age.in_days()))
  60. continue
  61. print("Possible:", when.to_datetime_string(), "Title:", title)
  62. # print(when.to_datetime_string(), title)
  63. filename = "{0}.html".format(title)
  64. textname = "{0}.text".format(title)
  65. textname = textname.replace(':', '').replace(' ', '_')
  66. if not os.path.exists(filename):
  67. print("Missing/TO Display:", entry['published'], title)
  68. with open(filename, "wb") as fp:
  69. fp.write(entry['summary'].encode('utf-8'))
  70. # Ok, convert into text
  71. # elinks -dump 0 -dump-width 72 --no-references --no-numbering ./1.html
  72. text = check_output( ["elinks", "-dump", "0", "-dump-width", "72", "--no-references", "--no-numbering", "./" + filename], universal_newlines=True, shell=False)
  73. with open(textname, "w") as fp:
  74. fp.write(text)
  75. (usn, _, short_title) = title.partition(':')
  76. output['entries'].append({"filename": textname, "title": short_title})
  77. output['total'] = output['total'] + 1
  78. # print(text)
  79. # print(entry['summary'])
  80. if output['total'] > 0:
  81. template = env.get_template('ubuntu.ini')
  82. with open('../ubuntu.ini', 'w') as fp:
  83. fp.write(template.render(output))