From 9873382d4fa0ac9496fedae28393e4e827bebda1 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 2 Dec 2020 13:16:00 +0000 Subject: [PATCH] Update hashtag category list when changing tags --- utils.py | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/utils.py b/utils.py index 638d20a6..4d252991 100644 --- a/utils.py +++ b/utils.py @@ -31,6 +31,51 @@ def getHashtagCategory(baseDir: str, hashtag: str) -> str: return '' +def getHashtagCategories(baseDir: str, category=None) -> None: + """Returns a dictionary containing hashtag categories + """ + hashtagCategories = {} + + for subdir, dirs, files in os.walk(baseDir + '/tags'): + for f in files: + if not f.endswith('.category'): + continue + categoryFilename = os.path.join(baseDir + '/tags', f) + if not os.path.isfile(categoryFilename): + continue + hashtag = f.split('.')[0] + with open(categoryFilename, 'r') as fp: + categoryStr = fp.read() + + if category: + # only return a dictionary for a specific category + if categoryStr != category: + continue + + if not hashtagCategories.get(categoryStr): + hashtagCategories[categoryStr] = [hashtag] + else: + if hashtag not in hashtagCategories[categoryStr]: + hashtagCategories[categoryStr].append(hashtag) + return hashtagCategories + + +def updateHashtagCategories(baseDir: str) -> None: + """Regenerates the list of hashtag categories + """ + hashtagCategories = getHashtagCategories(baseDir) + + categoryListStr = '' + for categoryStr, hashtagList in hashtagCategories.items(): + categoryListStr += categoryStr + '\n' + + if not hashtagCategories: + return + # save a list of available categories for quick lookup + with open(baseDir + '/accounts/categoryList.txt', 'w+') as fp: + fp.write(categoryListStr) + + def setHashtagCategory(baseDir: str, hashtag: str, category: str) -> bool: """Sets the category for the hashtag """ @@ -40,6 +85,7 @@ def setHashtagCategory(baseDir: str, hashtag: str, category: str) -> bool: categoryFilename = baseDir + '/tags/' + hashtag + '.category' with open(categoryFilename, 'w+') as fp: fp.write(category) + updateHashtagCategories(baseDir) return True return False