mirror of
https://github.com/leoncvlt/loconotion.git
synced 2024-08-30 18:12:12 +00:00
Fixed bugs in page configuration fetch and downloads url hashing
This commit is contained in:
parent
93cd2c6445
commit
f293dd63a3
150
README.md
150
README.md
@ -1,22 +1,142 @@
|
||||
# loconotion
|
||||
# Loconotion
|
||||
**Loconotion** is a Python script that parses a [Notion.so](https://notion.so) public page (alongside with all of its subpages) and generates a static site out of it.
|
||||
|
||||
Notion.so is a popular application where you can create your own workspace. It's very easy to use. Notion also offer the possibility of making a page (and its sub-page) public on the web and because of this several people choose to use Notion to manage their personal blog, portfolio, or some kind of simple website. Notion however does not support custom domains when doing so: your pages are stuck in the `notion.so` domain, and computer-generated urls and slugs.
|
||||
## But Why?
|
||||
[Notion](https://notion.so) is a web app where you can create your own workspace / perosnal wiki out of content blocks. It feels good to use, and the results look very pretty - the developers did a great job. Given that it also offers the possibility of making a page (and its sub-page) public on the web, several people choose to use Notion to manage their personal blog, portfolio, or some kind of simple website. Sadly Notion does not support custom domains: your public pages are stuck in the `notion.so` domain, under long computer generated URLs.
|
||||
|
||||
Some services like Super, HostingPotion, HostNotion and Fruition cleverly tried to work around this issue by relying on a clever hack using CloudFlare workers. This solution, however, has some disadvantages:
|
||||
Some services like Super, HostingPotion, HostNotion and Fruition try to work around this issue by relying on a [clever hack](https://gist.github.com/mayneyao/b9fefc9625b76f70488e5d8c2a99315d) using CloudFlare workers. This solution, however, has some disadvantages:
|
||||
- **Not free** - Super, HostingPotion and HostNotion all take a monthly fee since they manage all the "hacky bits" for you; Fruition is open-source but any domain with a decent amount of daily visit will soon clash against CloudFlare's free tier limitations, and force you to upgrade to the 5$ or more plan (plus you need to setup Cloudflare yourself)
|
||||
- **Slow-ish** - As the page is still hosted on Notion, it comes bundled with all their analytics, editing / collaboration javascript, vendors css, and more bloat which causes the page to load at speeds that are not exactly appropriate for a simple blog / website. Running [this](https://www.notion.so/The-perfect-It-s-Always-Sunny-in-Philadelphia-episode-d08aaec2b24946408e8be0e9f2ae857e) example page on Google's [PageSpeed Insights](https://developers.google.com/speed/pagespeed/insights/) scores a measly **24 - 66** on mobile / desktop.
|
||||
- **Ugly URLs** - While the services above enable the use of custom domains, the URLs for individual pages are stuck with the long, ugly, original Notion URL (apart from Fruition - they got custom URLs figured out, altough you will always see the original URL flashing for an instant when the page is loaded).
|
||||
|
||||
- Not free (Super, HostingPotion and HostNotion all take a monthly fee: Fruition is open-sourced but any domain with a decent amount of daily visit will soon clash against CloudFlare's free tier limitations, and force you to upgrade to the 5$ or more plan.)
|
||||
- As the page is still hosted on Notion, it comes bundled with all their analytics, editing / collaboration javascript, vendors css, and more bloat which causes the page to load at speeds that are not exactly appropriate to a simple blog / website. Running [this](https://www.notion.so/The-perfect-It-s-Always-Sunny-in-Philadelphia-episode-d08aaec2b24946408e8be0e9f2ae857e) example page on Google's [PageSpeed Insights](https://developers.google.com/speed/pagespeed/insights/) scores a measly 24 / 66 on mobile / desktop.
|
||||
Loconotion approaches this a bit differently. It lets Notion render the page, then scrapes it and saves a static version of the page to disk. This offers the following benefits:
|
||||
- Strips out all the unnecessary bloat, like Notion's analytics, vendors scripts / styles, and javascript left in to enable collaboration.
|
||||
- Caches all images / assets / fonts (hashing filenames), while keeping links intact.
|
||||
- Cleans up the pages urls, letting you use custom slugs if desired
|
||||
- Full meta tags controls, for the whole site or individual pages
|
||||
- Granular custom Goggle Fonts control on headings, navbar, body and code blocks
|
||||
- Lets you inject any custom style or script, from custom analytics or real-time chat support to hidden crypto miners (please don't do that)
|
||||
- Outputs static files ready to be deployed on Netlify, GitHub Pages, Vercel, your Raspberry PI, that cheap second-hand Thinkpad you're using as a random server - you name it.
|
||||
|
||||
Enter Loconotion!
|
||||
The result? A faster, self-contained version of the page that keeps all of Notion's nice layouts and eye candies. For comparison, the same example page parsed with Loconotion and deployed on Netflify's free tier achieves a PageSpeed Insight score of **96 - 100**!
|
||||
|
||||
Loconotion is a tool that approach this a bit differently. It lets Notion render the page, then parses it and saves a static version of the page to disk. While doing so, it strips out all the unnecessary bloat, and adds some extra css and js to keep the nice features like mobile responsiveness working. It also saves all related images / assets, and parses any subpage as well while keeping links intact, and cleaning up the urls. The result? A faster, self-contained version of the page that keeps all of Notion's nice layouts and eye candies, ready to be deployed on your CDN of choice. For a comparison, the same example page parsed with Loconotion and deployed on Netflify's free tier achieves a PageSpeed Insight score of 96 / 100!
|
||||
|
||||
This approach also offers the advantage of being able to inject anything in th pages, from custom fonts to additional meta tags for SEO, or custom analytics.
|
||||
|
||||
However, bear in mind that as we are effectively parsing a static version of the page, the following features will not work:
|
||||
- All pages will open in their own page and not modals (this could be a pro, depending on how you look at it)
|
||||
- Databases will be presented in their initial view - no switching views from table to gallery, for example.
|
||||
- All editing features will be disabled - no ticking checkboxes or dragging kanban boards cards around. Usually not an issue as public pages usually have changes locked.
|
||||
Bear in mind that as we are effectively parsing a static version of the page, there are some limitations compared to Notion's live public pages:
|
||||
- All pages will open in their own page and not modals (depending on how you look at it this could be a plus)
|
||||
- Databases will be presented in their initial view - for example, no switching views from table to gallery and such
|
||||
- All editing features will be disabled - no ticking checkboxes or dragging kanban boards cards around. Usually not an issue since a public page to serve as a website would have changes locked.
|
||||
- Dynamic elements won't update automatically - for example, the calendar will not highlight the current date.
|
||||
|
||||
Everything else, like embedding and dropdowns should work as expected.
|
||||
Everything else should be fine. Loconotion rebuilds the logic for toggle boxes and embeds so they still work; plus it defines some additional CSS rules to enable mobile responsiveness across the whole site (in some cases looking even better than Notion's defaults - wasn't exactly thought for mobile).
|
||||
|
||||
## Installation & Requirements
|
||||
`pip install -r requirements.txt`
|
||||
|
||||
This script uses [ChromeDriver](chromedriver.chromium.org) to automate the Google Chrome browser - therefore Google Chrome needs to be installed in order to work.
|
||||
|
||||
## Simple Usage
|
||||
`python loconotion.py https://www.notion.so/The-perfect-It-s-Always-Sunny-in-Philadelphia-episode-d08aaec2b24946408e8be0e9f2ae857e`
|
||||
|
||||
In its simplest form, the script takes the URL of a public Notion.so page, and generates the site inside the `dist` folder, based on the page's title (the above example will generate the site inside `dist\The-perfect-It-s-Always-Sunny-in-Philadelphia\`).
|
||||
|
||||
## Advanced Usage
|
||||
You can fully configure Loconotion to your needs by passing a [.toml](https://github.com/toml-lang/toml) configuration file to the script instead:
|
||||
`python loconotion.py example\example_site.toml`
|
||||
|
||||
Here's what a full configuration would look like, alongside with explanations for each parameter.
|
||||
```toml
|
||||
name = "Notion Test Site"
|
||||
# the notion.so page to being parsing from. This page will become the index.html
|
||||
# of the generated site, and loconotation will parse all sub-pages present on the page.
|
||||
page = "https://www.notion.so/A-Notion-Page-03c403f4fdc94cc1b315b9469a8950ef"
|
||||
|
||||
# this site table defines override settings for the whole site
|
||||
# later on we will see how to define settings for a single page
|
||||
[site]
|
||||
## custom meta tags ##
|
||||
[[site.meta]]
|
||||
name = "title"
|
||||
content = "Loconotion Test Site"
|
||||
[[site.meta]]
|
||||
name = "description"
|
||||
content = "A static site generated from a Notion.so page using Loconotion"
|
||||
|
||||
## custom site fonts ##
|
||||
# you can specify the name of a google font to use on the site, use the font embed name
|
||||
# (if in doubt select a style on fonts.google.com and navigate to the "embed" tag to check the name under CSS rules)
|
||||
# keys controls the font of the following elements:
|
||||
# site: changes the font for the whole page (apart from code blocks) but the following settings override it
|
||||
# navbar: site breadcrumbs on the top-left of the page
|
||||
# title: page title (under the icon)
|
||||
# h1: heading blocks, and inline databases' titles
|
||||
# h2: sub-heading blocks
|
||||
# h3: sub-sub-heading blocks
|
||||
# body: non-heading text on the page
|
||||
# code: text inside code blocks
|
||||
[site.fonts]
|
||||
site = 'Roboto'
|
||||
navbar = ''
|
||||
title = 'Montserrat'
|
||||
h1 = 'Montserrat'
|
||||
h2 = 'Montserrat'
|
||||
h3 = ''
|
||||
body = ''
|
||||
code = ''
|
||||
|
||||
## custom element injection ##
|
||||
# 'head' or 'body' to set where the element will be injected
|
||||
# the next dotted key represents the tag to inject, with the table values being the the tag attributes
|
||||
# e.g. the following injects <link href="favicon-16x16.png" rel="icon" sizes="16x16" type="image/png"/> in the <head>
|
||||
[[site.inject.head.link]]
|
||||
rel="icon"
|
||||
sizes="16x16"
|
||||
type="image/png"
|
||||
href="/example/favicon-16x16.png"
|
||||
|
||||
# the following injects <script src="custom-script.js" type="text/javascript"></script> in the <body>
|
||||
[[site.inject.body.script]]
|
||||
type="text/javascript"
|
||||
src="/example/custom-script.js"
|
||||
|
||||
## individual page settings ##
|
||||
# while the [site] table applies the settings to all parse pages,
|
||||
# it's possible to override a single page's setting by defining
|
||||
# a table named after the page url or part of it.
|
||||
#
|
||||
# e.g the following settings will only apply to this parsed page:
|
||||
# https://www.notion.so/d2fa06f244e64f66880bb0491f58223d
|
||||
[d2fa06f244e64f66880bb0491f58223d]
|
||||
## custom slugs ##
|
||||
# inside page settings, you can change the url that page will map to with the 'slug' key
|
||||
# e.g. page "/d2fa06f244e64f66880bb0491f58223d" will now map to "/list"
|
||||
slug = "list"
|
||||
|
||||
[[d2fa06f244e64f66880bb0491f58223d.meta]]
|
||||
# change the description meta tag for this page only
|
||||
name = "description"
|
||||
content = "A fullscreen list database page, now with a pretty slug"
|
||||
|
||||
[d2fa06f244e64f66880bb0491f58223d.fonts]
|
||||
# change the title font for this page only
|
||||
title = 'Nunito'
|
||||
```
|
||||
|
||||
On top of this, the script can take a few extra arguments:
|
||||
```
|
||||
--clean Delete all previously cached files for the site before generating it
|
||||
-v, --verbose Shows way more exciting facts in the output
|
||||
```
|
||||
|
||||
## Roadmap / Features wishlist
|
||||
- [ ] Dark / custom themes
|
||||
- [ ] Automated Netlify / GitHub pages / Vercel deployements
|
||||
- [ ] Injectable custom HTML
|
||||
- [ ] Html / css / js minification & images optimization
|
||||
- [ ] GUI / sites manager, potentially as a paid add-on to rack up some $ - daddy needs money to get more second-hand thinkpads to use as random servers
|
||||
|
||||
## Who uses this?
|
||||
If you used Loconotion to build a cool site, shoot me a mail! I'd love to feature it in some sort of showcase.
|
||||
|
||||
## Support
|
||||
If you found this useful, and / or it saved you some money, consider using part of that saved money to buy me a coffee and mantain the balance in the universe.
|
||||
|
||||
<a href="https://www.buymeacoffee.com/leoncvlt" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-blue.png" alt="Buy Me A Coffee" style="height: 51px !important;width: 217px !important;" ></a>
|
@ -10,6 +10,7 @@ import glob
|
||||
import mimetypes
|
||||
from rich.logging import RichHandler
|
||||
from rich.progress import Progress
|
||||
import enlighten
|
||||
import urllib.parse
|
||||
import hashlib
|
||||
import toml
|
||||
@ -115,15 +116,21 @@ class Parser():
|
||||
del site_config['slug']
|
||||
|
||||
# find a table in the configuration file whose key contains the passed token string
|
||||
matching_page_config = [value for key, value in self.config.items() if key.lower() in token]
|
||||
if (matching_page_config):
|
||||
if (len(matching_page_config) > 1):
|
||||
site_pages_config = self.config.get("pages", {})
|
||||
matching_pages_config = [value for key, value in site_pages_config.items() if key.lower() in token]
|
||||
if (matching_pages_config):
|
||||
if (len(matching_pages_config) > 1):
|
||||
log.error(f"multiple matching page config tokens found for {token} in configuration file. Make sure pages urls / slugs are unique")
|
||||
return site_config
|
||||
else:
|
||||
# if found, merge it on top of the global site configuration table
|
||||
# log.debug(f"Config table found for page with token {token}")
|
||||
return {**site_config, **matching_page_config[0]}
|
||||
matching_page_config = matching_pages_config[0]
|
||||
if (type(matching_page_config) is dict):
|
||||
return {**site_config, **matching_page_config}
|
||||
else:
|
||||
log.error(f"Matching page configuration for {url} was not a dict: {matching_page_config} - something went wrong")
|
||||
return site_config
|
||||
else:
|
||||
# log.debug(f"No config table found for page token {token}, using global site config table")
|
||||
return site_config
|
||||
@ -148,13 +155,16 @@ class Parser():
|
||||
return path + (".html" if extension else "")
|
||||
|
||||
def cache_file(self, url, filename = None):
|
||||
show_progress_bars = False
|
||||
# stringify the url in case it's a Path object
|
||||
url = str(url)
|
||||
|
||||
# if no filename specificed, generate an hashed id based the url,
|
||||
# if no filename specificed, generate an hashed id based the query-less url,
|
||||
# so we avoid re-downloading / caching files we already have
|
||||
if (not filename):
|
||||
filename = hashlib.sha1(str.encode(url)).hexdigest();
|
||||
parsed_url = urllib.parse.urlparse(url)
|
||||
queryless_url = parsed_url.netloc + parsed_url.path
|
||||
filename = hashlib.sha1(str.encode(queryless_url)).hexdigest();
|
||||
destination = self.dist_folder / filename
|
||||
|
||||
# check if there are any files matching the filename, ignoring extension
|
||||
@ -168,7 +178,7 @@ class Parser():
|
||||
session = requests.Session()
|
||||
session.trust_env = False
|
||||
log.info(f"Downloading '{url}'")
|
||||
response = session.get(url)
|
||||
response = session.get(url, stream=True)
|
||||
|
||||
# if the filename does not have an extension at this point,
|
||||
# try to infer it from the url, and if not possible,
|
||||
@ -176,13 +186,23 @@ class Parser():
|
||||
if (not destination.suffix):
|
||||
file_extension = Path(urllib.parse.urlparse(url).path).suffix
|
||||
if (not file_extension):
|
||||
content_type = response.headers['content-type']
|
||||
content_type = response.headers.get('content-type')
|
||||
file_extension = mimetypes.guess_extension(content_type)
|
||||
destination = destination.with_suffix(file_extension)
|
||||
|
||||
Path(destination).parent.mkdir(parents=True, exist_ok=True)
|
||||
with open(destination, "wb") as f:
|
||||
f.write(response.content)
|
||||
total = response.headers.get('content-length')
|
||||
if total is None or not show_progress_bars:
|
||||
f.write(response.content)
|
||||
else:
|
||||
progress_manager = enlighten.get_manager()
|
||||
download_progress = progress_manager.counter(total=int(total)//1024, desc='Downloading', unit='mb')
|
||||
for data in response.iter_content(chunk_size=1024):
|
||||
f.write(data)
|
||||
download_progress.update()
|
||||
progress_manager.stop()
|
||||
|
||||
return destination.relative_to(self.dist_folder)
|
||||
# if not, check if it's a local file, and copy it to the dist folder
|
||||
else:
|
||||
@ -255,7 +275,9 @@ class Parser():
|
||||
try:
|
||||
WebDriverWait(self.driver, 10).until(toggle_block_has_opened(toggle_block))
|
||||
except TimeoutException as ex:
|
||||
log.warning("Timeout waiting for toggle block to open")
|
||||
log.warning("Timeout waiting for toggle block to open. Likely it's already open, but doesn't hurt to check.")
|
||||
except Exception as ex:
|
||||
log.error("Something went wrong with selenium while trying to open a toggle block")
|
||||
opened_toggles.append(toggle_block)
|
||||
# after all toggles have been opened, check the page again to see if
|
||||
# any toggle block had nested toggle blocks inside them
|
||||
@ -310,7 +332,7 @@ class Parser():
|
||||
if (img['src'].startswith('/')):
|
||||
# notion's images urls are in a weird format, need to sanitize them
|
||||
img_src = 'https://www.notion.so' + img['src'].split("notion.so")[-1].replace("notion.so", "").split("?")[0]
|
||||
img_src = urllib.parse.unquote(img_src)
|
||||
# img_src = urllib.parse.unquote(img_src)
|
||||
|
||||
cached_image = self.cache_file(img_src)
|
||||
img['src'] = cached_image
|
||||
@ -481,7 +503,7 @@ if __name__ == '__main__':
|
||||
else:
|
||||
log.critical(f"{args.target} is not a notion.so page")
|
||||
except requests.ConnectionError as exception:
|
||||
log.critical(f"{args.target} does not seem to be an existing web page")
|
||||
log.critical(f"Connection error")
|
||||
else:
|
||||
if Path(args.target).is_file():
|
||||
with open(args.target) as f:
|
||||
|
@ -16,7 +16,8 @@ page = "https://www.notion.so/A-Notion-Page-03c403f4fdc94cc1b315b9469a8950ef"
|
||||
|
||||
## custom site fonts ##
|
||||
# you can specify the name of a google font to use on the site, use the font embed name
|
||||
# (if in doubt select a style on fonts.google.com and navigate to the "embed" tag to check the name under CSS rules)
|
||||
# (if in doubt select a style on fonts.google.com and navigate to the "embed" tag to check the name under
|
||||
# CSS rules)
|
||||
# keys controls the font of the following elements:
|
||||
# site: changes the font for the whole page (apart from code blocks) but the following settings override it
|
||||
# navbar: site breadcrumbs on the top-left of the page
|
||||
@ -58,17 +59,18 @@ page = "https://www.notion.so/A-Notion-Page-03c403f4fdc94cc1b315b9469a8950ef"
|
||||
#
|
||||
# e.g the following settings will only apply to this parsed page:
|
||||
# https://www.notion.so/d2fa06f244e64f66880bb0491f58223d
|
||||
[d2fa06f244e64f66880bb0491f58223d]
|
||||
## custom slugs ##
|
||||
# inside page settings, you can change the url that page will map to with the 'slug' key
|
||||
# e.g. page "/d2fa06f244e64f66880bb0491f58223d" will now map to "/list"
|
||||
slug = "list"
|
||||
[pages]
|
||||
[pages.d2fa06f244e64f66880bb0491f58223d]
|
||||
## custom slugs ##
|
||||
# inside page settings, you can change the url that page will map to with the 'slug' key
|
||||
# e.g. page "/d2fa06f244e64f66880bb0491f58223d" will now map to "/list"
|
||||
slug = "list"
|
||||
|
||||
[[d2fa06f244e64f66880bb0491f58223d.meta]]
|
||||
# change the description meta tag for this page only
|
||||
name = "description"
|
||||
content = "A fullscreen list database page, now with a pretty slug"
|
||||
[[pages.d2fa06f244e64f66880bb0491f58223d.meta]]
|
||||
# change the description meta tag for this page only
|
||||
name = "description"
|
||||
content = "A fullscreen list database page, now with a pretty slug"
|
||||
|
||||
[d2fa06f244e64f66880bb0491f58223d.fonts]
|
||||
# change the title font for this page only
|
||||
title = 'Nunito'
|
||||
[pages.d2fa06f244e64f66880bb0491f58223d.fonts]
|
||||
# change the title font for this page only
|
||||
title = 'Nunito'
|
Loading…
Reference in New Issue
Block a user