|
1 | 1 | # -*- coding: utf-8 -*-
|
2 | 2 | from __future__ import absolute_import, division, print_function, unicode_literals
|
3 | 3 |
|
4 |
| -import frontmatter |
5 |
| -import colorama |
6 |
| -import click |
7 | 4 | import codecs
|
8 | 5 |
|
| 6 | +import click |
| 7 | +import colorama |
| 8 | + |
| 9 | + |
9 | 10 | def mark_abandoned(path, ticket, force=False):
|
10 |
| - with codecs.open(path, mode="r", encoding="utf-8") as f: |
11 |
| - lines = f.readlines() |
| 11 | + with codecs.open(path, mode="r", encoding="utf-8") as f: |
| 12 | + lines = f.readlines() |
| 13 | + |
| 14 | + in_frontmatter = False |
| 15 | + armed = True |
| 16 | + updated_lines = [] |
| 17 | + for line in lines: |
| 18 | + if armed: |
| 19 | + if line.strip() == "---": |
| 20 | + if in_frontmatter: |
| 21 | + # end of frontmatter, do our thing now |
| 22 | + updated_lines.append("abandoned: {}\n".format(ticket)) |
| 23 | + armed = False |
| 24 | + in_frontmatter = not in_frontmatter |
| 25 | + elif in_frontmatter and line.startswith("abandoned:"): |
| 26 | + if force: |
| 27 | + continue |
| 28 | + else: |
| 29 | + print( |
| 30 | + colorama.Fore.RED |
| 31 | + + colorama.Style.BRIGHT |
| 32 | + + "{} is already marked as abandoned!".format(path) |
| 33 | + ) |
| 34 | + return |
12 | 35 |
|
13 |
| - in_frontmatter = False |
14 |
| - armed = True |
15 |
| - updated_lines = [] |
16 |
| - for line in lines: |
17 |
| - if armed: |
18 |
| - if line.strip() == "---": |
19 |
| - if in_frontmatter: |
20 |
| - # end of frontmatter, do our thing now |
21 |
| - updated_lines.append("abandoned: {}\n".format(ticket)) |
22 |
| - armed = False |
23 |
| - in_frontmatter = not in_frontmatter |
24 |
| - elif in_frontmatter and line.startswith("abandoned:"): |
25 |
| - if force: |
26 |
| - continue |
27 |
| - else: |
28 |
| - print(colorama.Fore.RED + colorama.Style.BRIGHT + "{} is already marked as abandoned!".format(path)) |
29 |
| - return |
| 36 | + updated_lines.append(line) |
30 | 37 |
|
31 |
| - updated_lines.append(line) |
| 38 | + with codecs.open(path, mode="w", encoding="utf-8") as f: |
| 39 | + for line in updated_lines: |
| 40 | + f.write(line) |
| 41 | + print( |
| 42 | + colorama.Fore.GREEN |
| 43 | + + colorama.Style.BRIGHT |
| 44 | + + "{} marked as abandoned".format(path) |
| 45 | + ) |
32 | 46 |
|
33 |
| - with codecs.open(path, mode="w", encoding="utf-8") as f: |
34 |
| - for line in updated_lines: |
35 |
| - f.write(line) |
36 |
| - print(colorama.Fore.GREEN + colorama.Style.BRIGHT + "{} marked as abandoned".format(path)) |
37 | 47 |
|
38 | 48 | def mark_unabandoned(path):
|
39 |
| - with codecs.open(path, mode="r", encoding="utf-8") as f: |
40 |
| - lines = f.readlines() |
| 49 | + with codecs.open(path, mode="r", encoding="utf-8") as f: |
| 50 | + lines = f.readlines() |
41 | 51 |
|
42 |
| - in_frontmatter = False |
43 |
| - armed = True |
44 |
| - updated_lines = [] |
45 |
| - for line in lines: |
46 |
| - if armed: |
47 |
| - if line.strip() == "---": |
48 |
| - if in_frontmatter: |
49 |
| - armed = False |
50 |
| - in_frontmatter = not in_frontmatter |
51 |
| - elif in_frontmatter and line.startswith("abandoned:"): |
52 |
| - continue |
53 |
| - updated_lines.append(line) |
| 52 | + in_frontmatter = False |
| 53 | + armed = True |
| 54 | + updated_lines = [] |
| 55 | + for line in lines: |
| 56 | + if armed: |
| 57 | + if line.strip() == "---": |
| 58 | + if in_frontmatter: |
| 59 | + armed = False |
| 60 | + in_frontmatter = not in_frontmatter |
| 61 | + elif in_frontmatter and line.startswith("abandoned:"): |
| 62 | + continue |
| 63 | + updated_lines.append(line) |
| 64 | + |
| 65 | + with codecs.open(path, mode="w", encoding="utf-8") as f: |
| 66 | + for line in updated_lines: |
| 67 | + f.write(line) |
| 68 | + print( |
| 69 | + colorama.Fore.GREEN |
| 70 | + + colorama.Style.BRIGHT |
| 71 | + + "{} unmarked as abandoned".format(path) |
| 72 | + ) |
54 | 73 |
|
55 |
| - with codecs.open(path, mode="w", encoding="utf-8") as f: |
56 |
| - for line in updated_lines: |
57 |
| - f.write(line) |
58 |
| - print(colorama.Fore.GREEN + colorama.Style.BRIGHT + "{} unmarked as abandoned".format(path)) |
59 | 74 |
|
60 | 75 | @click.command()
|
61 | 76 | @click.option("--unmark", is_flag=True)
|
62 | 77 | @click.option("--force", is_flag=True)
|
63 | 78 | @click.argument("path")
|
64 | 79 | @click.argument("ticket", default=None)
|
65 | 80 | def main(unmark, force, path, ticket):
|
66 |
| - if unmark: |
67 |
| - mark_unabandoned(path) |
68 |
| - else: |
69 |
| - mark_abandoned(path, ticket, force=force) |
| 81 | + if unmark: |
| 82 | + mark_unabandoned(path) |
| 83 | + else: |
| 84 | + mark_abandoned(path, ticket, force=force) |
| 85 | + |
70 | 86 |
|
71 | 87 | if __name__ == "__main__":
|
72 |
| - colorama.init(autoreset=True) |
73 |
| - main() |
| 88 | + colorama.init(autoreset=True) |
| 89 | + main() |
0 commit comments