dotfiles/scripts/mel

233 lines
6.1 KiB
Plaintext
Raw Normal View History

2018-08-13 10:20:09 +00:00
#!/usr/bin/env python3
"""
Meh mail client
"""
2018-08-13 15:59:40 +00:00
# TODO Features
# TODO (only then) Refactor
2018-08-13 10:20:09 +00:00
import notmuch
import logging
import coloredlogs
import colorama
import datetime
import os
import progressbar
import time
2018-08-13 15:59:40 +00:00
import argparse
import configparser
import base64
import shutil
2018-08-13 10:20:09 +00:00
colorama.init()
coloredlogs.install(level='DEBUG', fmt='%(levelname)s %(message)s')
log = logging.getLogger()
2018-08-13 15:59:40 +00:00
log.debug("Loading config")
# TODO XDG
configPath = os.path.join(os.path.expanduser('~'), '.config', 'mel', 'accounts.conf')
config = configparser.ConfigParser()
config.read(configPath)
# Reading config a bit
accounts = dict()
mails = set()
for name in config.sections():
if not name.islower():
continue
section = config[name]
mails.add(section["from"])
if "alternatives" in section:
for alt in section["alternatives"].split(";"):
mails.add(alt)
accounts[name] = section
2018-08-13 10:20:09 +00:00
log.debug("Loading database")
2018-08-13 15:59:40 +00:00
dbPath = os.path.realpath(os.path.expanduser(config["GENERAL"]["storage"]))
db = notmuch.Database(mode=notmuch.Database.MODE.READ_WRITE, path=dbPath)
2018-08-13 10:20:09 +00:00
# TODO Open read-only when needed
log.debug("Database loaded")
def get_location(msg):
path = msg.get_filename()
path = os.path.dirname(path)
base = db.get_path()
assert path.startswith(base)
path = path[len(base):]
2018-08-13 15:59:40 +00:00
pathSplit = path.split('/')
mailbox = pathSplit[1]
state = pathSplit[-1]
folder = tuple(pathSplit[2:-1])
2018-08-13 10:20:09 +00:00
assert state in {'cur', 'tmp', 'new'}
return (mailbox, folder, state)
MAILBOX_COLORS = dict()
def get_mailbox_color(mailbox):
if mailbox not in MAILBOX_COLORS:
2018-08-13 15:59:40 +00:00
colorStr = config[mailbox]["color"]
2018-08-13 10:20:09 +00:00
colorStr = colorStr[1:] if colorStr[0] == '#' else colorStr
R = int(colorStr[0:2], 16)
G = int(colorStr[2:4], 16)
B = int(colorStr[4:6], 16)
MAILBOX_COLORS[mailbox] = '\x1b[38;2;{};{};{}m'.format(R, G, B)
return MAILBOX_COLORS[mailbox]
def format_date(date):
now = datetime.datetime.now()
midnight = datetime.datetime(year=now.year, month=now.month, day=now.day)
if date > midnight:
return date.strftime('%H:%M:%S')
else:
return date.strftime('%d/%m/%y')
2018-08-13 15:59:40 +00:00
def threadIdToB64(tid):
assert len(tid) == 16
tidInt = int(tid, 16)
tidBytes = tidInt.to_bytes(8, 'big')
tidB64 = base64.b64encode(tidBytes)
assert len(tidB64) == 12
return tidB64.decode()
WIDTH_FIXED = 30
WIDTH_RATIO_DEST_SUBJECT = 0.3
destWidth = None
subjectWidth = None
def compute_line_format():
columns, rows = shutil.get_terminal_size((80, 20))
remain = columns - WIDTH_FIXED - 1
global destWidth, subjectWidth
destWidth = int(remain * WIDTH_RATIO_DEST_SUBJECT)
subjectWidth = remain - destWidth
def clip_text(size, text):
l = len(text)
if l == size:
return text
elif l > size:
return text[:size-1] + '…'
elif l < size:
return text + " " * (size - l)
2018-08-13 10:20:09 +00:00
def print_msg(msg):
2018-08-13 15:59:40 +00:00
if not destWidth:
compute_line_format()
2018-08-13 10:20:09 +00:00
line = ""
tags = set(msg.get_tags())
mailbox, folder, state = get_location(msg)
line += get_mailbox_color(mailbox)
2018-08-13 15:59:40 +00:00
# ID
line += threadIdToB64(msg.get_thread_id())
# line += str(int(msg.get_thread_id(), 16))
2018-08-13 10:20:09 +00:00
# Date
2018-08-13 15:59:40 +00:00
line += " "
2018-08-13 10:20:09 +00:00
date = datetime.datetime.fromtimestamp(msg.get_date())
line += format_date(date)
# Icons
line += " "
def tags2col1(tag1, tag2, both, first, second, none):
nonlocal line
if tag1 in tags:
if tag2 in tags:
line += both
else:
line += first
else:
if tag2 in tags:
line += second
else:
line += none
2018-08-13 15:59:40 +00:00
tags2col1('spam', 'draft', '?', 'S', 'D', ' ')
tags2col1('attachment', 'encrypted', 'E', 'A', 'E', ' ')
tags2col1('unread', 'flagged', '!', 'U', 'F', ' ')
2018-08-13 10:20:09 +00:00
tags2col1('sent', 'replied', '?', '↑', '↪', ' ')
2018-08-13 15:59:40 +00:00
if 'sent' in tags:
dest = msg.get_header("to")
else:
dest = msg.get_header("from")
line += " "
line += clip_text(destWidth, dest)
2018-08-13 10:20:09 +00:00
# Subject
line += " "
2018-08-13 15:59:40 +00:00
subject = msg.get_header("subject")
line += clip_text(subjectWidth, subject)
2018-08-13 10:20:09 +00:00
line += colorama.Style.RESET_ALL
print(line)
def retag_msg(msg):
msg.freeze()
mailbox, folder, state = get_location(msg)
# Search-friendly folder name
2018-08-13 15:59:40 +00:00
slugFolderList = list()
for f, fold in [(f, folder[f]) for f in range(len(folder))]:
if f == 0 and len(folder) > 1 and fold == "INBOX":
continue
slugFolderList.append(fold.upper())
slugFolder = tuple(slugFolderList)
2018-08-13 10:20:09 +00:00
2018-08-13 15:59:40 +00:00
tags = set(msg.get_tags())
def tag_if(tag, condition):
if condition and tag not in tags:
msg.add_tag(tag)
elif not condition and tag in tags:
msg.remove_tag(tag)
expeditor = extract_email(msg.get_header('from'))
tag_if('inbox', slugFolder[0] == 'INBOX')
tag_if('spam', slugFolder[0] == 'JUNK' or slugFolder[0] == 'SPAM')
tag_if('deleted', slugFolder[0] == 'TRASH')
tag_if('draft', slugFolder[0] == 'DRAFTS')
tag_if('sent', expeditor in mails)
2018-08-13 10:20:09 +00:00
# Save
msg.thaw()
msg.tags_to_maildir_flags()
2018-08-13 15:59:40 +00:00
def applyMsgs(queryStr, function, *args, useProgressbar=False, **kwargs):
2018-08-13 10:20:09 +00:00
query = notmuch.Query(db, queryStr)
query.set_sort(notmuch.Query.SORT.OLDEST_FIRST)
msgs = query.search_messages()
if useProgressbar:
nbMsgs = query.count_messages()
iterator = progressbar.progressbar(msgs, max_value=nbMsgs)
else:
iterator = msgs
for msg in iterator:
2018-08-13 15:59:40 +00:00
function(msg, *args, **kwargs)
2018-08-13 10:20:09 +00:00
2018-08-13 15:59:40 +00:00
def extract_email(field):
try:
sta = field.index('<')
sto = field.index('>')
return field[sta+1:sto]
except ValueError:
return field
# applyMsgs('*', print_msg)
2018-08-13 10:20:09 +00:00
applyMsgs('tag:inbox', print_msg)
# applyMsgs('tag:spam', print_msg)
# applyMsgs('tag:unread', print_msg)
2018-08-13 15:59:40 +00:00
# applyMsgs('tag:unprocessed', print_msg)
2018-08-13 10:20:09 +00:00
# applyMsgs('from:geoffrey@frogeye.fr', print_msg)
2018-08-13 15:59:40 +00:00
# applyMsgs('tag:unprocessed', retag_msg, useProgressbar=True)
2018-08-13 10:20:09 +00:00
# applyMsgs('*', retag_msg, useProgressbar=True)
2018-08-13 15:59:40 +00:00