#!/usr/bin/python ''' ttbp: tilde town blogging platform (also known as the feels engine) a console-based blogging program developed for tilde.town copyright (c) 2016 ~endorphant (endorphant@tilde.town) ttbp.py: the main console interface Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. the complete codebase is available at: https://github.com/modgethanc/ttbp ''' from __future__ import absolute_import import os import sys import tempfile import subprocess import time import json from email.mime.text import MIMEText import datetime from six.moves import input import inflect from . import config from . import core from . import chatter from . import gopher from . import util __version__ = "0.12.2" __author__ = "endorphant {leftover}\n".format(leftover=leftover)) def main(): ''' main engine head * called on program start * calls config check * proceeds to main menu * handles ^c and ^d ejects ''' redraw() print(""" if you don't want to be here at any point, press and it'll all go away. just keep in mind that you might lose anything you've started here.\ """) try: print(check_init()) except EOFError: print(stop()) return redraw() while 1: try: print(main_menu()) except EOFError: print(stop()) break except KeyboardInterrupt: redraw(EJECT) else: break def stop(): ''' returns an exit message. ''' return "\n\n\t"+chatter.say("bye")+"\n\n" def check_init(): ''' user environment validation * checks for presence of ttbprc * checks for last run version ''' print("\n\n") if os.path.exists(os.path.join(os.path.expanduser("~"),".ttbp")): if config.USER == "endorphant": print("hey boss! :D\n") else: print("{greeting}, {user}".format(greeting=chatter.say("greet"), user=config.USER)) load_settings = load_user_settings() ## ttbp env validation if not user_up_to_date(): update_user_version() if not valid_setup(load_settings): setup_repair() else: input("press to explore your feels.\n\n") core.load(SETTINGS) return "" else: return init() def init(): """Initializes new user by setting up ~/.ttbp directory and config file. """ try: input(config.intro_prompt) except KeyboardInterrupt: print("\n\nthanks for checking in! i'll always be here.\n\n") quit() print("\nokay! gimme a second to get you set up!") time.sleep(1) print("...") time.sleep(.5) ## record user in source list users = open(config.USERFILE, 'a') users.write(config.USER+"\n") users.close() #subprocess.call(['chmod', 'a+w', config.USERFILE]) ## make .ttbp directory structure print("\ngenerating feels at {path}...".format(path=config.PATH).rstrip()) subprocess.call(["mkdir", config.PATH]) subprocess.call(["mkdir", config.USER_CONFIG]) subprocess.call(["mkdir", config.MAIN_FEELS]) versionFile = os.path.join(config.PATH, "version") open(versionFile, "w").write(__version__) ## create header file header = gen_header() headerfile = open(os.path.join(config.USER_CONFIG, "header.txt"), 'w') for line in header: headerfile.write(line) headerfile.close() ## copy footer and default stylesheet with open(os.path.join(config.USER_CONFIG, 'footer.txt'), 'w') as f: f.write(config.DEFAULT_FOOTER) with open(os.path.join(config.USER_CONFIG, 'style.css'), 'w') as f: f.write(config.DEFAULT_STYLE) ## run user-interactive setup and load core engine time.sleep(0.5) print("done setting up feels!") print("\nthese are the default settings. you can change any of them now, or change them later at any time!!") setup() core.load(SETTINGS) input(""" you're all good to go, {friend}! if you have any questions about how things work here, check out the documentation from the main menu, ask in IRC, or drop ~endorphant a line! hit to continue. """.format(friend=chatter.say("friend"))) return "" def gen_header(): ''' header generator builds header to insert username ''' header =""" ~"""+config.USER+""" on TTBP
\ """ return header def valid_setup(load_settings): ''' Checks to see if user has a valid ttbp environment. ''' if not load_settings: return False for option in iter(DEFAULT_SETTINGS): if option != "publish dir" and SETTINGS.get(option, None) is None: return False if core.publishing(): if SETTINGS.get("publish dir", None) is None: print("CONFIG ERROR! publishing is enabled but no directory is set") return False if (not os.path.exists(config.WWW) or not os.path.exists(os.path.join(config.PUBLIC, SETTINGS.get("publish dir")))): print("something's weird with your publishing directories. let's try rebuilding them!") update_publishing() return True def load_user_settings(): """attempts to load user's ttbprc; returns settings dict if valie, otherwise returns false""" global SETTINGS if not os.path.isfile(config.TTBPRC): return False try: SETTINGS = json.load(open(config.TTBPRC)) except ValueError: return False core.load(SETTINGS) return SETTINGS def setup_repair(): ''' setup repair function * calls setup() * handles ^c ''' global SETTINGS print("\nyour ttbp configuration doesn't look right. let me try to fix it....\n\n") time.sleep(1) settings_map = { "editor": select_editor, "publishing": select_publishing, "publish dir": select_publish_dir, "gopher": gopher.select_gopher, "rainbows": toggle_rainbows, "post as nopub": toggle_pub_default } for option in iter(settings_map): if SETTINGS.get(option, None) is None: SETTINGS.update({option: "NOT SET"}) SETTINGS.update({option: settings_map[option]()}) update_publishing() core.reload_ttbprc(SETTINGS) save_settings() print("...") time.sleep(0.5) input("\nyou're all good to go, "+chatter.say("friend")+"! hit to continue.\n\n") def setup(): ''' master setup function * editor selection * publishing toggle (publish/unpublish as needed) * directory selection * gopher opt in/out TODO: break this out better? ''' global SETTINGS menuOptions = [] settingList = sorted(list(SETTINGS)) for setting in settingList: menuOptions.append(setting + ": \t" + str(SETTINGS.get(setting))) util.print_menu(menuOptions, SETTINGS.get("rainbows", False)) try: choice = input("\npick a setting to change (or type 'q' to exit): ") except KeyboardInterrupt: redraw(EJECT) return SETTINGS if choice is not "": if choice in QUITS: redraw() return SETTINGS # editor selection if settingList[int(choice)] == "editor": SETTINGS.update({"editor": select_editor()}) redraw("text editor set to: {editor}".format(editor=SETTINGS["editor"])) save_settings() return setup() # publishing selection elif settingList[int(choice)] == "publishing": SETTINGS.update({"publishing":select_publishing()}) core.reload_ttbprc(SETTINGS) update_publishing() redraw("publishing set to {publishing}".format(publishing=SETTINGS.get("publishing"))) save_settings() return setup() # publish dir selection elif settingList[int(choice)] == "publish dir": publish_dir = select_publish_dir() SETTINGS.update({"publish dir": publish_dir}) #update_publishing() if publish_dir is None: redraw("sorry, i can't set a publish directory for you if you don't have html publishing enabled. please enable publishing to continue.") else: redraw("publishing your entries to {url}/index.html".format( url="/".join([config.LIVE+config.USER, str(SETTINGS.get("publish dir"))]))) save_settings() return setup() # gopher opt-in elif settingList[int(choice)] == "gopher": SETTINGS.update({'gopher': gopher.select_gopher()}) redraw('gopher publishing set to: {gopher}'.format(gopher=SETTINGS['gopher'])) update_gopher() save_settings() return setup() # rainbow menu selection elif settingList[int(choice)] == "rainbows": SETTINGS.update({"rainbows": toggle_rainbows()}) redraw("rainbow menus set to {rainbow}".format(rainbow=SETTINGS.get("rainbows"))) save_settings() return setup() #nopub toggling elif settingList[int(choice)] == "post as nopub": SETTINGS.update({"post as nopub": toggle_pub_default()}) redraw("posting default set to {nopub}".format(nopub=SETTINGS.get("post as nopub"))) save_settings() return setup() input("\nyou're all good to go, {friend}! hit to continue.\n\n".format(friend=chatter.say("friend"))) redraw() return SETTINGS else: redraw("now changing your settings. press if you didn't mean to do this.") return setup() def save_settings(): """ Save current settings. """ ttbprc = open(config.TTBPRC, "w") ttbprc.write(json.dumps(SETTINGS, sort_keys=True, indent=2, separators=(',',':'))) ttbprc.close() ## menus def main_menu(): ''' main navigation menu ''' menuOptions = [ "record some feels", "manage your feels", "check out your neighbors", "browse global feels", "visit your subscriptions", "scribble some graffiti", "change your settings", "send some feedback", "see credits", "read documentation"] print("you're at ttbp home. remember, you can always press to come back here.\n") util.print_menu(menuOptions, SETTINGS.get("rainbows", False)) try: choice = input("\ntell me about your feels (or type 'q' to exit): ") except KeyboardInterrupt: redraw(EJECT) return main_menu() if choice == '0': redraw() today = time.strftime("%Y%m%d") write_entry(os.path.join(config.MAIN_FEELS, today+".txt")) core.www_neighbors() elif choice == '1': intro = "here are some options for managing your feels:" redraw(intro) review_menu(intro) core.load_files() elif choice == '2': users = core.find_ttbps() prompt = "the following {usercount} {are} recording feels on ttbp:".format( usercount=p.no("user", len(users)), are=p.plural("is", len(users))) redraw(prompt) view_neighbors(users, prompt) elif choice == '3': redraw("most recent global entries") view_global_feed() elif choice == '4': intro = "your subscriptions list is private; no one but you will know who you're following.\n\n> here are some options for your subscriptions:" redraw(intro) subscription_handler(intro) elif choice == '5': graffiti_handler() elif choice == '6': redraw("now changing your settings. press if you didn't mean to do this.") core.load(setup()) # reload settings to core elif choice == '7': redraw("you're about to send mail to ~endorphant about ttbp") feedback_menu() elif choice == '8': redraw() show_credits() elif choice == '9': subprocess.call(["lynx", os.path.join(config.INSTALL_PATH, "..", "doc", "manual.html")]) redraw() elif choice in QUITS: return stop() else: redraw(INVALID) return main_menu() def feedback_menu(): ''' feedback handling menu * selects feedback type * calls feedback writing function ''' util.print_menu(SUBJECTS, SETTINGS.get("rainbows", False)) choice = input("\npick a category for your feedback: ") cat = "" if choice in ['0', '1', '2', '3']: cat = SUBJECTS[int(choice)] entered = input(""" composing a {mail_category} to ~endorphant. press to open an external text editor. mail will be sent once you save and quit. """.format(mail_category=cat)) redraw(send_feedback(entered, cat)) return else: redraw(INVALID) return feedback_menu() def review_menu(intro=""): ''' submenu for reviewing feels. ''' menuOptions = [ "read over feels", "modify feels publishing", "backup your feels", "import a feels backup", "bury some feels", "delete feels by day", "purge all feels", "wipe feels account" ] util.print_menu(menuOptions, SETTINGS.get("rainbows", False)) choice = util.list_select(menuOptions, "what would you like to do with your feels? (or 'q' to return home) ") top = "" hasfeels = len(os.listdir(config.MAIN_FEELS)) > 0 nofeels = "you don't have any feels to work with, "+chatter.say("friend")+"\n\n> " if choice is not False: if choice == 0: if hasfeels: redraw("your recorded feels, listed by date:") view_feels(config.USER) else: top = nofeels elif choice == 1: if hasfeels: redraw("publishing status of your feels:") list_nopubs(config.USER) else: top = nofeels elif choice == 2: if hasfeels: redraw("FEELS BACKUP") backup_feels() else: top = nofeels elif choice == 3: redraw("loading feels backup") load_backup() elif choice == 4: if hasfeels: redraw("burying feels") bury_feels() else: top = nofeels elif choice == 5: if hasfeels: redraw("deleting feels") delete_feels() else: top = nofeels elif choice == 6: if hasfeels: redraw("!!!PURGING ALL FEELS!!!") purge_feels() else: top = nofeels elif choice == 7: redraw("!!! WIPING FEELS ACCOUNT !!!") wipe_account() else: redraw() return redraw(top+intro) return review_menu(intro) def subscription_handler(intro=""): ''' submenu for managing subscriptions ''' if not os.path.exists(config.SUBS): subprocess.call(["touch", config.SUBS]) subprocess.call(["chmod", "600", config.SUBS]) subs_raw = [] if os.path.isfile(config.SUBS): for line in open(config.SUBS, "r"): subs_raw.append(line.rstrip()) subs = [] all_users = core.find_ttbps() for name in subs_raw: if name in all_users: subs.append(name) menuOptions = [ "view subscribed feed", "manage subscriptions" ] util.print_menu(menuOptions, SETTINGS.get("rainbows", False)) choice = util.list_select(menuOptions, "what would you like to do with your subscriptions? (or 'q' to return home) ") top = "" if choice is not False: if choice == 0: if len(subs) > 0: prompt = "most recent entries from your subscribed pals:" redraw(prompt) view_subscribed_feed(subs, prompt) else: intro = "it doesn't look like you have any subscriptions to see! add pals with 'manage subscriptions' here." elif choice == 1: prompt = "options for managing your subscriptions:" redraw(prompt) subscription_manager(subs, prompt) else: redraw() return redraw(top+intro) return subscription_handler(intro) def view_neighbors(users, prompt, page=0): ''' generates list of all users on ttbp, sorted by most recent post * if user is publishing, list publish directory ''' userList = [] ## assumes list of users passed in all have valid config files for user in users: userRC = json.load(open(os.path.join("/home", user, ".ttbp", "config", "ttbprc"))) ## retrieve publishing url, if it exists url="\t\t\t" if userRC.get("publish dir"): url = config.LIVE+user+"/"+userRC.get("publish dir") ## find last entry try: files = os.listdir(os.path.join("/home", user, ".ttbp", "entries")) except OSError: files = [] files.sort() lastfile = "" for filename in files: if core.valid(filename): lastfile = os.path.join("/home", user, ".ttbp", "entries", filename) ## generate human-friendly timestamp ago = "never" if lastfile: last = os.path.getctime(lastfile) since = time.time()-last ago = util.pretty_time(int(since)) + " ago" else: last = 0 ## some formatting handwavin urlpad = "" if ago == "never": urlpad = "\t" userpad = "" if len(user) < 7: userpad = "\t" userList.append(["\t~{user}{userpad}\t({ago}){urlpad}\t{url}".format(user=user, userpad=userpad, ago=ago, urlpad=urlpad, url=url), last, user]) # sort user by most recent entry for display userList.sort(key = lambda userdata:userdata[1]) userList.reverse() sortedUsers = [] userIndex = [] for user in userList: sortedUsers.append(user[0]) userIndex.append(user[2]) ans = menu_handler(sortedUsers, "pick a townie to browse their feels, or type 'q' to go home: ", 15, page, SETTINGS.get("rainbows", False), prompt) if ans is not False: (page, choice) = ans redraw("~{user}'s recorded feels, listed by date: \n".format(user=userIndex[choice])) view_feels(userIndex[choice]) view_neighbors(users, prompt, page) else: redraw() return def view_feels(townie): ''' generates a list of all feels by given townie and displays in date order; allows selection of one feel to read. ''' metas, owner = generate_feels_list(townie) if len(metas) > 0: entries = [] for entry in metas: pub = "" if core.nopub(entry[0]): pub = "(nopub)" entries.append(""+entry[4]+" ("+p.no("word", entry[2])+") "+"\t"+pub) return list_entries(metas, entries, owner+" recorded feels, listed by date: ") else: redraw("no feels recorded by ~"+townie) def generate_feels_list(user): """create a list of feels for display from the named user. """ filenames = [] showpub = False if user == config.USER: entryDir = config.MAIN_FEELS owner = "your" if core.publishing(): showpub = True else: owner = "~"+user+"'s" entryDir = os.path.join("/home", user, ".ttbp", "entries") for entry in os.listdir(entryDir): filenames.append(os.path.join(entryDir, entry)) metas = core.meta(filenames) metas.sort(key = lambda entry:entry[4]) metas.reverse() return metas, owner def backup_feels(): """creates a tar.gz of user's entries directory""" backupfile = os.path.join(os.path.expanduser('~'), "feels-backup-"+time.strftime("%Y%m%d-%H%M%S")+".tar.gz") print("""\ i'm preparing all of your entries for backup.""") print("...") time.sleep(1) print(""" ready to go! a backup file will be saved to your home directory at: {backuploc}""".format(backuploc=backupfile)) ans = util.input_yn("""\ would you like to create this backup? please enter""") if ans: if not subprocess.call(["tar", "-C", config.PATH, "-czf", backupfile, "entries"]): subprocess.call(["chmod", "600", backupfile]) if not os.path.exists(config.BACKUPS): subprocess.call(["mkdir", config.BACKUPS]) subprocess.call(["chmod", "700", config.BACKUPS]) subprocess.call(["cp", backupfile, config.BACKUPS]) print("\nbackup saved! i also put a copy at {backup_dir} for you.".format(backup_dir = config.BACKUPS)) else: print(config.mystery_error) else: print("no problem, {friend}; come back whenever if you want a backup!".format(friend=chatter.say("friend"))) input("\n\npress to go back to managing your feels.\n\n") redraw() return def delete_feels(): """handles deleting feels one at a time""" feel = input("""which day's feels do you want to load for deletion? YYYYMMDD (or 'q' to cancel)> """) if feel in util.BACKS: return print("...") time.sleep(0.1) print("""\ here's a preview of that feel. press when you're done reviewing! -------------------------------------------------------------""") if subprocess.call(["less", os.path.join(config.MAIN_FEELS, feel+".txt")]): redraw("deleting feels") print("""\ sorry, i couldn't find feels for {date}! please try again, or type to cancel. """.format(date=feel)) return delete_feels() print(""" ------------------------------------------------------------- feels deletion is irreversible! if you're sure you want to delete this feel, type the date again to confirm, or 'q' to cancel.""") confirm = input("[{feeldate}]> ".format(feeldate=feel)) if confirm == feel: print("...") time.sleep(0.5) core.delete_feel(feel+".txt") print("feels deleted!") else: print("deletion canceled!") ans = util.input_yn("""do you want to delete a different feel? please enter""") if ans: redraw("deleting feels") return delete_feels() else: print("okay! please come back any time if you want to delete old feels!") input("\n\npress to go back to managing your feels.\n\n") redraw() return def purge_feels(): """handles deleting all feels""" print(config.feels_purge_prompt) print("...") time.sleep(0.5) print("...loading feels...") time.sleep(1) print("...") feelscount = len(os.listdir(config.MAIN_FEELS)) if feelscount > 0: purgecode = util.genID(5) print(""" i've loaded up all {count} of your feels for purging. if you're ready, carefully type the following purge code: _________ | | | {purgecode} | |_______| """.format(purgecode=purgecode, count=feelscount)) ans = input("(leave blank or type anything else to cancel) > ") if ans == purgecode: print("...") time.sleep(0.5) unpublish() if not subprocess.call(["rm", "-rf", config.MAIN_FEELS]): subprocess.call(["mkdir", config.MAIN_FEELS]) core.load_files() print("ALL FEELS PURGED! you're ready to start fresh!") else: print(config.mystery_error) else: print("\nfeels purge canceled! you're welcome to come back again.") else: print("you don't have any feels to purge, "+chatter.say("friend")) input("\n\npress to go back to managing your feels.\n\n") redraw() return def wipe_account(): """handles wiping feels account""" print(config.account_wipe_prompt) print("...") time.sleep(0.5) print("...packaging up all your feels...") time.sleep(1) print("...") purgecode = util.genID(5) print(""" your account is all packed up! if you're ready, carefully type the following purge code: _________ | | | {purgecode} | |_______| """.format(purgecode=purgecode)) ans = input("(leave blank or type anything else to cancel) > ") if ans == purgecode: print("...") time.sleep(0.5) unpublish() if core.publishing(): publishDir = os.path.join(config.PUBLIC, SETTINGS.get("publish dir")) make_publish_dir(publishDir) if not subprocess.call(["rm", "-rf", config.PATH]): print(""" account deleted! if you ever want to come back, you're always welcome to start fresh :) thank you for sharing your feels!""") input("\n\npress to exit the feels engine.\n\n") sys.exit(stop()) else: print(config.mystery_error) else: print("\naccount deletion canceled! you're welcome to come back again.") input("\n\npress to go back to managing your feels.\n\n") redraw() return def load_backup(): """ scans for archive files (prompting for a file location if not found), opens, copies files to main feels directory (skipping ones that already exist) """ print("scanning backup directory at {directory}...".format(directory=config.BACKUPS)) time.sleep(.5) print("...\n") backups = [] try: for filename in os.listdir(config.BACKUPS): if "feels-backup" in filename and ".tar" in filename: backups.append(filename) except FileNotFoundError: subprocess.call(["mkdir", config.BACKUPS]) if len(backups) < 1: print(""" sorry, i didn't find any feels backups! if you have a backup file handy, please move it to {directory} and try running this tool again.\ """.format(directory=config.BACKUPS)) else: print("backup files found:\n") ans = menu_handler(backups, "pick a backup file to load (or 'q' to cancel): ", 15, 0, SETTINGS.get("rainbows", False), "backup files found:") if ans is not False: (page, choice) = ans imports = core.process_backup(os.path.join(config.BACKUPS, backups[choice])) for feel in imports: print("importing {entry}".format(entry="-".join(util.parse_date(feel)))) subprocess.call(["mv", feel, config.MAIN_FEELS]) time.sleep(.01) core.load_files() tempdir = os.path.join(config.BACKUPS, os.path.splitext(os.path.splitext(os.path.basename(backups[choice]))[0])[0], "entries") time.sleep(.5) print("...\n") if len(os.listdir(tempdir)) == 0: os.rmdir(tempdir) print("congrats! your feels archive has been unloaded.") else: print("""\ i've unloaded as much as i can, but there are still some feels i didn't copy over. this is probably because you have current feels on the same days, and i didn't want to overwrite them. you can check out the leftover feels yourself at: {directory}""".format(directory=tempdir)) else: return input("\n\npress to go back to managing your feels.\n\n") return def bury_feels(): """queries for a feel to bury, then calls the feels burying handler. """ feel = input(config.bury_feels_prompt) if feel in util.BACKS: return print("...") time.sleep(0.1) print("""\ here's a preview of that feel. press when you're done reviewing! -------------------------------------------------------------""") if subprocess.call(["less", os.path.join(config.MAIN_FEELS, feel+".txt")]): redraw("burying feels") print("""\ sorry, i couldn't find feels for {date}! please try again, or type to cancel. """.format(date=feel)) return delete_feels() print(""" ------------------------------------------------------------- feels burying is irreversible! if you're sure you want to bury this feel, type the date again to confirm, or 'q' to cancel. """) confirm = input("[{feeldate}]> ".format(feeldate=feel)) if confirm == feel: print("...") time.sleep(0.5) core.bury_feel(feel+".txt") print("feels buried!") else: print("burying canceled!") ans = util.input_yn("""do you want to bury a different feel? please enter""") if ans: redraw("burying feels") return bury_feels() else: print("okay! please come back any time if you want to bury your feels!") input("\n\npress to go back to managing your feels.\n\n") redraw() return def show_credits(): ''' prints author acknowledgements and commentary ''' print(config.credits) input("\n\npress to go back home.\n\n") redraw() return ## handlers def write_entry(entry=os.path.join(config.MAIN_FEELS, "test.txt")): ''' main feels-recording handler ''' entered = input(config.recording) if entered: entryFile = open(entry, "a") entryFile.write("\n"+entered+"\n") entryFile.close() subprocess.call([SETTINGS.get("editor"), entry]) left = "" core.load_files() if SETTINGS.get("post as nopub"): core.toggle_nopub(os.path.basename(entry)) else: if core.publishing(): core.write_html("index.html") left = "posted to {url}/index.html\n\n> ".format( url="/".join( [config.LIVE+config.USER, str(SETTINGS.get("publish dir"))])) if SETTINGS.get('gopher'): gopher.publish_gopher('feels', core.FILES) left += "also posted to your ~/public_gopher!\n\n> " #core.load_files() redraw(left + "thanks for sharing your feels!") return def list_nopubs(user): ''' handler for toggling nopub on individual entries ''' metas, owner = generate_feels_list(user) if len(metas) > 0: return set_nopubs(metas, user, "publishing status of your feels:") else: redraw("no feels recorded by ~"+user) def set_nopubs(metas, user, prompt, page=0): """displays a list of entries for pub/nopub toggling. """ if core.publishing(): nopub_note = "" else: nopub_note = """\ (since you're not publishing your entries, these settings don't really matter; none of your feels will be viewable outside of this server)""" print(nopub_note + "\n") entries = [] for entry in metas: pub = "" if core.nopub(entry[0]): pub = "(nopub)" entries.append(""+entry[4]+" ("+p.no("word", entry[2])+") "+"\t"+pub) ans = menu_handler(entries, "pick an entry from the list to toggle nopub status, or type 'q' to go back: ", 10, page, SETTINGS.get("rainbows", False), prompt+"\n\n"+nopub_note) if ans is not False: (page, choice) = ans target = os.path.basename(metas[choice][0]) action = core.toggle_nopub(target) redraw(prompt) if SETTINGS["gopher"]: gopher.publish_gopher('feels', core.get_files()) return set_nopubs(metas, user, prompt, page) else: redraw() return def send_feedback(entered, subject="none"): ''' main feedback/bug report handler ''' message = "" temp = tempfile.NamedTemporaryFile() if entered: msgFile = open(temp.name, "a") msgFile.write(entered+"\n") msgFile.close() subprocess.call([SETTINGS["editor"], temp.name]) message = open(temp.name, 'r').read() if message: id = "#"+util.genID(3) mail = MIMEText(message) mail['To'] = config.FEEDBOX mail['From'] = config.USER+"@tilde.town" mail['Subject'] = " ".join(["[ttbp]", subject, id]) m = os.popen("/usr/sbin/sendmail -t -oi", 'w') m.write(mail.as_string()) m.close() exit = """\ thanks for writing! for your reference, it's been recorded > as """+ " ".join([subject, id])+""". i'll try to respond to you soon.\ """ else: exit = """\ i didn't send your blank message. if you made a mistake, please try running through the feedback option again!\ """ return exit def list_entries(metas, entries, prompt, page=0): ''' displays a list of entries for reading selection, allowing user to select one for display. ''' ans = menu_handler(entries, "pick an entry from the list, or type 'q' to go back: ", 10, page, SETTINGS.get("rainbows", False), prompt) if ans is not False: (page, choice) = ans redraw("now reading ~{user}'s feels on {date}\n> press to return to feels list.\n\n".format(user=metas[choice][5], date=metas[choice][4])) show_entry(metas[choice][0]) redraw(prompt) return list_entries(metas, entries, prompt, page) else: redraw() return def show_entry(filename): ''' call less on passed in filename ''' subprocess.call(["less", filename]) return def view_global_feed(): ''' display list of most recent global entries ''' (entries, metas)= feed_list(core.find_ttbps()) list_entries(metas, entries, "recent global entries:") redraw() return def view_subscribed_feed(subs, prompt=""): ''' display list of most recent entries on user's subscribed list. ''' (entries, metas)= feed_list(subs, 0) list_entries(metas, entries, prompt) redraw() return def feed_list(townies, delta=30): ''' given a list of townies, generate a list of 50 most recent entries within given interval (default 30 days; 0 days for no limit). validates against townies with ttbp config files. returns a tuple of (entries, metas) ''' feedList = [] all_users = core.find_ttbps() for townie in townies: if townie not in all_users: continue entryDir = os.path.join("/home", townie, ".ttbp", "entries") try: filenames = os.listdir(entryDir) except OSError: filenames = [] for entry in filenames: if delta > 0: if core.valid(entry): year = int(entry[0:4]) month = int(entry[4:6]) day = int(entry[6:8]) datecheck = datetime.date(year, month, day) displayCutoff = datetime.date.today() - datetime.timedelta(days=delta) if datecheck > displayCutoff: feedList.append(os.path.join(entryDir, entry)) else: feedList.append(os.path.join(entryDir, entry)) metas = core.meta(feedList) metas.sort(key = lambda entry:entry[3]) metas.reverse() entries = [] for entry in metas[0:50]: pad = "" if len(entry[5]) < 8: pad = "\t" entries.append("~{user}{pad}\ton {date} ({wordcount})".format( user=entry[5], pad=pad, date=entry[3], wordcount=p.no("word", entry[2]))) return entries, metas def subscription_manager(subs, intro=""): ''' ''' menuOptions = [ "add pals", "remove pals" ] util.print_menu(menuOptions, SETTINGS.get("rainbows", False)) choice = util.list_select(menuOptions, "what do you want to do? (enter 'q' to go back) ") top = "" if choice is not False: if choice == 0: prompt = "list of townies recording feels:" redraw(prompt) subs = subscribe_handler(subs, prompt) elif choice == 1: prompt = "list of townies you're subscribed to:" redraw(prompt) subs = unsubscribe_handler(subs, prompt) else: redraw() return redraw(top+intro) return subscription_manager(subs, intro) def unsubscribe_handler(subs, prompt, page=0): ''' displays a list of currently subscribed users and toggles deletion. ''' subs.sort() ans = menu_handler(subs, "pick a pal to unsubscribe (or 'q' to cancel): ", 15, page, SETTINGS.get("rainbows", False), "list of townies recording feels:") if ans is not False: (page,choice) = ans townie = subs[choice] subs.remove(townie) save_subs(subs) redraw("{townie} removed! \n\n> {prompt}".format(townie=townie, prompt=prompt)) return unsubscribe_handler(subs, prompt, page) else: redraw() return subs def subscribe_handler(subs, prompt, page=0): ''' displays a list of all users not subscribed to and toggles adding, returning the subs list when finished. ''' candidates = [] for townie in core.find_ttbps(): if townie not in subs: candidates.append(townie) candidates.sort() ans = menu_handler(candidates, "pick a townie to add to your subscriptions (or 'q' to cancel): ", 15, page, SETTINGS.get("rainbows", False), "list of townies recording feels:") if ans is not False: (page, choice) = ans townie = candidates[choice] subs.append(townie) save_subs(subs) redraw("{townie} added! \n\n> {prompt}".format(townie=townie, prompt=prompt)) return subscribe_handler(subs, prompt, page) else: redraw() return subs def save_subs(subs): ''' takes given subscription list and saves it into the user config, overwriting whatever is already there. ''' subs_file = open(config.SUBS, 'w') for townie in subs: subs_file.write(townie + "\n") subs_file.close() def graffiti_handler(): ''' Main graffiti handler; checks for lockfile from another editing sesison (overwriting by default if the lock is more than three days old. ''' if os.path.isfile(config.WALL_LOCK) and \ time.time() - os.path.getmtime(config.WALL_LOCK) < 60*60*24*3: redraw("sorry, {friend}, but someone's there right now. try again in a few!".format(friend=chatter.say("friend"))) else: subprocess.call(["touch", config.WALL_LOCK]) redraw() print("""\ the graffiti wall is a world-writeable text file. anyone can scribble on it; anyone can move or delete things. please be considerate of your neighbors when writing on it. no one will be able to visit the wall while you are here, so don't worry about overwriting someone else's work. anything you do to the wall will be recorded if you save the file, and you can cancel your changes by exiting without saving. """) input("press to visit the wall\n\n") subprocess.call([SETTINGS.get("editor"), config.WALL]) subprocess.call(["rm", config.WALL_LOCK]) redraw("thanks for visiting the graffiti wall!") ## misc helpers def toggle_pub_default(): """setup helper for setting default publish privacy (does not apply retroactively). """ if SETTINGS.get("post as nopub", False) is True: (nopub, will) = ("(nopub)", "won't") else: (nopub, will) = ("public", "will") if SETTINGS.get("publishing", False) is True: publishing = "" else: publishing = """\ since you're currently not publishing your posts to html/gopher, this setting won't affect the visibility of your posts. however, the option is still here if you'd like to change it. """ print(""" DEFAULT POST PRIVACY your entries are set to automatically post as {nopub}. this means they {will} be posted to your world-visible pages at first (which you can always change after the fact.) this setting only affects subsequent posts; it does not apply retroactively. {publishing}""".format(nopub=nopub, will=will, publishing=publishing)) ans = util.input_yn("""\ would you like to change this behavior? please enter""") if ans: return not SETTINGS.get("post as nopub") else: return SETTINGS.get("post as nopub") def toggle_rainbows(): """setup helper for rainbow toggling """ if SETTINGS.get("rainbows", False) is True: status = "enabled" else: status = "disabled" print("\nRAINBOW MENU TOGGLING") print("rainbow menus are currently {status}".format(status=status)) publish = util.input_yn("""\ would you like to have rainbow menus? please enter\ """) return publish def select_editor(): ''' setup helper for editor selection ''' print("\nTEXT EDITOR SELECTION") print("your current editor is: "+SETTINGS.get("editor")) util.print_menu(EDITORS, SETTINGS.get("rainbows", False)) choice = util.list_select(EDITORS, "pick your favorite text editor, or type 'q' to go back: ") if choice is False: # if selection is canceled, return either previously set editor or default return SETTINGS.get("editor", EDITORS[0]) return EDITORS[int(choice)] def select_publish_dir(): ''' setup helper for publish directory selection ''' if not core.publishing(): return None current = SETTINGS.get("publish dir") republish = False print("\nUPDATING HTML PATH") if current: print("\ncurrent publish dir:\t"+os.path.join(config.PUBLIC, SETTINGS["publish dir"])) republish = True choice = input("\nwhere do you want your blog published? (leave blank to use default \"blog\") ") if not choice: choice = "blog" publishDir = os.path.join(config.PUBLIC, choice) while os.path.exists(publishDir): second = input(""" {pDir} already exists! setting this as your publishing directory means this program may delete or overwrite file there! if you're sure you want to use it, hit to confirm. otherwise, pick another location: """.format(pDir=publishDir)) if second == "": break choice = second publishDir = os.path.join(config.PUBLIC, choice) return choice def select_publishing(): ''' setup helper for toggling publishing ''' publish = util.input_yn("""\ SETTING UP PUBLISHING do you want to publish your feels online? if yes, your feels will be published to a directory of your choice in your public_html. i'll confirm the location of that directory in a moment. if not, your feels will only be readable from within the tilde.town network. if you already have a publishing directory, i'll remove it for you (don't worry, your written entries will still be saved!) you can change this option any time. please enter\ """) return publish def unpublish(): '''remove all published entries in html and gopher. ''' global SETTINGS directory = SETTINGS.get("publish dir") if directory: publishDir = os.path.join(config.PUBLIC, directory) if os.path.exists(publishDir): subprocess.call(["rm", "-rf", publishDir]) subprocess.call(["rm", "-rf", config.WWW]) make_publish_dir(SETTINGS.get("publish dir")) #SETTINGS.update({"publish dir": None}) if SETTINGS.get("gopher"): gopher.unpublish() def update_publishing(): ''' updates publishing directory if user is publishing. otherwise, wipe it. ''' global SETTINGS if core.publishing(): oldDir = SETTINGS.get("publish dir") newDir = select_publish_dir() SETTINGS.update({"publish dir": newDir}) if oldDir: subprocess.call(["rm", os.path.join(config.PUBLIC, oldDir)]) make_publish_dir(newDir) core.load_files() #core.write_html("index.html") else: unpublish() core.load(SETTINGS) def make_publish_dir(publish_dir): ''' setup helper to create publishing directory ''' if not os.path.exists(config.WWW): subprocess.call(["mkdir", config.WWW]) subprocess.call(["ln", "-s", os.path.join(config.USER_CONFIG, "style.css"), os.path.join(config.WWW, "style.css")]) subprocess.call(["touch", os.path.join(config.WWW, "index.html")]) index = open(os.path.join(config.WWW, "index.html"), "w") index.write("

