ubuntu_load.py 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. parser.add_argument("--hour", type=int, help="Run every so many hours.", default=4)
  22. args = parser.parse_args()
  23. now = pendulum.now()
  24. import sys
  25. if now.hour % args.hour != 0:
  26. if args.verbose:
  27. print("NO, NOT YET!")
  28. sys.exit(0)
  29. for f in os.listdir():
  30. if f.endswith('.html') or f.endswith('.text'):
  31. created = pendulum.from_timestamp(os.path.getctime(f), tz='local')
  32. age = now-created
  33. if age.in_days() >= args.expire:
  34. # Older then 7 days
  35. print("Removing old file {0} ({1} >= {2}).".format(f, age.in_days(), args.expire))
  36. os.unlink(f)
  37. else:
  38. if args.verbose:
  39. print("Keep {0} is {1} day(s) old.".format(f, age.in_days()))
  40. url = 'https://usn.ubuntu.com/rss.xml'
  41. if args.fresh:
  42. data = feedparser.parse(url)
  43. del( data['bozo_exception'])
  44. with open('rss.json', 'w') as fp:
  45. json.dump(data, fp)
  46. else:
  47. print("Loading stale data.")
  48. with open('rss.json') as fp:
  49. data = json.load(fp)
  50. # For working "offline"
  51. # with open('rss.json') as fp:
  52. # data = json.load(fp)
  53. # pprint(data)
  54. output = { 'total': 0, 'entries': list() }
  55. for entry in data['entries']:
  56. # when = pendulum.parse(entry['published'])
  57. # Mon, 18 Nov 2019 12:42:01 +0000
  58. when = pendulum.from_format(entry['published'], "ddd, D MMM YYYY HH:mm:ss ZZ")
  59. title = entry['title']
  60. age = now - when
  61. if age.in_days() > args.new:
  62. # Skip over this old record!
  63. if args.verbose:
  64. # print("Skipping {0} : {1} days old. {2}".format(title, age.in_days(), when))
  65. print("Skipping {0} : {1} days old.".format(title, age.in_days()))
  66. continue
  67. print("Possible:", when.to_datetime_string(), "Title:", title)
  68. # print(when.to_datetime_string(), title)
  69. filename = "{0}.html".format(title)
  70. textname = "{0}.text".format(title)
  71. textname = textname.replace(':', '').replace(' ', '_')
  72. if not os.path.exists(filename):
  73. print("Missing/TO Display:", entry['published'], title)
  74. with open(filename, "wb") as fp:
  75. fp.write(entry['summary'].encode('utf-8'))
  76. # Ok, convert into text
  77. # elinks -dump 0 -dump-width 72 --no-references --no-numbering ./1.html
  78. text = check_output( ["elinks", "-dump", "0", "-dump-width", "72", "--no-references", "--no-numbering", "./" + filename], universal_newlines=True, shell=False)
  79. with open(textname, "w") as fp:
  80. fp.write(text)
  81. (usn, _, short_title) = title.partition(':')
  82. output['entries'].append({"filename": textname, "title": short_title})
  83. output['total'] = output['total'] + 1
  84. # print(text)
  85. # print(entry['summary'])
  86. if output['total'] > 0:
  87. template = env.get_template('ubuntu.ini')
  88. with open('../ubuntu.ini', 'w') as fp:
  89. fp.write(template.render(output))