hfaran / slack-export-viewer

A Slack Export archive viewer that allows you to easily view and share your Slack team's export
https://pypi.python.org/pypi/slack-export-viewer
MIT License
966 stars 193 forks source link

support mattermost export format #199

Closed limwz01 closed 2 months ago

limwz01 commented 2 months ago

To support the attachments in the mattermost output type, it was necessary to rewrite the image links to reference the following path in the ZIP file:

https://files.slack.com/files-pri/T0ABC1DEF-F0123A4B56C/image.jpg -> __uploads/F0123A4B56C/image.jpg

Moreover, the downloaded file might have uppercase letters in the name but in the link it was converted to lowercase. Hence, there was need to list the directory containing the file and see if there was a file, e.g. __uploads/F0123A4B56C/Image.JPG, whose name after conversion to lowercase matched the link.