ttbp blog placeholder

") index.close() if core.publishing(): live = os.path.join(config.PUBLIC, publish_dir) if os.path.exists(live): subprocess.call(["rm", live]) subprocess.call(["ln", "-s", config.WWW, live]) return "\n\tpublishing to "+config.LIVE+config.USER+"/"+SETTINGS.get("publish dir")+"/\n\n" else: return "" #print("\n\tpublishing to "+config.LIVE+config.USER+"/"+SETTINGS.get("publish dir")+"/\n\n") def update_gopher(): ''' helper for toggling gopher settings ''' # TODO for now i'm hardcoding where people's gopher stuff is generated. if # there is demand for this to be configurable we can expose that. if SETTINGS.get("gopher"): gopher.setup_gopher('feels') gopher.publish_gopher("feels", core.get_files()) else: subprocess.call(["rm", config.GOPHER_PATH]) redraw("gopher publishing set to {gopher}".format(gopher=SETTINGS.get("gopher"))) ##### PATCHING UTILITIES def user_up_to_date(): ''' checks to see if current user is up to the same version as system ''' versionFile = os.path.join(config.PATH, "version") if not os.path.exists(versionFile): return False ver = open(versionFile, "r").read() if ver == __version__: return True return False def update_user_version(): ''' updates user to current version, printing relevant release notes and stepping through new features. ''' global SETTINGS versionFile = os.path.join(config.PATH, "version") print("ttbp had some updates!") print("\ngive me a second to update you to version "+__version__+"...\n") time.sleep(1) print("...") time.sleep(0.5) userVersion = "" (x, y, z) = [0, 0, 0] if not os.path.isfile(versionFile): # updates from 0.8.5 to 0.8.6, before versionfile existed # change style.css location if core.publishing(): if os.path.isfile(os.path.join(config.WWW, "style.css")): subprocess.call(["mv", os.path.join(config.WWW, "style.css"), config.USER_CONFIG]) # change www symlink if os.path.exists(config.WWW): subprocess.call(["rm", config.WWW]) subprocess.call(["mkdir", config.WWW]) subprocess.call(["ln", "-s", os.path.join(config.USER_CONFIG, "style.css"), os.path.join(config.WWW, "style.css")]) publishDir = os.path.join(config.PUBLIC, SETTINGS.get("publish dir")) if os.path.exists(publishDir): subprocess.call(["rm", "-rf", publishDir]) subprocess.call(["ln", "-s", config.WWW, os.path.join(config.PUBLIC, SETTINGS.get("publish dir"))]) # repopulate html files core.load_files() #core.write_html("index.html") # add publishing setting print("\nnew feature!\n") SETTINGS.update({"publishing":select_publishing()}) update_publishing() ttbprc = open(config.TTBPRC, "w") ttbprc.write(json.dumps(SETTINGS, sort_keys=True, indent=2, separators=(',',':'))) ttbprc.close() else: # version at least 0.8.6 userVersion = open(versionFile, "r").read().rstrip() x, y, z = [int(num) for num in userVersion.split(".")] # from 0.8.6 if userVersion == "0.8.6": print("\nresetting your publishing settings...\n") SETTINGS.update({"publishing":select_publishing()}) update_publishing() ttbprc = open(config.TTBPRC, "w") ttbprc.write(json.dumps(SETTINGS, sort_keys=True, indent=2, separators=(',',':'))) ttbprc.close() # from earlier than 0.10.1 if y < 10: # select gopher print("[ NEW FEATURE ]") print(""" * thanks to help from ~vilmibm, ttbp now supports publishing to gopher! * if you enable gopher publishing, feels will automatically publish to gopher://tilde.town/1/~"""+config.USER+"""/feels """) SETTINGS.update({'gopher': gopher.select_gopher()}) if SETTINGS.get('gopher'): print("opting into gopher: " + str(SETTINGS['gopher'])) gopher.setup_gopher('feels') else: print("okay, passing on gopher for now. this option is available in settings if you change\nyour mind!") if y < 11: # set rainbow menu for 0.11.0 print("[ NEW FEATURE ]") SETTINGS.update({"rainbows": toggle_rainbows()}) if z < 2: # set default option for 0.11.2 # print("default nopub: false") SETTINGS.update({"post as nopub": False}) save_settings() if z < 3: # update permalink css style = open(os.path.join(config.USER_CONFIG, 'style.css'), 'r').read() if "permalink" not in style: print("adding new css...") with open(os.path.join(config.USER_CONFIG, 'style.css'), 'a') as f: f.write(""" .entry p.permalink { font-size: .6em; font-color: #808080; text-align: right; }""") print(""" you're all good to go, """+chatter.say("friend")+"""! please contact ~endorphant if something strange happened to you during this update. """) if y < 10: # version 0.10.1 patch notes print(config.UPDATES["0.10.1"]) if y < 11: # version 0.11.0 patch notes print(config.UPDATES["0.11.0"]) if y < 11 and z < 1: # version 0.11.1 patch notes print(config.UPDATES["0.11.1"]) if y < 11 and z < 2: # version 0.11.2 patch notes print(config.UPDATES["0.11.2"]) if y < 11 and z < 3: # version 0.11.3 patch notes print(config.UPDATES["0.11.3"]) if y < 12: # version 0.12.0 patch notes print(config.UPDATES["0.12.0"]) if z < 1: # version 0.12.1 patch notes print(config.UPDATES["0.12.1"]) if z < 2: # version 0.12.2 patch notes print(config.UPDATES["0.12.2"]) confirm = "" while confirm not in ("x", "", "X", ""): confirm = input("\nplease type when you've finished reading about the updates! ") print("\n\n") open(versionFile, "w").write(__version__) ##### if __name__ == '__main__': sys.exit(main())