mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-24 18:34:52 +01:00
notmuch: implement tag command
This commit is contained in:
parent
99880b7dbe
commit
23b32a7dfd
2 changed files with 39 additions and 10 deletions
|
@ -714,8 +714,12 @@ class Message(object):
|
||||||
def remove_tag(self, tag):
|
def remove_tag(self, tag):
|
||||||
"""Removes a tag from the given message
|
"""Removes a tag from the given message
|
||||||
|
|
||||||
|
If the message has no such tag, this is a non-operation and
|
||||||
|
will report success anyway.
|
||||||
|
|
||||||
:param tag: String with a 'tag' to be removed.
|
:param tag: String with a 'tag' to be removed.
|
||||||
:returns: STATUS.SUCCESS if the tag was successfully removed.
|
:returns: STATUS.SUCCESS if the tag was successfully removed or if
|
||||||
|
the message had no such tag.
|
||||||
Raises an exception otherwise.
|
Raises an exception otherwise.
|
||||||
:exception: :exc:`NotmuchError`. They have the following meaning:
|
:exception: :exc:`NotmuchError`. They have the following meaning:
|
||||||
|
|
||||||
|
|
43
notmuch
43
notmuch
|
@ -100,17 +100,18 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
# Handle command line options
|
# Handle command line options
|
||||||
# No option
|
# No option
|
||||||
|
#-------------------------------------
|
||||||
if len(sys.argv) == 1:
|
if len(sys.argv) == 1:
|
||||||
print USAGE
|
print USAGE
|
||||||
|
#-------------------------------------
|
||||||
elif sys.argv[1] == 'setup':
|
elif sys.argv[1] == 'setup':
|
||||||
""" Interactively setup notmuch for first use. """
|
""" Interactively setup notmuch for first use. """
|
||||||
print "Not implemented."
|
print "Not implemented."
|
||||||
|
#-------------------------------------
|
||||||
elif sys.argv[1] == 'help':
|
elif sys.argv[1] == 'help':
|
||||||
if len(sys.argv) == 2: print HELPTEXT
|
if len(sys.argv) == 2: print HELPTEXT
|
||||||
else: print "Not implemented"
|
else: print "Not implemented"
|
||||||
|
#-------------------------------------
|
||||||
elif sys.argv[1] == 'show':
|
elif sys.argv[1] == 'show':
|
||||||
db = Database()
|
db = Database()
|
||||||
if len(sys.argv) == 2:
|
if len(sys.argv) == 2:
|
||||||
|
@ -123,11 +124,11 @@ if __name__ == '__main__':
|
||||||
m = Query(db,querystr).search_messages()
|
m = Query(db,querystr).search_messages()
|
||||||
for msg in m:
|
for msg in m:
|
||||||
print(msg.format_as_text())
|
print(msg.format_as_text())
|
||||||
|
#-------------------------------------
|
||||||
elif sys.argv[1] == 'new':
|
elif sys.argv[1] == 'new':
|
||||||
#TODO: handle --verbose
|
#TODO: handle --verbose
|
||||||
print "Not implemented."
|
print "Not implemented."
|
||||||
|
#-------------------------------------
|
||||||
elif sys.argv[1] == 'count':
|
elif sys.argv[1] == 'count':
|
||||||
db = Database()
|
db = Database()
|
||||||
if len(sys.argv) == 2:
|
if len(sys.argv) == 2:
|
||||||
|
@ -138,7 +139,30 @@ if __name__ == '__main__':
|
||||||
querystr = quote_query_line(sys.argv[2:])
|
querystr = quote_query_line(sys.argv[2:])
|
||||||
logging.debug("count "+querystr)
|
logging.debug("count "+querystr)
|
||||||
print(len(Query(db,querystr).search_messages()))
|
print(len(Query(db,querystr).search_messages()))
|
||||||
|
#-------------------------------------
|
||||||
|
elif sys.argv[1] == 'tag':
|
||||||
|
#build lists of tags to be added and removed
|
||||||
|
add, remove = [], []
|
||||||
|
while not sys.argv[2]=='--' and \
|
||||||
|
(sys.argv[2].startswith('+') or sys.argv[2].startswith('-')):
|
||||||
|
if sys.argv[2].startswith('+'):
|
||||||
|
#append to add list without initial +
|
||||||
|
add.append(sys.argv.pop(2)[1:])
|
||||||
|
else:
|
||||||
|
#append to remove list without initial -
|
||||||
|
remove.append(sys.argv.pop(2)[1:])
|
||||||
|
#skip eventual '--'
|
||||||
|
if sys.argv[2]=='--': sys.argv.pop(2)
|
||||||
|
#the rest is search terms
|
||||||
|
querystr = quote_query_line(sys.argv[2:])
|
||||||
|
logging.warning("tag search-term "+querystr)
|
||||||
|
db = Database(mode=Database.MODE.READ_WRITE)
|
||||||
|
m = Query(db,querystr).search_messages()
|
||||||
|
for msg in m:
|
||||||
|
#actually add and remove all tags
|
||||||
|
map(msg.add_tag, add)
|
||||||
|
map(msg.remove_tag, remove)
|
||||||
|
#-------------------------------------
|
||||||
elif sys.argv[1] == 'search-tags':
|
elif sys.argv[1] == 'search-tags':
|
||||||
if len(sys.argv) == 2:
|
if len(sys.argv) == 2:
|
||||||
#no further search term
|
#no further search term
|
||||||
|
@ -150,7 +174,7 @@ if __name__ == '__main__':
|
||||||
db = Database()
|
db = Database()
|
||||||
m = Query(db,querystr).search_messages()
|
m = Query(db,querystr).search_messages()
|
||||||
print("\n".join([t for t in m.collect_tags()]))
|
print("\n".join([t for t in m.collect_tags()]))
|
||||||
|
#-------------------------------------
|
||||||
elif sys.argv[1] == 'dump':
|
elif sys.argv[1] == 'dump':
|
||||||
#TODO: implement "dump <filename>"
|
#TODO: implement "dump <filename>"
|
||||||
db = Database()
|
db = Database()
|
||||||
|
@ -159,7 +183,7 @@ if __name__ == '__main__':
|
||||||
m = q.search_messages()
|
m = q.search_messages()
|
||||||
for msg in m:
|
for msg in m:
|
||||||
print("%s (%s)" % (msg.get_message_id(), msg.get_tags()))
|
print("%s (%s)" % (msg.get_message_id(), msg.get_tags()))
|
||||||
|
#-------------------------------------
|
||||||
else:
|
else:
|
||||||
# unknown command
|
# unknown command
|
||||||
print "Error: Unknown command '%s' (see \"notmuch help\")" % sys.argv[1]
|
print "Error: Unknown command '%s' (see \"notmuch help\")" % sys.argv[1]
|
||||||
|
@ -167,9 +191,10 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
#TODO: implement
|
#TODO: implement
|
||||||
"""
|
"""
|
||||||
|
setup
|
||||||
|
new
|
||||||
search [options...] <search-terms> [...]
|
search [options...] <search-terms> [...]
|
||||||
show <search-terms> [...]
|
show <search-terms> [...]
|
||||||
reply [options...] <search-terms> [...]
|
reply [options...] <search-terms> [...]
|
||||||
tag +<tag>|-<tag> [...] [--] <search-terms> [...]
|
|
||||||
restore <filename>
|
restore <filename>
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue