-
Notifications
You must be signed in to change notification settings - Fork 175
/
Copy pathbark.py
executable file
·130 lines (95 loc) · 3.43 KB
/
bark.py
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
#!/usr/bin/env python
import os
from collections import OrderedDict
import commands
def print_bookmarks(bookmarks):
for bookmark in bookmarks:
print('\t'.join(
str(field) if field else ''
for field in bookmark
))
class Option:
def __init__(self, name, command, prep_call=None):
self.name = name
self.command = command
self.prep_call = prep_call
def _handle_message(self, message):
if isinstance(message, list):
print_bookmarks(message)
else:
print(message)
def choose(self):
data = self.prep_call() if self.prep_call else None
message = self.command.execute(data) # <1>
self._handle_message(message)
def __str__(self):
return self.name
def clear_screen():
clear = 'cls' if os.name == 'nt' else 'clear'
os.system(clear)
def print_options(options):
for shortcut, option in options.items():
print(f'({shortcut}) {option}')
print()
def option_choice_is_valid(choice, options):
return choice in options or choice.upper() in options
def get_option_choice(options):
choice = input('Choose an option: ')
while not option_choice_is_valid(choice, options):
print('Invalid choice')
choice = input('Choose an option: ')
return options[choice.upper()]
def get_user_input(label, required=True):
value = input(f'{label}: ') or None
while required and not value:
value = input(f'{label}: ') or None
return value
def get_new_bookmark_data():
return {
'title': get_user_input('Title'),
'url': get_user_input('URL'),
'notes': get_user_input('Notes', required=False),
}
def get_bookmark_id_for_deletion():
return get_user_input('Enter a bookmark ID to delete')
def get_github_import_options():
return {
'github_username': get_user_input('GitHub username'),
'preserve_timestamps':
get_user_input(
'Preserve timestamps [Y/n]',
required=False
) in {'Y', 'y', None},
}
def get_new_bookmark_info():
bookmark_id = get_user_input('Enter a bookmark ID to edit')
field = get_user_input('Choose a value to edit (title, URL, notes)')
new_value = get_user_input(f'Enter the new value for {field}')
return {
'id': bookmark_id,
'update': {field: new_value},
}
def loop():
clear_screen()
options = OrderedDict({
'A': Option('Add a bookmark', commands.AddBookmarkCommand(), prep_call=get_new_bookmark_data),
'B': Option('List bookmarks by date', commands.ListBookmarksCommand()),
'T': Option('List bookmarks by title', commands.ListBookmarksCommand(order_by='title')),
'E': Option('Edit a bookmark', commands.EditBookmarkCommand(), prep_call=get_new_bookmark_info),
'D': Option('Delete a bookmark', commands.DeleteBookmarkCommand(), prep_call=get_bookmark_id_for_deletion),
'G': Option(
'Import GitHub stars',
commands.ImportGitHubStarsCommand(),
prep_call=get_github_import_options
),
'Q': Option('Quit', commands.QuitCommand()),
})
print_options(options)
chosen_option = get_option_choice(options)
clear_screen()
chosen_option.choose()
_ = input('Press ENTER to return to menu')
if __name__ == '__main__':
commands.CreateBookmarksTableCommand().execute()
while True:
loop()