Compare commits
55 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
e50912df12 | ||
![]() |
393d688247 | ||
![]() |
6e38587174 | ||
![]() |
123c6fe02a | ||
![]() |
1b7731e506 | ||
![]() |
df9f0095cc | ||
![]() |
25470edb2c | ||
![]() |
22a1fc80ad | ||
![]() |
65f0eb2a04 | ||
![]() |
82f86bf537 | ||
![]() |
639629ddfe | ||
![]() |
2b342c0d56 | ||
![]() |
3ffec72d3e | ||
![]() |
edd958fff6 | ||
![]() |
2d22d6871e | ||
![]() |
5e8f5b2c58 | ||
![]() |
d5a83722de | ||
![]() |
5d8fdebb7c | ||
![]() |
f7bd6ccb31 | ||
![]() |
e4ee0171be | ||
![]() |
53d1f0c91b | ||
![]() |
a6f35119cd | ||
![]() |
68c163d943 | ||
![]() |
bb6c5ca29e | ||
![]() |
c919e79759 | ||
![]() |
8ff9b42a79 | ||
![]() |
4280ab40c6 | ||
![]() |
db1906942a | ||
![]() |
69877a32e5 | ||
![]() |
e5a9a772f0 | ||
![]() |
2f56d418cf | ||
![]() |
a4df586a8a | ||
![]() |
d9b7996e06 | ||
![]() |
92f62d3ded | ||
![]() |
9c48085829 | ||
![]() |
77e1525402 | ||
![]() |
9df80e01de | ||
![]() |
ec34cc523f | ||
![]() |
eb0b092d17 | ||
![]() |
39e8f03345 | ||
![]() |
d43b97e0c0 | ||
![]() |
d6484ba8e9 | ||
![]() |
4c26d66177 | ||
![]() |
c51dcafa40 | ||
![]() |
262dd2b28f | ||
![]() |
01ad7f4d9e | ||
![]() |
d0d5c15345 | ||
![]() |
afb752765d | ||
![]() |
ce213775b6 | ||
![]() |
fd1bbadcf3 | ||
![]() |
83c2530df4 | ||
![]() |
39782e75e7 | ||
![]() |
4bee104b62 | ||
![]() |
f4ecffbb7f | ||
![]() |
6f52bafda8 |
@@ -5,7 +5,6 @@
|
|||||||
!/bookmarks
|
!/bookmarks
|
||||||
!/siteroot
|
!/siteroot
|
||||||
|
|
||||||
!/background-tasks-wrapper.sh
|
|
||||||
!/bootstrap.sh
|
!/bootstrap.sh
|
||||||
!/LICENSE.txt
|
!/LICENSE.txt
|
||||||
!/manage.py
|
!/manage.py
|
||||||
@@ -13,7 +12,7 @@
|
|||||||
!/package-lock.json
|
!/package-lock.json
|
||||||
!/requirements.dev.txt
|
!/requirements.dev.txt
|
||||||
!/requirements.txt
|
!/requirements.txt
|
||||||
!/rollup.config.js
|
!/rollup.config.mjs
|
||||||
!/supervisord.conf
|
!/supervisord.conf
|
||||||
!/uwsgi.ini
|
!/uwsgi.ini
|
||||||
!/version.txt
|
!/version.txt
|
||||||
|
33
.github/workflows/main.yaml
vendored
@@ -1,46 +1,55 @@
|
|||||||
name: linkding CI
|
name: linkding CI
|
||||||
|
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
unit_tests:
|
unit_tests:
|
||||||
name: Unit Tests
|
name: Unit Tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: "3.10"
|
python-version: "3.10"
|
||||||
- name: Set up Node
|
- name: Set up Node
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 18
|
node-version: 20
|
||||||
|
cache: 'npm'
|
||||||
- name: Install Node dependencies
|
- name: Install Node dependencies
|
||||||
run: npm install
|
run: npm ci
|
||||||
- name: Setup Python environment
|
- name: Setup Python environment
|
||||||
run: pip install -r requirements.txt -r requirements.dev.txt
|
run: |
|
||||||
|
pip install -r requirements.txt -r requirements.dev.txt
|
||||||
|
mkdir data
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: python manage.py test bookmarks.tests
|
run: python manage.py test bookmarks.tests
|
||||||
e2e_tests:
|
e2e_tests:
|
||||||
name: E2E Tests
|
name: E2E Tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: "3.10"
|
python-version: "3.10"
|
||||||
- name: Set up Node
|
- name: Set up Node
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 18
|
node-version: 20
|
||||||
|
cache: 'npm'
|
||||||
- name: Install Node dependencies
|
- name: Install Node dependencies
|
||||||
run: npm install
|
run: npm ci
|
||||||
- name: Setup Python environment
|
- name: Setup Python environment
|
||||||
run: |
|
run: |
|
||||||
pip install -r requirements.txt -r requirements.dev.txt
|
pip install -r requirements.txt -r requirements.dev.txt
|
||||||
playwright install chromium
|
playwright install chromium
|
||||||
|
mkdir data
|
||||||
- name: Run build
|
- name: Run build
|
||||||
run: |
|
run: |
|
||||||
npm run build
|
npm run build
|
||||||
|
3
.gitignore
vendored
@@ -191,3 +191,6 @@ typings/
|
|||||||
/tmp
|
/tmp
|
||||||
# Database file
|
# Database file
|
||||||
/data
|
/data
|
||||||
|
# ublock + chromium
|
||||||
|
/uBlock0.chromium
|
||||||
|
/chromium-profile
|
||||||
|
88
CHANGELOG.md
@@ -1,5 +1,93 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v1.28.0 (09/04/2024)
|
||||||
|
|
||||||
|
### What's Changed
|
||||||
|
* Add option to disable SSL verification for OIDC by @akaSyntaax in https://github.com/sissbruecker/linkding/pull/684
|
||||||
|
* Add full backup method by @sissbruecker in https://github.com/sissbruecker/linkding/pull/686
|
||||||
|
* Truncate snapshot filename for long URLs by @sissbruecker in https://github.com/sissbruecker/linkding/pull/687
|
||||||
|
* Add option for customizing single-file timeout by @pettijohn in https://github.com/sissbruecker/linkding/pull/688
|
||||||
|
* Add option for passing arguments to single-file command by @pettijohn in https://github.com/sissbruecker/linkding/pull/691
|
||||||
|
* Fix typo by @tianheg in https://github.com/sissbruecker/linkding/pull/689
|
||||||
|
|
||||||
|
### New Contributors
|
||||||
|
* @akaSyntaax made their first contribution in https://github.com/sissbruecker/linkding/pull/684
|
||||||
|
* @pettijohn made their first contribution in https://github.com/sissbruecker/linkding/pull/688
|
||||||
|
|
||||||
|
**Full Changelog**: https://github.com/sissbruecker/linkding/compare/v1.27.1...v1.28.0
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## v1.27.1 (07/04/2024)
|
||||||
|
|
||||||
|
### What's Changed
|
||||||
|
* Fix HTML snapshot errors related to single-file-cli by @sissbruecker in https://github.com/sissbruecker/linkding/pull/683
|
||||||
|
* Replace django-background-tasks with huey by @sissbruecker in https://github.com/sissbruecker/linkding/pull/657
|
||||||
|
* Add Authelia OIDC example to docs by @hugo-vrijswijk in https://github.com/sissbruecker/linkding/pull/675
|
||||||
|
|
||||||
|
|
||||||
|
**Full Changelog**: https://github.com/sissbruecker/linkding/compare/v1.27.0...v1.27.1
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## v1.27.0 (01/04/2024)
|
||||||
|
|
||||||
|
### What's Changed
|
||||||
|
* Archive snapshots of websites locally by @sissbruecker in https://github.com/sissbruecker/linkding/pull/672
|
||||||
|
* Add Railway hosting option by @tianheg in https://github.com/sissbruecker/linkding/pull/661
|
||||||
|
* Add how to for increasing the font size by @sissbruecker in https://github.com/sissbruecker/linkding/pull/667
|
||||||
|
|
||||||
|
### New Contributors
|
||||||
|
* @tianheg made their first contribution in https://github.com/sissbruecker/linkding/pull/661
|
||||||
|
|
||||||
|
**Full Changelog**: https://github.com/sissbruecker/linkding/compare/v1.26.0...v1.27.0
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## v1.26.0 (30/03/2024)
|
||||||
|
|
||||||
|
### What's Changed
|
||||||
|
* Add option for showing bookmark description as separate block by @sissbruecker in https://github.com/sissbruecker/linkding/pull/663
|
||||||
|
* Add bookmark details view by @sissbruecker in https://github.com/sissbruecker/linkding/pull/665
|
||||||
|
* Make bookmark list actions configurable by @sissbruecker in https://github.com/sissbruecker/linkding/pull/666
|
||||||
|
* Bump black from 24.1.1 to 24.3.0 by @dependabot in https://github.com/sissbruecker/linkding/pull/662
|
||||||
|
|
||||||
|
|
||||||
|
**Full Changelog**: https://github.com/sissbruecker/linkding/compare/v1.25.0...v1.26.0
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## v1.25.0 (18/03/2024)
|
||||||
|
|
||||||
|
### What's Changed
|
||||||
|
* Improve PWA capabilities by @hugo-vrijswijk in https://github.com/sissbruecker/linkding/pull/630
|
||||||
|
* build improvements by @hugo-vrijswijk in https://github.com/sissbruecker/linkding/pull/649
|
||||||
|
* Add support for oidc by @Nighmared in https://github.com/sissbruecker/linkding/pull/389
|
||||||
|
* Add option for custom CSS by @sissbruecker in https://github.com/sissbruecker/linkding/pull/652
|
||||||
|
* Update backup location to safe directory by @bphenriques in https://github.com/sissbruecker/linkding/pull/653
|
||||||
|
* Include web archive link in /api/bookmarks/ by @sissbruecker in https://github.com/sissbruecker/linkding/pull/655
|
||||||
|
* Add RSS feeds for shared bookmarks by @sissbruecker in https://github.com/sissbruecker/linkding/pull/656
|
||||||
|
* Bump django from 5.0.2 to 5.0.3 by @dependabot in https://github.com/sissbruecker/linkding/pull/658
|
||||||
|
|
||||||
|
### New Contributors
|
||||||
|
* @hugo-vrijswijk made their first contribution in https://github.com/sissbruecker/linkding/pull/630
|
||||||
|
* @Nighmared made their first contribution in https://github.com/sissbruecker/linkding/pull/389
|
||||||
|
* @bphenriques made their first contribution in https://github.com/sissbruecker/linkding/pull/653
|
||||||
|
|
||||||
|
**Full Changelog**: https://github.com/sissbruecker/linkding/compare/v1.24.2...v1.25.0
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## v1.24.2 (16/03/2024)
|
||||||
|
|
||||||
|
### What's Changed
|
||||||
|
* Fix logout button by @sissbruecker in https://github.com/sissbruecker/linkding/pull/648
|
||||||
|
|
||||||
|
|
||||||
|
**Full Changelog**: https://github.com/sissbruecker/linkding/compare/v1.24.1...v1.24.2
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## v1.24.1 (16/03/2024)
|
## v1.24.1 (16/03/2024)
|
||||||
|
|
||||||
### What's Changed
|
### What's Changed
|
||||||
|
71
README.md
@@ -33,21 +33,19 @@ The name comes from:
|
|||||||
**Feature Overview:**
|
**Feature Overview:**
|
||||||
- Clean UI optimized for readability
|
- Clean UI optimized for readability
|
||||||
- Organize bookmarks with tags
|
- Organize bookmarks with tags
|
||||||
- Add notes using Markdown
|
- Bulk editing, Markdown notes, read it later functionality
|
||||||
- Read it later functionality
|
- Share bookmarks with other users or guests
|
||||||
- Share bookmarks with other users
|
|
||||||
- Bulk editing
|
|
||||||
- Automatically provides titles, descriptions and icons of bookmarked websites
|
- Automatically provides titles, descriptions and icons of bookmarked websites
|
||||||
- Automatically creates snapshots of bookmarked websites on [the Internet Archive Wayback Machine](https://archive.org/web/)
|
- Automatically archive websites, either as local HTML file or on Internet Archive
|
||||||
- Import and export bookmarks in Netscape HTML format
|
- Import and export bookmarks in Netscape HTML format
|
||||||
|
- Installable as a Progressive Web App (PWA)
|
||||||
- Extensions for [Firefox](https://addons.mozilla.org/firefox/addon/linkding-extension/) and [Chrome](https://chrome.google.com/webstore/detail/linkding-extension/beakmhbijpdhipnjhnclmhgjlddhidpe), as well as a bookmarklet
|
- Extensions for [Firefox](https://addons.mozilla.org/firefox/addon/linkding-extension/) and [Chrome](https://chrome.google.com/webstore/detail/linkding-extension/beakmhbijpdhipnjhnclmhgjlddhidpe), as well as a bookmarklet
|
||||||
- Light and dark themes
|
- SSO support via OIDC or authentication proxies
|
||||||
- REST API for developing 3rd party apps
|
- REST API for developing 3rd party apps
|
||||||
- Admin panel for user self-service and raw data access
|
- Admin panel for user self-service and raw data access
|
||||||
- Easy setup using Docker and a SQLite database, with PostgreSQL as an option
|
|
||||||
|
|
||||||
|
|
||||||
**Demo:** https://demo.linkding.link/ ([see here](https://github.com/sissbruecker/linkding/issues/408) if you have trouble accessing it)
|
**Demo:** https://demo.linkding.link/
|
||||||
|
|
||||||
**Screenshot:**
|
**Screenshot:**
|
||||||
|
|
||||||
@@ -61,27 +59,45 @@ The Docker image is compatible with ARM platforms, so it can be run on a Raspber
|
|||||||
linkding uses an SQLite database by default.
|
linkding uses an SQLite database by default.
|
||||||
Alternatively linkding supports PostgreSQL, see the [database options](docs/Options.md#LD_DB_ENGINE) for more information.
|
Alternatively linkding supports PostgreSQL, see the [database options](docs/Options.md#LD_DB_ENGINE) for more information.
|
||||||
|
|
||||||
<details>
|
|
||||||
|
|
||||||
<summary>🧪 Alpine-based image</summary>
|
|
||||||
|
|
||||||
The default Docker image (`latest` tag) is based on a slim variant of Debian Linux.
|
|
||||||
Alternatively, there is an image based on Alpine Linux (`latest-alpine` tag) which has a smaller size, resulting in a smaller download and less disk space required.
|
|
||||||
The Alpine image is currently about 45 MB in compressed size, compared to about 130 MB for the Debian image.
|
|
||||||
|
|
||||||
To use it, replace the `latest` tag with `latest-alpine`, either in the CLI command below when using Docker, or in the `docker-compose.yml` file when using docker-compose.
|
|
||||||
|
|
||||||
> [!WARNING]
|
|
||||||
> The image is currently considered experimental in order to gather feedback and iron out any issues.
|
|
||||||
> Only use it if you are comfortable running experimental software or want to help out with testing.
|
|
||||||
> While there should be no issues with creating new installations, there might be issues when migrating existing installations.
|
|
||||||
> If you plan to migrate your existing installation, make sure to create proper [backups](https://github.com/sissbruecker/linkding/blob/master/docs/backup.md) first.
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
### Using Docker
|
### Using Docker
|
||||||
|
|
||||||
To install linkding using Docker you can just run the [latest image](https://hub.docker.com/repository/docker/sissbruecker/linkding) from Docker Hub:
|
The Docker image comes in several variants. To use a different image than the default, replace `latest` with the desired tag in the commands below, or in the docker-compose file.
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Tag</th>
|
||||||
|
<th>Description</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td><code>latest</code></td>
|
||||||
|
<td>Provides the basic functionality of linkding</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><code>latest-plus</code></td>
|
||||||
|
<td>
|
||||||
|
Includes feature for archiving websites as HTML snapshots
|
||||||
|
<ul>
|
||||||
|
<li>Significantly larger image size as it includes a Chromium installation</li>
|
||||||
|
<li>Requires more runtime memory to run Chromium</li>
|
||||||
|
<li>Requires more disk space for storing HTML snapshots</li>
|
||||||
|
</ul>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><code>latest-alpine</code></td>
|
||||||
|
<td><code>latest</code>, but based on Alpine Linux. 🧪 Experimental</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><code>latest-plus-alpine</code></td>
|
||||||
|
<td><code>latest-plus</code>, but based on Alpine Linux. 🧪 Experimental</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
To install linkding using Docker you can just run the image from [Docker Hub](https://hub.docker.com/repository/docker/sissbruecker/linkding):
|
||||||
```shell
|
```shell
|
||||||
docker run --name linkding -p 9090:9090 -v {host-data-folder}:/etc/linkding/data -d sissbruecker/linkding:latest
|
docker run --name linkding -p 9090:9090 -v {host-data-folder}:/etc/linkding/data -d sissbruecker/linkding:latest
|
||||||
```
|
```
|
||||||
@@ -183,6 +199,7 @@ Self-hosting web applications still requires a lot of technical know-how and com
|
|||||||
- [linkding on fly.io](https://github.com/fspoettel/linkding-on-fly) - Guide for hosting a linkding installation on [fly.io](https://fly.io). By [fspoettel](https://github.com/fspoettel)
|
- [linkding on fly.io](https://github.com/fspoettel/linkding-on-fly) - Guide for hosting a linkding installation on [fly.io](https://fly.io). By [fspoettel](https://github.com/fspoettel)
|
||||||
- [PikaPods.com](https://www.pikapods.com/) - Managed hosting for linkding, EU and US regions available. [1-click setup link](https://www.pikapods.com/pods?run=linkding) ([Disclosure](#pikapods))
|
- [PikaPods.com](https://www.pikapods.com/) - Managed hosting for linkding, EU and US regions available. [1-click setup link](https://www.pikapods.com/pods?run=linkding) ([Disclosure](#pikapods))
|
||||||
- [CapRover](https://caprover.com/) - Linkding is included as a default one-click app
|
- [CapRover](https://caprover.com/) - Linkding is included as a default one-click app
|
||||||
|
- [linkding on railway.app](https://github.com/tianheg/linkding-on-railway) - Guide for hosting a linkding installation on [railway.app](https://railway.app/). By [tianheg](https://github.com/tianheg)
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
|
@@ -1,5 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
# Wrapper script used by supervisord to first clear task locks before starting the background task processor
|
|
||||||
|
|
||||||
python manage.py clean_tasks
|
|
||||||
exec python manage.py process_tasks
|
|
@@ -1,22 +1,96 @@
|
|||||||
from background_task.admin import TaskAdmin, CompletedTaskAdmin
|
|
||||||
from background_task.models import Task, CompletedTask
|
|
||||||
from django.contrib import admin, messages
|
from django.contrib import admin, messages
|
||||||
from django.contrib.admin import AdminSite
|
from django.contrib.admin import AdminSite
|
||||||
from django.contrib.auth.admin import UserAdmin
|
from django.contrib.auth.admin import UserAdmin
|
||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
|
from django.core.paginator import Paginator
|
||||||
from django.db.models import Count, QuerySet
|
from django.db.models import Count, QuerySet
|
||||||
|
from django.shortcuts import render
|
||||||
|
from django.urls import path
|
||||||
from django.utils.translation import ngettext, gettext
|
from django.utils.translation import ngettext, gettext
|
||||||
|
from huey.contrib.djhuey import HUEY as huey
|
||||||
from rest_framework.authtoken.admin import TokenAdmin
|
from rest_framework.authtoken.admin import TokenAdmin
|
||||||
from rest_framework.authtoken.models import TokenProxy
|
from rest_framework.authtoken.models import TokenProxy
|
||||||
|
|
||||||
from bookmarks.models import Bookmark, Tag, UserProfile, Toast, FeedToken
|
from bookmarks.models import Bookmark, BookmarkAsset, Tag, UserProfile, Toast, FeedToken
|
||||||
from bookmarks.services.bookmarks import archive_bookmark, unarchive_bookmark
|
from bookmarks.services.bookmarks import archive_bookmark, unarchive_bookmark
|
||||||
|
|
||||||
|
|
||||||
|
# Custom paginator to paginate through Huey tasks
|
||||||
|
class TaskPaginator(Paginator):
|
||||||
|
def __init__(self):
|
||||||
|
super().__init__(self, 100)
|
||||||
|
self.task_count = huey.storage.queue_size()
|
||||||
|
|
||||||
|
@property
|
||||||
|
def count(self):
|
||||||
|
return self.task_count
|
||||||
|
|
||||||
|
def page(self, number):
|
||||||
|
limit = self.per_page
|
||||||
|
offset = (number - 1) * self.per_page
|
||||||
|
return self._get_page(
|
||||||
|
self.enqueued_items(limit, offset),
|
||||||
|
number,
|
||||||
|
self,
|
||||||
|
)
|
||||||
|
|
||||||
|
# Copied from Huey's SqliteStorage with some modifications to allow pagination
|
||||||
|
def enqueued_items(self, limit, offset):
|
||||||
|
to_bytes = lambda b: bytes(b) if not isinstance(b, bytes) else b
|
||||||
|
sql = "select data from task where queue=? order by priority desc, id limit ? offset ?"
|
||||||
|
params = (huey.storage.name, limit, offset)
|
||||||
|
|
||||||
|
serialized_tasks = [
|
||||||
|
to_bytes(i) for i, in huey.storage.sql(sql, params, results=True)
|
||||||
|
]
|
||||||
|
return [huey.deserialize_task(task) for task in serialized_tasks]
|
||||||
|
|
||||||
|
|
||||||
|
# Custom view to display Huey tasks in the admin
|
||||||
|
def background_task_view(request):
|
||||||
|
page_number = int(request.GET.get("p", 1))
|
||||||
|
paginator = TaskPaginator()
|
||||||
|
page = paginator.get_page(page_number)
|
||||||
|
page_range = paginator.get_elided_page_range(page_number, on_each_side=2, on_ends=2)
|
||||||
|
context = {
|
||||||
|
**linkding_admin_site.each_context(request),
|
||||||
|
"title": "Background tasks",
|
||||||
|
"page": page,
|
||||||
|
"page_range": page_range,
|
||||||
|
"tasks": page.object_list,
|
||||||
|
}
|
||||||
|
return render(request, "admin/background_tasks.html", context)
|
||||||
|
|
||||||
|
|
||||||
class LinkdingAdminSite(AdminSite):
|
class LinkdingAdminSite(AdminSite):
|
||||||
site_header = "linkding administration"
|
site_header = "linkding administration"
|
||||||
site_title = "linkding Admin"
|
site_title = "linkding Admin"
|
||||||
|
|
||||||
|
def get_urls(self):
|
||||||
|
urls = super().get_urls()
|
||||||
|
custom_urls = [
|
||||||
|
path("tasks/", background_task_view, name="background_tasks"),
|
||||||
|
]
|
||||||
|
return custom_urls + urls
|
||||||
|
|
||||||
|
def get_app_list(self, request, app_label=None):
|
||||||
|
app_list = super().get_app_list(request, app_label)
|
||||||
|
app_list += [
|
||||||
|
{
|
||||||
|
"name": "Huey",
|
||||||
|
"app_label": "huey_app",
|
||||||
|
"models": [
|
||||||
|
{
|
||||||
|
"name": "Queued tasks",
|
||||||
|
"object_name": "background_tasks",
|
||||||
|
"admin_url": "/admin/tasks/",
|
||||||
|
"view_only": True,
|
||||||
|
}
|
||||||
|
],
|
||||||
|
}
|
||||||
|
]
|
||||||
|
return app_list
|
||||||
|
|
||||||
|
|
||||||
class AdminBookmark(admin.ModelAdmin):
|
class AdminBookmark(admin.ModelAdmin):
|
||||||
list_display = ("resolved_title", "url", "is_archived", "owner", "date_added")
|
list_display = ("resolved_title", "url", "is_archived", "owner", "date_added")
|
||||||
@@ -125,6 +199,15 @@ class AdminBookmark(admin.ModelAdmin):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class AdminBookmarkAsset(admin.ModelAdmin):
|
||||||
|
list_display = ("display_name", "date_created", "status")
|
||||||
|
search_fields = (
|
||||||
|
"display_name",
|
||||||
|
"file",
|
||||||
|
)
|
||||||
|
list_filter = ("status",)
|
||||||
|
|
||||||
|
|
||||||
class AdminTag(admin.ModelAdmin):
|
class AdminTag(admin.ModelAdmin):
|
||||||
list_display = ("name", "bookmarks_count", "owner", "date_added")
|
list_display = ("name", "bookmarks_count", "owner", "date_added")
|
||||||
search_fields = ("name", "owner__username")
|
search_fields = ("name", "owner__username")
|
||||||
@@ -200,10 +283,9 @@ class AdminFeedToken(admin.ModelAdmin):
|
|||||||
|
|
||||||
linkding_admin_site = LinkdingAdminSite()
|
linkding_admin_site = LinkdingAdminSite()
|
||||||
linkding_admin_site.register(Bookmark, AdminBookmark)
|
linkding_admin_site.register(Bookmark, AdminBookmark)
|
||||||
|
linkding_admin_site.register(BookmarkAsset, AdminBookmarkAsset)
|
||||||
linkding_admin_site.register(Tag, AdminTag)
|
linkding_admin_site.register(Tag, AdminTag)
|
||||||
linkding_admin_site.register(User, AdminCustomUser)
|
linkding_admin_site.register(User, AdminCustomUser)
|
||||||
linkding_admin_site.register(TokenProxy, TokenAdmin)
|
linkding_admin_site.register(TokenProxy, TokenAdmin)
|
||||||
linkding_admin_site.register(Toast, AdminToast)
|
linkding_admin_site.register(Toast, AdminToast)
|
||||||
linkding_admin_site.register(FeedToken, AdminFeedToken)
|
linkding_admin_site.register(FeedToken, AdminFeedToken)
|
||||||
linkding_admin_site.register(Task, TaskAdmin)
|
|
||||||
linkding_admin_site.register(CompletedTask, CompletedTaskAdmin)
|
|
||||||
|
@@ -30,6 +30,7 @@ class BookmarkSerializer(serializers.ModelSerializer):
|
|||||||
"notes",
|
"notes",
|
||||||
"website_title",
|
"website_title",
|
||||||
"website_description",
|
"website_description",
|
||||||
|
"web_archive_snapshot_url",
|
||||||
"is_archived",
|
"is_archived",
|
||||||
"unread",
|
"unread",
|
||||||
"shared",
|
"shared",
|
||||||
@@ -40,6 +41,7 @@ class BookmarkSerializer(serializers.ModelSerializer):
|
|||||||
read_only_fields = [
|
read_only_fields = [
|
||||||
"website_title",
|
"website_title",
|
||||||
"website_description",
|
"website_description",
|
||||||
|
"web_archive_snapshot_url",
|
||||||
"date_added",
|
"date_added",
|
||||||
"date_modified",
|
"date_modified",
|
||||||
]
|
]
|
||||||
|
171
bookmarks/e2e/e2e_test_bookmark_details_modal.py
Normal file
@@ -0,0 +1,171 @@
|
|||||||
|
from django.test import override_settings
|
||||||
|
from django.urls import reverse
|
||||||
|
from playwright.sync_api import sync_playwright, expect
|
||||||
|
|
||||||
|
from bookmarks.e2e.helpers import LinkdingE2ETestCase
|
||||||
|
from bookmarks.models import Bookmark
|
||||||
|
|
||||||
|
|
||||||
|
class BookmarkDetailsModalE2ETestCase(LinkdingE2ETestCase):
|
||||||
|
def test_show_details(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
|
||||||
|
with sync_playwright() as p:
|
||||||
|
self.open(reverse("bookmarks:index"), p)
|
||||||
|
|
||||||
|
details_modal = self.open_details_modal(bookmark)
|
||||||
|
title = details_modal.locator("h2")
|
||||||
|
expect(title).to_have_text(bookmark.title)
|
||||||
|
|
||||||
|
def test_close_details(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
|
||||||
|
with sync_playwright() as p:
|
||||||
|
self.open(reverse("bookmarks:index"), p)
|
||||||
|
|
||||||
|
# close with close button
|
||||||
|
details_modal = self.open_details_modal(bookmark)
|
||||||
|
details_modal.locator("button.close").click()
|
||||||
|
expect(details_modal).to_be_hidden()
|
||||||
|
|
||||||
|
# close with backdrop
|
||||||
|
details_modal = self.open_details_modal(bookmark)
|
||||||
|
overlay = details_modal.locator(".modal-overlay")
|
||||||
|
overlay.click(position={"x": 0, "y": 0})
|
||||||
|
expect(details_modal).to_be_hidden()
|
||||||
|
|
||||||
|
def test_toggle_archived(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
|
||||||
|
with sync_playwright() as p:
|
||||||
|
# archive
|
||||||
|
url = reverse("bookmarks:index")
|
||||||
|
self.open(url, p)
|
||||||
|
|
||||||
|
details_modal = self.open_details_modal(bookmark)
|
||||||
|
details_modal.get_by_text("Archived", exact=False).click()
|
||||||
|
expect(self.locate_bookmark(bookmark.title)).not_to_be_visible()
|
||||||
|
self.assertReloads(0)
|
||||||
|
|
||||||
|
# unarchive
|
||||||
|
url = reverse("bookmarks:archived")
|
||||||
|
self.page.goto(self.live_server_url + url)
|
||||||
|
self.resetReloads()
|
||||||
|
|
||||||
|
details_modal = self.open_details_modal(bookmark)
|
||||||
|
details_modal.get_by_text("Archived", exact=False).click()
|
||||||
|
expect(self.locate_bookmark(bookmark.title)).not_to_be_visible()
|
||||||
|
self.assertReloads(0)
|
||||||
|
|
||||||
|
def test_toggle_unread(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
|
||||||
|
with sync_playwright() as p:
|
||||||
|
# mark as unread
|
||||||
|
url = reverse("bookmarks:index")
|
||||||
|
self.open(url, p)
|
||||||
|
|
||||||
|
details_modal = self.open_details_modal(bookmark)
|
||||||
|
|
||||||
|
details_modal.get_by_text("Unread").click()
|
||||||
|
bookmark_item = self.locate_bookmark(bookmark.title)
|
||||||
|
expect(bookmark_item.get_by_text("Unread")).to_be_visible()
|
||||||
|
self.assertReloads(0)
|
||||||
|
|
||||||
|
# mark as read
|
||||||
|
details_modal.get_by_text("Unread").click()
|
||||||
|
bookmark_item = self.locate_bookmark(bookmark.title)
|
||||||
|
expect(bookmark_item.get_by_text("Unread")).not_to_be_visible()
|
||||||
|
self.assertReloads(0)
|
||||||
|
|
||||||
|
def test_toggle_shared(self):
|
||||||
|
profile = self.get_or_create_test_user().profile
|
||||||
|
profile.enable_sharing = True
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
|
||||||
|
with sync_playwright() as p:
|
||||||
|
# share bookmark
|
||||||
|
url = reverse("bookmarks:index")
|
||||||
|
self.open(url, p)
|
||||||
|
|
||||||
|
details_modal = self.open_details_modal(bookmark)
|
||||||
|
|
||||||
|
details_modal.get_by_text("Shared").click()
|
||||||
|
bookmark_item = self.locate_bookmark(bookmark.title)
|
||||||
|
expect(bookmark_item.get_by_text("Shared")).to_be_visible()
|
||||||
|
self.assertReloads(0)
|
||||||
|
|
||||||
|
# unshare bookmark
|
||||||
|
details_modal.get_by_text("Shared").click()
|
||||||
|
bookmark_item = self.locate_bookmark(bookmark.title)
|
||||||
|
expect(bookmark_item.get_by_text("Shared")).not_to_be_visible()
|
||||||
|
self.assertReloads(0)
|
||||||
|
|
||||||
|
def test_edit_return_url(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
|
||||||
|
with sync_playwright() as p:
|
||||||
|
url = reverse("bookmarks:index") + f"?q={bookmark.title}"
|
||||||
|
self.open(url, p)
|
||||||
|
|
||||||
|
details_modal = self.open_details_modal(bookmark)
|
||||||
|
|
||||||
|
# Navigate to edit page
|
||||||
|
with self.page.expect_navigation():
|
||||||
|
details_modal.get_by_text("Edit").click()
|
||||||
|
|
||||||
|
# Cancel edit, verify return url
|
||||||
|
with self.page.expect_navigation(url=self.live_server_url + url):
|
||||||
|
self.page.get_by_text("Nevermind").click()
|
||||||
|
|
||||||
|
def test_delete(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
|
||||||
|
with sync_playwright() as p:
|
||||||
|
url = reverse("bookmarks:index") + f"?q={bookmark.title}"
|
||||||
|
self.open(url, p)
|
||||||
|
|
||||||
|
details_modal = self.open_details_modal(bookmark)
|
||||||
|
|
||||||
|
# Delete bookmark, verify return url
|
||||||
|
with self.page.expect_navigation(url=self.live_server_url + url):
|
||||||
|
details_modal.get_by_text("Delete...").click()
|
||||||
|
details_modal.get_by_text("Confirm").click()
|
||||||
|
|
||||||
|
# verify bookmark is deleted
|
||||||
|
self.locate_bookmark(bookmark.title)
|
||||||
|
expect(self.locate_bookmark(bookmark.title)).not_to_be_visible()
|
||||||
|
|
||||||
|
self.assertEqual(Bookmark.objects.count(), 0)
|
||||||
|
|
||||||
|
@override_settings(LD_ENABLE_SNAPSHOTS=True)
|
||||||
|
def test_create_snapshot_remove_snapshot(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
|
||||||
|
with sync_playwright() as p:
|
||||||
|
url = reverse("bookmarks:index") + f"?q={bookmark.title}"
|
||||||
|
self.open(url, p)
|
||||||
|
|
||||||
|
details_modal = self.open_details_modal(bookmark)
|
||||||
|
asset_list = details_modal.locator(".assets")
|
||||||
|
|
||||||
|
# No snapshots initially
|
||||||
|
snapshot = asset_list.get_by_text("HTML snapshot from", exact=False)
|
||||||
|
expect(snapshot).not_to_be_visible()
|
||||||
|
|
||||||
|
# Create snapshot
|
||||||
|
details_modal.get_by_text("Create HTML snapshot", exact=False).click()
|
||||||
|
self.assertReloads(0)
|
||||||
|
|
||||||
|
# Has new snapshots
|
||||||
|
expect(snapshot).to_be_visible()
|
||||||
|
|
||||||
|
# Create snapshot
|
||||||
|
asset_list.get_by_text("Remove", exact=False).click()
|
||||||
|
asset_list.get_by_text("Confirm", exact=False).click()
|
||||||
|
|
||||||
|
# Snapshot is removed
|
||||||
|
expect(snapshot).not_to_be_visible()
|
||||||
|
self.assertReloads(0)
|
37
bookmarks/e2e/e2e_test_bookmark_details_view.py
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
from django.urls import reverse
|
||||||
|
from playwright.sync_api import sync_playwright
|
||||||
|
|
||||||
|
from bookmarks.e2e.helpers import LinkdingE2ETestCase
|
||||||
|
|
||||||
|
|
||||||
|
class BookmarkDetailsViewE2ETestCase(LinkdingE2ETestCase):
|
||||||
|
def test_edit_return_url(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
|
||||||
|
with sync_playwright() as p:
|
||||||
|
self.open(reverse("bookmarks:details", args=[bookmark.id]), p)
|
||||||
|
|
||||||
|
# Navigate to edit page
|
||||||
|
with self.page.expect_navigation():
|
||||||
|
self.page.get_by_text("Edit").click()
|
||||||
|
|
||||||
|
# Cancel edit, verify return url
|
||||||
|
with self.page.expect_navigation(
|
||||||
|
url=self.live_server_url
|
||||||
|
+ reverse("bookmarks:details", args=[bookmark.id])
|
||||||
|
):
|
||||||
|
self.page.get_by_text("Nevermind").click()
|
||||||
|
|
||||||
|
def test_delete_return_url(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
|
||||||
|
with sync_playwright() as p:
|
||||||
|
self.open(reverse("bookmarks:details", args=[bookmark.id]), p)
|
||||||
|
|
||||||
|
# Trigger delete, verify return url
|
||||||
|
# Should probably return to last bookmark list page, but for now just returns to index
|
||||||
|
with self.page.expect_navigation(
|
||||||
|
url=self.live_server_url + reverse("bookmarks:index")
|
||||||
|
):
|
||||||
|
self.page.get_by_text("Delete...").click()
|
||||||
|
self.page.get_by_text("Confirm").click()
|
@@ -39,6 +39,7 @@ class BookmarkPagePartialUpdatesE2ETestCase(LinkdingE2ETestCase):
|
|||||||
with sync_playwright() as p:
|
with sync_playwright() as p:
|
||||||
self.open(reverse("bookmarks:index"), p)
|
self.open(reverse("bookmarks:index"), p)
|
||||||
|
|
||||||
|
bookmark_list = self.locate_bookmark_list()
|
||||||
self.locate_bulk_edit_toggle().click()
|
self.locate_bulk_edit_toggle().click()
|
||||||
self.locate_bulk_edit_select_all().click()
|
self.locate_bulk_edit_select_all().click()
|
||||||
self.locate_bulk_edit_select_across().click()
|
self.locate_bulk_edit_select_across().click()
|
||||||
@@ -46,6 +47,8 @@ class BookmarkPagePartialUpdatesE2ETestCase(LinkdingE2ETestCase):
|
|||||||
self.select_bulk_action("Delete")
|
self.select_bulk_action("Delete")
|
||||||
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
||||||
self.locate_bulk_edit_bar().get_by_text("Confirm").click()
|
self.locate_bulk_edit_bar().get_by_text("Confirm").click()
|
||||||
|
# Wait until bookmark list is updated (old reference becomes invisible)
|
||||||
|
expect(bookmark_list).not_to_be_visible()
|
||||||
|
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
0,
|
0,
|
||||||
@@ -74,6 +77,7 @@ class BookmarkPagePartialUpdatesE2ETestCase(LinkdingE2ETestCase):
|
|||||||
with sync_playwright() as p:
|
with sync_playwright() as p:
|
||||||
self.open(reverse("bookmarks:archived"), p)
|
self.open(reverse("bookmarks:archived"), p)
|
||||||
|
|
||||||
|
bookmark_list = self.locate_bookmark_list()
|
||||||
self.locate_bulk_edit_toggle().click()
|
self.locate_bulk_edit_toggle().click()
|
||||||
self.locate_bulk_edit_select_all().click()
|
self.locate_bulk_edit_select_all().click()
|
||||||
self.locate_bulk_edit_select_across().click()
|
self.locate_bulk_edit_select_across().click()
|
||||||
@@ -81,6 +85,8 @@ class BookmarkPagePartialUpdatesE2ETestCase(LinkdingE2ETestCase):
|
|||||||
self.select_bulk_action("Delete")
|
self.select_bulk_action("Delete")
|
||||||
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
||||||
self.locate_bulk_edit_bar().get_by_text("Confirm").click()
|
self.locate_bulk_edit_bar().get_by_text("Confirm").click()
|
||||||
|
# Wait until bookmark list is updated (old reference becomes invisible)
|
||||||
|
expect(bookmark_list).not_to_be_visible()
|
||||||
|
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
50,
|
50,
|
||||||
@@ -109,6 +115,7 @@ class BookmarkPagePartialUpdatesE2ETestCase(LinkdingE2ETestCase):
|
|||||||
with sync_playwright() as p:
|
with sync_playwright() as p:
|
||||||
self.open(reverse("bookmarks:index") + "?q=foo", p)
|
self.open(reverse("bookmarks:index") + "?q=foo", p)
|
||||||
|
|
||||||
|
bookmark_list = self.locate_bookmark_list()
|
||||||
self.locate_bulk_edit_toggle().click()
|
self.locate_bulk_edit_toggle().click()
|
||||||
self.locate_bulk_edit_select_all().click()
|
self.locate_bulk_edit_select_all().click()
|
||||||
self.locate_bulk_edit_select_across().click()
|
self.locate_bulk_edit_select_across().click()
|
||||||
@@ -116,6 +123,8 @@ class BookmarkPagePartialUpdatesE2ETestCase(LinkdingE2ETestCase):
|
|||||||
self.select_bulk_action("Delete")
|
self.select_bulk_action("Delete")
|
||||||
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
||||||
self.locate_bulk_edit_bar().get_by_text("Confirm").click()
|
self.locate_bulk_edit_bar().get_by_text("Confirm").click()
|
||||||
|
# Wait until bookmark list is updated (old reference becomes invisible)
|
||||||
|
expect(bookmark_list).not_to_be_visible()
|
||||||
|
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
50,
|
50,
|
||||||
@@ -144,6 +153,7 @@ class BookmarkPagePartialUpdatesE2ETestCase(LinkdingE2ETestCase):
|
|||||||
with sync_playwright() as p:
|
with sync_playwright() as p:
|
||||||
self.open(reverse("bookmarks:archived") + "?q=foo", p)
|
self.open(reverse("bookmarks:archived") + "?q=foo", p)
|
||||||
|
|
||||||
|
bookmark_list = self.locate_bookmark_list()
|
||||||
self.locate_bulk_edit_toggle().click()
|
self.locate_bulk_edit_toggle().click()
|
||||||
self.locate_bulk_edit_select_all().click()
|
self.locate_bulk_edit_select_all().click()
|
||||||
self.locate_bulk_edit_select_across().click()
|
self.locate_bulk_edit_select_across().click()
|
||||||
@@ -151,6 +161,8 @@ class BookmarkPagePartialUpdatesE2ETestCase(LinkdingE2ETestCase):
|
|||||||
self.select_bulk_action("Delete")
|
self.select_bulk_action("Delete")
|
||||||
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
||||||
self.locate_bulk_edit_bar().get_by_text("Confirm").click()
|
self.locate_bulk_edit_bar().get_by_text("Confirm").click()
|
||||||
|
# Wait until bookmark list is updated (old reference becomes invisible)
|
||||||
|
expect(bookmark_list).not_to_be_visible()
|
||||||
|
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
50,
|
50,
|
||||||
@@ -182,7 +194,7 @@ class BookmarkPagePartialUpdatesE2ETestCase(LinkdingE2ETestCase):
|
|||||||
|
|
||||||
self.locate_bulk_edit_toggle().click()
|
self.locate_bulk_edit_toggle().click()
|
||||||
|
|
||||||
checkboxes = page.locator("label[ld-bulk-edit-checkbox] input")
|
checkboxes = page.locator("label.bulk-edit-checkbox input")
|
||||||
self.assertEqual(6, checkboxes.count())
|
self.assertEqual(6, checkboxes.count())
|
||||||
for i in range(checkboxes.count()):
|
for i in range(checkboxes.count()):
|
||||||
expect(checkboxes.nth(i)).not_to_be_checked()
|
expect(checkboxes.nth(i)).not_to_be_checked()
|
||||||
@@ -252,13 +264,13 @@ class BookmarkPagePartialUpdatesE2ETestCase(LinkdingE2ETestCase):
|
|||||||
|
|
||||||
# Hide select across by toggling a single bookmark
|
# Hide select across by toggling a single bookmark
|
||||||
self.locate_bookmark("Bookmark 1").locator(
|
self.locate_bookmark("Bookmark 1").locator(
|
||||||
"label[ld-bulk-edit-checkbox]"
|
"label.bulk-edit-checkbox"
|
||||||
).click()
|
).click()
|
||||||
expect(self.locate_bulk_edit_select_across()).not_to_be_visible()
|
expect(self.locate_bulk_edit_select_across()).not_to_be_visible()
|
||||||
|
|
||||||
# Show select across again, verify it is unchecked
|
# Show select across again, verify it is unchecked
|
||||||
self.locate_bookmark("Bookmark 1").locator(
|
self.locate_bookmark("Bookmark 1").locator(
|
||||||
"label[ld-bulk-edit-checkbox]"
|
"label.bulk-edit-checkbox"
|
||||||
).click()
|
).click()
|
||||||
expect(self.locate_bulk_edit_select_across()).not_to_be_checked()
|
expect(self.locate_bulk_edit_select_across()).not_to_be_checked()
|
||||||
|
|
||||||
@@ -269,14 +281,13 @@ class BookmarkPagePartialUpdatesE2ETestCase(LinkdingE2ETestCase):
|
|||||||
url = reverse("bookmarks:index")
|
url = reverse("bookmarks:index")
|
||||||
page = self.open(url, p)
|
page = self.open(url, p)
|
||||||
|
|
||||||
|
bookmark_list = self.locate_bookmark_list()
|
||||||
|
|
||||||
# Select all bookmarks, enable select across
|
# Select all bookmarks, enable select across
|
||||||
self.locate_bulk_edit_toggle().click()
|
self.locate_bulk_edit_toggle().click()
|
||||||
self.locate_bulk_edit_select_all().click()
|
self.locate_bulk_edit_select_all().click()
|
||||||
self.locate_bulk_edit_select_across().click()
|
self.locate_bulk_edit_select_across().click()
|
||||||
|
|
||||||
# Get reference for bookmark list
|
|
||||||
bookmark_list = page.locator("ul[ld-bookmark-list]")
|
|
||||||
|
|
||||||
# Execute bulk action
|
# Execute bulk action
|
||||||
self.select_bulk_action("Mark as unread")
|
self.select_bulk_action("Mark as unread")
|
||||||
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
||||||
@@ -286,7 +297,7 @@ class BookmarkPagePartialUpdatesE2ETestCase(LinkdingE2ETestCase):
|
|||||||
expect(bookmark_list).not_to_be_visible()
|
expect(bookmark_list).not_to_be_visible()
|
||||||
|
|
||||||
# Verify bulk edit checkboxes are reset
|
# Verify bulk edit checkboxes are reset
|
||||||
checkboxes = page.locator("label[ld-bulk-edit-checkbox] input")
|
checkboxes = page.locator("label.bulk-edit-checkbox input")
|
||||||
self.assertEqual(31, checkboxes.count())
|
self.assertEqual(31, checkboxes.count())
|
||||||
for i in range(checkboxes.count()):
|
for i in range(checkboxes.count()):
|
||||||
expect(checkboxes.nth(i)).not_to_be_checked()
|
expect(checkboxes.nth(i)).not_to_be_checked()
|
||||||
@@ -302,6 +313,7 @@ class BookmarkPagePartialUpdatesE2ETestCase(LinkdingE2ETestCase):
|
|||||||
url = reverse("bookmarks:index")
|
url = reverse("bookmarks:index")
|
||||||
self.open(url, p)
|
self.open(url, p)
|
||||||
|
|
||||||
|
bookmark_list = self.locate_bookmark_list()
|
||||||
self.locate_bulk_edit_toggle().click()
|
self.locate_bulk_edit_toggle().click()
|
||||||
self.locate_bulk_edit_select_all().click()
|
self.locate_bulk_edit_select_all().click()
|
||||||
|
|
||||||
@@ -312,7 +324,10 @@ class BookmarkPagePartialUpdatesE2ETestCase(LinkdingE2ETestCase):
|
|||||||
self.select_bulk_action("Delete")
|
self.select_bulk_action("Delete")
|
||||||
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
||||||
self.locate_bulk_edit_bar().get_by_text("Confirm").click()
|
self.locate_bulk_edit_bar().get_by_text("Confirm").click()
|
||||||
|
# Wait until bookmark list is updated (old reference becomes invisible)
|
||||||
|
expect(bookmark_list).not_to_be_visible()
|
||||||
|
|
||||||
|
expect(self.locate_bulk_edit_select_all()).not_to_be_checked()
|
||||||
self.locate_bulk_edit_select_all().click()
|
self.locate_bulk_edit_select_all().click()
|
||||||
|
|
||||||
expect(
|
expect(
|
||||||
|
@@ -169,7 +169,7 @@ class BookmarkPagePartialUpdatesE2ETestCase(LinkdingE2ETestCase):
|
|||||||
|
|
||||||
self.locate_bulk_edit_toggle().click()
|
self.locate_bulk_edit_toggle().click()
|
||||||
self.locate_bookmark("Bookmark 2").locator(
|
self.locate_bookmark("Bookmark 2").locator(
|
||||||
"label[ld-bulk-edit-checkbox]"
|
"label.bulk-edit-checkbox"
|
||||||
).click()
|
).click()
|
||||||
self.select_bulk_action("Archive")
|
self.select_bulk_action("Archive")
|
||||||
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
||||||
@@ -187,7 +187,7 @@ class BookmarkPagePartialUpdatesE2ETestCase(LinkdingE2ETestCase):
|
|||||||
|
|
||||||
self.locate_bulk_edit_toggle().click()
|
self.locate_bulk_edit_toggle().click()
|
||||||
self.locate_bookmark("Bookmark 2").locator(
|
self.locate_bookmark("Bookmark 2").locator(
|
||||||
"label[ld-bulk-edit-checkbox]"
|
"label.bulk-edit-checkbox"
|
||||||
).click()
|
).click()
|
||||||
self.select_bulk_action("Delete")
|
self.select_bulk_action("Delete")
|
||||||
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
||||||
@@ -230,7 +230,7 @@ class BookmarkPagePartialUpdatesE2ETestCase(LinkdingE2ETestCase):
|
|||||||
|
|
||||||
self.locate_bulk_edit_toggle().click()
|
self.locate_bulk_edit_toggle().click()
|
||||||
self.locate_bookmark("Archived Bookmark 2").locator(
|
self.locate_bookmark("Archived Bookmark 2").locator(
|
||||||
"label[ld-bulk-edit-checkbox]"
|
"label.bulk-edit-checkbox"
|
||||||
).click()
|
).click()
|
||||||
self.select_bulk_action("Unarchive")
|
self.select_bulk_action("Unarchive")
|
||||||
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
||||||
@@ -248,7 +248,7 @@ class BookmarkPagePartialUpdatesE2ETestCase(LinkdingE2ETestCase):
|
|||||||
|
|
||||||
self.locate_bulk_edit_toggle().click()
|
self.locate_bulk_edit_toggle().click()
|
||||||
self.locate_bookmark("Archived Bookmark 2").locator(
|
self.locate_bookmark("Archived Bookmark 2").locator(
|
||||||
"label[ld-bulk-edit-checkbox]"
|
"label.bulk-edit-checkbox"
|
||||||
).click()
|
).click()
|
||||||
self.select_bulk_action("Delete")
|
self.select_bulk_action("Delete")
|
||||||
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
self.locate_bulk_edit_bar().get_by_text("Execute").click()
|
||||||
|
@@ -2,6 +2,7 @@ from django.urls import reverse
|
|||||||
from playwright.sync_api import sync_playwright, expect
|
from playwright.sync_api import sync_playwright, expect
|
||||||
|
|
||||||
from bookmarks.e2e.helpers import LinkdingE2ETestCase
|
from bookmarks.e2e.helpers import LinkdingE2ETestCase
|
||||||
|
from bookmarks.models import UserProfile
|
||||||
|
|
||||||
|
|
||||||
class SettingsGeneralE2ETestCase(LinkdingE2ETestCase):
|
class SettingsGeneralE2ETestCase(LinkdingE2ETestCase):
|
||||||
@@ -39,3 +40,49 @@ class SettingsGeneralE2ETestCase(LinkdingE2ETestCase):
|
|||||||
expect(enable_sharing).not_to_be_checked()
|
expect(enable_sharing).not_to_be_checked()
|
||||||
expect(enable_public_sharing).not_to_be_checked()
|
expect(enable_public_sharing).not_to_be_checked()
|
||||||
expect(enable_public_sharing).to_be_disabled()
|
expect(enable_public_sharing).to_be_disabled()
|
||||||
|
|
||||||
|
def test_should_not_show_bookmark_description_max_lines_when_display_inline(self):
|
||||||
|
profile = self.get_or_create_test_user().profile
|
||||||
|
profile.bookmark_description_display = (
|
||||||
|
UserProfile.BOOKMARK_DESCRIPTION_DISPLAY_INLINE
|
||||||
|
)
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
with sync_playwright() as p:
|
||||||
|
browser = self.setup_browser(p)
|
||||||
|
page = browser.new_page()
|
||||||
|
page.goto(self.live_server_url + reverse("bookmarks:settings.general"))
|
||||||
|
|
||||||
|
max_lines = page.get_by_label("Bookmark description max lines")
|
||||||
|
expect(max_lines).to_be_hidden()
|
||||||
|
|
||||||
|
def test_should_show_bookmark_description_max_lines_when_display_separate(self):
|
||||||
|
profile = self.get_or_create_test_user().profile
|
||||||
|
profile.bookmark_description_display = (
|
||||||
|
UserProfile.BOOKMARK_DESCRIPTION_DISPLAY_SEPARATE
|
||||||
|
)
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
with sync_playwright() as p:
|
||||||
|
browser = self.setup_browser(p)
|
||||||
|
page = browser.new_page()
|
||||||
|
page.goto(self.live_server_url + reverse("bookmarks:settings.general"))
|
||||||
|
|
||||||
|
max_lines = page.get_by_label("Bookmark description max lines")
|
||||||
|
expect(max_lines).to_be_visible()
|
||||||
|
|
||||||
|
def test_should_update_bookmark_description_max_lines_when_changing_display(self):
|
||||||
|
with sync_playwright() as p:
|
||||||
|
browser = self.setup_browser(p)
|
||||||
|
page = browser.new_page()
|
||||||
|
page.goto(self.live_server_url + reverse("bookmarks:settings.general"))
|
||||||
|
|
||||||
|
max_lines = page.get_by_label("Bookmark description max lines")
|
||||||
|
expect(max_lines).to_be_hidden()
|
||||||
|
|
||||||
|
display = page.get_by_label("Bookmark description", exact=True)
|
||||||
|
display.select_option("separate")
|
||||||
|
expect(max_lines).to_be_visible()
|
||||||
|
|
||||||
|
display.select_option("inline")
|
||||||
|
expect(max_lines).to_be_hidden()
|
||||||
|
76
bookmarks/e2e/e2e_test_tag_cloud_modal.py
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
from django.test import override_settings
|
||||||
|
from django.urls import reverse
|
||||||
|
from playwright.sync_api import sync_playwright, expect, Locator
|
||||||
|
|
||||||
|
from bookmarks.e2e.helpers import LinkdingE2ETestCase
|
||||||
|
from bookmarks.models import Bookmark
|
||||||
|
|
||||||
|
|
||||||
|
class TagCloudModalE2ETestCase(LinkdingE2ETestCase):
|
||||||
|
def test_show_modal_close_modal(self):
|
||||||
|
self.setup_bookmark(tags=[self.setup_tag(name="cooking")])
|
||||||
|
self.setup_bookmark(tags=[self.setup_tag(name="hiking")])
|
||||||
|
|
||||||
|
with sync_playwright() as p:
|
||||||
|
page = self.open(reverse("bookmarks:index"), p)
|
||||||
|
|
||||||
|
# use smaller viewport to make tags button visible
|
||||||
|
page.set_viewport_size({"width": 375, "height": 812})
|
||||||
|
|
||||||
|
# open tag cloud modal
|
||||||
|
modal_trigger = page.locator(".content-area-header").get_by_role(
|
||||||
|
"button", name="Tags"
|
||||||
|
)
|
||||||
|
modal_trigger.click()
|
||||||
|
|
||||||
|
# verify modal is visible
|
||||||
|
modal = page.locator(".modal")
|
||||||
|
expect(modal).to_be_visible()
|
||||||
|
expect(modal.locator(".modal-title")).to_have_text("Tags")
|
||||||
|
|
||||||
|
# close with close button
|
||||||
|
modal.locator("button.close").click()
|
||||||
|
expect(modal).to_be_hidden()
|
||||||
|
|
||||||
|
# open modal again
|
||||||
|
modal_trigger.click()
|
||||||
|
|
||||||
|
# close with backdrop
|
||||||
|
backdrop = modal.locator(".modal-overlay")
|
||||||
|
backdrop.click(position={"x": 0, "y": 0})
|
||||||
|
expect(modal).to_be_hidden()
|
||||||
|
|
||||||
|
def test_select_tag(self):
|
||||||
|
self.setup_bookmark(tags=[self.setup_tag(name="cooking")])
|
||||||
|
self.setup_bookmark(tags=[self.setup_tag(name="hiking")])
|
||||||
|
|
||||||
|
with sync_playwright() as p:
|
||||||
|
page = self.open(reverse("bookmarks:index"), p)
|
||||||
|
|
||||||
|
# use smaller viewport to make tags button visible
|
||||||
|
page.set_viewport_size({"width": 375, "height": 812})
|
||||||
|
|
||||||
|
# open tag cloud modal
|
||||||
|
modal_trigger = page.locator(".content-area-header").get_by_role(
|
||||||
|
"button", name="Tags"
|
||||||
|
)
|
||||||
|
modal_trigger.click()
|
||||||
|
|
||||||
|
# verify tags are displayed
|
||||||
|
modal = page.locator(".modal")
|
||||||
|
unselected_tags = modal.locator(".unselected-tags")
|
||||||
|
expect(unselected_tags.get_by_text("cooking")).to_be_visible()
|
||||||
|
expect(unselected_tags.get_by_text("hiking")).to_be_visible()
|
||||||
|
|
||||||
|
# select tag
|
||||||
|
unselected_tags.get_by_text("cooking").click()
|
||||||
|
|
||||||
|
# open modal again
|
||||||
|
modal_trigger.click()
|
||||||
|
|
||||||
|
# verify tag is selected, other tag is not visible anymore
|
||||||
|
selected_tags = modal.locator(".selected-tags")
|
||||||
|
expect(selected_tags.get_by_text("cooking")).to_be_visible()
|
||||||
|
|
||||||
|
expect(unselected_tags.get_by_text("cooking")).not_to_be_visible()
|
||||||
|
expect(unselected_tags.get_by_text("hiking")).not_to_be_visible()
|
@@ -1,5 +1,6 @@
|
|||||||
from django.contrib.staticfiles.testing import LiveServerTestCase
|
from django.contrib.staticfiles.testing import LiveServerTestCase
|
||||||
from playwright.sync_api import BrowserContext, Playwright, Page
|
from playwright.sync_api import BrowserContext, Playwright, Page
|
||||||
|
from playwright.sync_api import expect
|
||||||
|
|
||||||
from bookmarks.tests.helpers import BookmarkFactoryMixin
|
from bookmarks.tests.helpers import BookmarkFactoryMixin
|
||||||
|
|
||||||
@@ -38,15 +39,33 @@ class LinkdingE2ETestCase(LiveServerTestCase, BookmarkFactoryMixin):
|
|||||||
def assertReloads(self, count: int):
|
def assertReloads(self, count: int):
|
||||||
self.assertEqual(self.num_loads, count)
|
self.assertEqual(self.num_loads, count)
|
||||||
|
|
||||||
|
def resetReloads(self):
|
||||||
|
self.num_loads = 0
|
||||||
|
|
||||||
|
def locate_bookmark_list(self):
|
||||||
|
return self.page.locator("ul[ld-bookmark-list]")
|
||||||
|
|
||||||
def locate_bookmark(self, title: str):
|
def locate_bookmark(self, title: str):
|
||||||
bookmark_tags = self.page.locator("li[ld-bookmark-item]")
|
bookmark_tags = self.page.locator("li[ld-bookmark-item]")
|
||||||
return bookmark_tags.filter(has_text=title)
|
return bookmark_tags.filter(has_text=title)
|
||||||
|
|
||||||
|
def locate_details_modal(self):
|
||||||
|
return self.page.locator(".modal.bookmark-details")
|
||||||
|
|
||||||
|
def open_details_modal(self, bookmark):
|
||||||
|
details_button = self.locate_bookmark(bookmark.title).get_by_text("View")
|
||||||
|
details_button.click()
|
||||||
|
|
||||||
|
details_modal = self.locate_details_modal()
|
||||||
|
expect(details_modal).to_be_visible()
|
||||||
|
|
||||||
|
return details_modal
|
||||||
|
|
||||||
def locate_bulk_edit_bar(self):
|
def locate_bulk_edit_bar(self):
|
||||||
return self.page.locator(".bulk-edit-bar")
|
return self.page.locator(".bulk-edit-bar")
|
||||||
|
|
||||||
def locate_bulk_edit_select_all(self):
|
def locate_bulk_edit_select_all(self):
|
||||||
return self.locate_bulk_edit_bar().locator("label[ld-bulk-edit-checkbox][all]")
|
return self.locate_bulk_edit_bar().locator("label.bulk-edit-checkbox.all")
|
||||||
|
|
||||||
def locate_bulk_edit_select_across(self):
|
def locate_bulk_edit_select_across(self):
|
||||||
return self.locate_bulk_edit_bar().locator("label.select-across")
|
return self.locate_bulk_edit_bar().locator("label.select-across")
|
||||||
|
@@ -6,12 +6,12 @@ from django.db.models import QuerySet
|
|||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
|
|
||||||
from bookmarks import queries
|
from bookmarks import queries
|
||||||
from bookmarks.models import Bookmark, BookmarkSearch, FeedToken
|
from bookmarks.models import Bookmark, BookmarkSearch, FeedToken, UserProfile
|
||||||
|
|
||||||
|
|
||||||
@dataclass
|
@dataclass
|
||||||
class FeedContext:
|
class FeedContext:
|
||||||
feed_token: FeedToken
|
feed_token: FeedToken | None
|
||||||
query_set: QuerySet[Bookmark]
|
query_set: QuerySet[Bookmark]
|
||||||
|
|
||||||
|
|
||||||
@@ -67,3 +67,39 @@ class UnreadBookmarksFeed(BaseBookmarksFeed):
|
|||||||
|
|
||||||
def items(self, context: FeedContext):
|
def items(self, context: FeedContext):
|
||||||
return context.query_set.filter(unread=True)
|
return context.query_set.filter(unread=True)
|
||||||
|
|
||||||
|
|
||||||
|
class SharedBookmarksFeed(BaseBookmarksFeed):
|
||||||
|
title = "Shared bookmarks"
|
||||||
|
description = "All shared bookmarks"
|
||||||
|
|
||||||
|
def get_object(self, request, feed_key: str):
|
||||||
|
feed_token = FeedToken.objects.get(key__exact=feed_key)
|
||||||
|
search = BookmarkSearch(q=request.GET.get("q", ""))
|
||||||
|
query_set = queries.query_shared_bookmarks(
|
||||||
|
None, feed_token.user.profile, search, False
|
||||||
|
)
|
||||||
|
return FeedContext(feed_token, query_set)
|
||||||
|
|
||||||
|
def link(self, context: FeedContext):
|
||||||
|
return reverse("bookmarks:feeds.shared", args=[context.feed_token.key])
|
||||||
|
|
||||||
|
def items(self, context: FeedContext):
|
||||||
|
return context.query_set
|
||||||
|
|
||||||
|
|
||||||
|
class PublicSharedBookmarksFeed(BaseBookmarksFeed):
|
||||||
|
title = "Public shared bookmarks"
|
||||||
|
description = "All public shared bookmarks"
|
||||||
|
|
||||||
|
def get_object(self, request):
|
||||||
|
search = BookmarkSearch(q=request.GET.get("q", ""))
|
||||||
|
default_profile = UserProfile()
|
||||||
|
query_set = queries.query_shared_bookmarks(None, default_profile, search, True)
|
||||||
|
return FeedContext(None, query_set)
|
||||||
|
|
||||||
|
def link(self, context: FeedContext):
|
||||||
|
return reverse("bookmarks:feeds.public_shared")
|
||||||
|
|
||||||
|
def items(self, context: FeedContext):
|
||||||
|
return context.query_set
|
||||||
|
@@ -1,63 +1,8 @@
|
|||||||
import { registerBehavior, swap } from "./index";
|
import { Behavior, registerBehavior } from "./index";
|
||||||
|
|
||||||
class BookmarkPage {
|
class BookmarkItem extends Behavior {
|
||||||
constructor(element) {
|
constructor(element) {
|
||||||
this.element = element;
|
super(element);
|
||||||
this.form = element.querySelector("form.bookmark-actions");
|
|
||||||
this.form.addEventListener("submit", this.onFormSubmit.bind(this));
|
|
||||||
|
|
||||||
this.bookmarkList = element.querySelector(".bookmark-list-container");
|
|
||||||
this.tagCloud = element.querySelector(".tag-cloud-container");
|
|
||||||
}
|
|
||||||
|
|
||||||
async onFormSubmit(event) {
|
|
||||||
event.preventDefault();
|
|
||||||
|
|
||||||
const url = this.form.action;
|
|
||||||
const formData = new FormData(this.form);
|
|
||||||
formData.append(event.submitter.name, event.submitter.value);
|
|
||||||
|
|
||||||
await fetch(url, {
|
|
||||||
method: "POST",
|
|
||||||
body: formData,
|
|
||||||
redirect: "manual", // ignore redirect
|
|
||||||
});
|
|
||||||
await this.refresh();
|
|
||||||
}
|
|
||||||
|
|
||||||
async refresh() {
|
|
||||||
const query = window.location.search;
|
|
||||||
const bookmarksUrl = this.element.getAttribute("bookmarks-url");
|
|
||||||
const tagsUrl = this.element.getAttribute("tags-url");
|
|
||||||
Promise.all([
|
|
||||||
fetch(`${bookmarksUrl}${query}`).then((response) => response.text()),
|
|
||||||
fetch(`${tagsUrl}${query}`).then((response) => response.text()),
|
|
||||||
]).then(([bookmarkListHtml, tagCloudHtml]) => {
|
|
||||||
swap(this.bookmarkList, bookmarkListHtml);
|
|
||||||
swap(this.tagCloud, tagCloudHtml);
|
|
||||||
|
|
||||||
// Dispatch list updated event
|
|
||||||
const listElement = this.bookmarkList.querySelector(
|
|
||||||
"ul[data-bookmarks-total]",
|
|
||||||
);
|
|
||||||
const bookmarksTotal =
|
|
||||||
(listElement && listElement.dataset.bookmarksTotal) || 0;
|
|
||||||
|
|
||||||
this.bookmarkList.dispatchEvent(
|
|
||||||
new CustomEvent("bookmark-list-updated", {
|
|
||||||
bubbles: true,
|
|
||||||
detail: { bookmarksTotal },
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
registerBehavior("ld-bookmark-page", BookmarkPage);
|
|
||||||
|
|
||||||
class BookmarkItem {
|
|
||||||
constructor(element) {
|
|
||||||
this.element = element;
|
|
||||||
|
|
||||||
// Toggle notes
|
// Toggle notes
|
||||||
const notesToggle = element.querySelector(".toggle-notes");
|
const notesToggle = element.querySelector(".toggle-notes");
|
||||||
@@ -68,9 +13,11 @@ class BookmarkItem {
|
|||||||
// Add tooltip to title if it is truncated
|
// Add tooltip to title if it is truncated
|
||||||
const titleAnchor = element.querySelector(".title > a");
|
const titleAnchor = element.querySelector(".title > a");
|
||||||
const titleSpan = titleAnchor.querySelector("span");
|
const titleSpan = titleAnchor.querySelector("span");
|
||||||
if (titleSpan.offsetWidth > titleAnchor.offsetWidth) {
|
requestAnimationFrame(() => {
|
||||||
titleAnchor.dataset.tooltip = titleSpan.textContent;
|
if (titleSpan.offsetWidth > titleAnchor.offsetWidth) {
|
||||||
}
|
titleAnchor.dataset.tooltip = titleSpan.textContent;
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
onToggleNotes(event) {
|
onToggleNotes(event) {
|
||||||
|
@@ -1,46 +1,60 @@
|
|||||||
import { registerBehavior } from "./index";
|
import { Behavior, registerBehavior } from "./index";
|
||||||
|
|
||||||
class BulkEdit {
|
class BulkEdit extends Behavior {
|
||||||
constructor(element) {
|
constructor(element) {
|
||||||
this.element = element;
|
super(element);
|
||||||
|
|
||||||
this.active = false;
|
this.active = false;
|
||||||
this.actionSelect = element.querySelector("select[name='bulk_action']");
|
|
||||||
this.tagAutoComplete = element.querySelector(".tag-autocomplete");
|
|
||||||
this.selectAcross = element.querySelector("label.select-across");
|
|
||||||
|
|
||||||
element.addEventListener(
|
this.onToggleActive = this.onToggleActive.bind(this);
|
||||||
"bulk-edit-toggle-active",
|
this.onToggleAll = this.onToggleAll.bind(this);
|
||||||
this.onToggleActive.bind(this),
|
this.onToggleBookmark = this.onToggleBookmark.bind(this);
|
||||||
);
|
this.onActionSelected = this.onActionSelected.bind(this);
|
||||||
element.addEventListener(
|
|
||||||
"bulk-edit-toggle-all",
|
|
||||||
this.onToggleAll.bind(this),
|
|
||||||
);
|
|
||||||
element.addEventListener(
|
|
||||||
"bulk-edit-toggle-bookmark",
|
|
||||||
this.onToggleBookmark.bind(this),
|
|
||||||
);
|
|
||||||
element.addEventListener(
|
|
||||||
"bookmark-list-updated",
|
|
||||||
this.onListUpdated.bind(this),
|
|
||||||
);
|
|
||||||
|
|
||||||
this.actionSelect.addEventListener(
|
this.init();
|
||||||
"change",
|
// Reset when bookmarks are refreshed
|
||||||
this.onActionSelected.bind(this),
|
document.addEventListener("refresh-bookmark-list-done", () => this.init());
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
get allCheckbox() {
|
init() {
|
||||||
return this.element.querySelector("[ld-bulk-edit-checkbox][all] input");
|
// Update elements
|
||||||
}
|
this.activeToggle = this.element.querySelector(".bulk-edit-active-toggle");
|
||||||
|
this.actionSelect = this.element.querySelector(
|
||||||
|
"select[name='bulk_action']",
|
||||||
|
);
|
||||||
|
this.tagAutoComplete = this.element.querySelector(".tag-autocomplete");
|
||||||
|
this.selectAcross = this.element.querySelector("label.select-across");
|
||||||
|
this.allCheckbox = this.element.querySelector(
|
||||||
|
".bulk-edit-checkbox.all input",
|
||||||
|
);
|
||||||
|
this.bookmarkCheckboxes = Array.from(
|
||||||
|
this.element.querySelectorAll(".bulk-edit-checkbox:not(.all) input"),
|
||||||
|
);
|
||||||
|
|
||||||
get bookmarkCheckboxes() {
|
// Remove previous listeners if elements are the same
|
||||||
return [
|
this.activeToggle.removeEventListener("click", this.onToggleActive);
|
||||||
...this.element.querySelectorAll(
|
this.actionSelect.removeEventListener("change", this.onActionSelected);
|
||||||
"[ld-bulk-edit-checkbox]:not([all]) input",
|
this.allCheckbox.removeEventListener("change", this.onToggleAll);
|
||||||
),
|
this.bookmarkCheckboxes.forEach((checkbox) => {
|
||||||
];
|
checkbox.removeEventListener("change", this.onToggleBookmark);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Reset checkbox states
|
||||||
|
this.reset();
|
||||||
|
|
||||||
|
// Update total number of bookmarks
|
||||||
|
const totalHolder = this.element.querySelector("[data-bookmarks-total]");
|
||||||
|
const total = totalHolder?.dataset.bookmarksTotal || 0;
|
||||||
|
const totalSpan = this.selectAcross.querySelector("span.total");
|
||||||
|
totalSpan.textContent = total;
|
||||||
|
|
||||||
|
// Add new listeners
|
||||||
|
this.activeToggle.addEventListener("click", this.onToggleActive);
|
||||||
|
this.actionSelect.addEventListener("change", this.onActionSelected);
|
||||||
|
this.allCheckbox.addEventListener("change", this.onToggleAll);
|
||||||
|
this.bookmarkCheckboxes.forEach((checkbox) => {
|
||||||
|
checkbox.addEventListener("change", this.onToggleBookmark);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
onToggleActive() {
|
onToggleActive() {
|
||||||
@@ -81,16 +95,6 @@ class BulkEdit {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onListUpdated(event) {
|
|
||||||
// Reset checkbox states
|
|
||||||
this.reset();
|
|
||||||
|
|
||||||
// Update total number of bookmarks
|
|
||||||
const total = event.detail.bookmarksTotal;
|
|
||||||
const totalSpan = this.selectAcross.querySelector("span.total");
|
|
||||||
totalSpan.textContent = total;
|
|
||||||
}
|
|
||||||
|
|
||||||
updateSelectAcross(allChecked) {
|
updateSelectAcross(allChecked) {
|
||||||
if (allChecked) {
|
if (allChecked) {
|
||||||
this.selectAcross.classList.remove("d-none");
|
this.selectAcross.classList.remove("d-none");
|
||||||
@@ -109,33 +113,4 @@ class BulkEdit {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class BulkEditActiveToggle {
|
|
||||||
constructor(element) {
|
|
||||||
this.element = element;
|
|
||||||
element.addEventListener("click", this.onClick.bind(this));
|
|
||||||
}
|
|
||||||
|
|
||||||
onClick() {
|
|
||||||
this.element.dispatchEvent(
|
|
||||||
new CustomEvent("bulk-edit-toggle-active", { bubbles: true }),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class BulkEditCheckbox {
|
|
||||||
constructor(element) {
|
|
||||||
this.element = element;
|
|
||||||
element.addEventListener("change", this.onChange.bind(this));
|
|
||||||
}
|
|
||||||
|
|
||||||
onChange() {
|
|
||||||
const type = this.element.hasAttribute("all") ? "all" : "bookmark";
|
|
||||||
this.element.dispatchEvent(
|
|
||||||
new CustomEvent(`bulk-edit-toggle-${type}`, { bubbles: true }),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
registerBehavior("ld-bulk-edit", BulkEdit);
|
registerBehavior("ld-bulk-edit", BulkEdit);
|
||||||
registerBehavior("ld-bulk-edit-active-toggle", BulkEditActiveToggle);
|
|
||||||
registerBehavior("ld-bulk-edit-checkbox", BulkEditCheckbox);
|
|
||||||
|
@@ -1,25 +1,29 @@
|
|||||||
import { registerBehavior } from "./index";
|
import { Behavior, registerBehavior } from "./index";
|
||||||
|
|
||||||
class ConfirmButtonBehavior {
|
class ConfirmButtonBehavior extends Behavior {
|
||||||
constructor(element) {
|
constructor(element) {
|
||||||
const button = element;
|
super(element);
|
||||||
button.dataset.type = button.type;
|
element.dataset.type = element.type;
|
||||||
button.dataset.name = button.name;
|
element.dataset.name = element.name;
|
||||||
button.dataset.value = button.value;
|
element.dataset.value = element.value;
|
||||||
button.removeAttribute("type");
|
element.removeAttribute("type");
|
||||||
button.removeAttribute("name");
|
element.removeAttribute("name");
|
||||||
button.removeAttribute("value");
|
element.removeAttribute("value");
|
||||||
button.addEventListener("click", this.onClick.bind(this));
|
element.addEventListener("click", this.onClick.bind(this));
|
||||||
this.button = button;
|
}
|
||||||
|
|
||||||
|
destroy() {
|
||||||
|
Behavior.interacting = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
onClick(event) {
|
onClick(event) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
Behavior.interacting = true;
|
||||||
|
|
||||||
const container = document.createElement("span");
|
const container = document.createElement("span");
|
||||||
container.className = "confirmation";
|
container.className = "confirmation";
|
||||||
|
|
||||||
const icon = this.button.getAttribute("confirm-icon");
|
const icon = this.element.getAttribute("ld-confirm-icon");
|
||||||
if (icon) {
|
if (icon) {
|
||||||
const iconElement = document.createElementNS(
|
const iconElement = document.createElementNS(
|
||||||
"http://www.w3.org/2000/svg",
|
"http://www.w3.org/2000/svg",
|
||||||
@@ -31,38 +35,43 @@ class ConfirmButtonBehavior {
|
|||||||
container.append(iconElement);
|
container.append(iconElement);
|
||||||
}
|
}
|
||||||
|
|
||||||
const question = this.button.getAttribute("confirm-question");
|
const question = this.element.getAttribute("ld-confirm-question");
|
||||||
if (question) {
|
if (question) {
|
||||||
const questionElement = document.createElement("span");
|
const questionElement = document.createElement("span");
|
||||||
questionElement.innerText = question;
|
questionElement.innerText = question;
|
||||||
container.append(question);
|
container.append(question);
|
||||||
}
|
}
|
||||||
|
|
||||||
const cancelButton = document.createElement(this.button.nodeName);
|
const buttonClasses = Array.from(this.element.classList.values())
|
||||||
|
.filter((cls) => cls.startsWith("btn"))
|
||||||
|
.join(" ");
|
||||||
|
|
||||||
|
const cancelButton = document.createElement(this.element.nodeName);
|
||||||
cancelButton.type = "button";
|
cancelButton.type = "button";
|
||||||
cancelButton.innerText = question ? "No" : "Cancel";
|
cancelButton.innerText = question ? "No" : "Cancel";
|
||||||
cancelButton.className = "btn btn-link btn-sm mr-1";
|
cancelButton.className = `${buttonClasses} mr-1`;
|
||||||
cancelButton.addEventListener("click", this.reset.bind(this));
|
cancelButton.addEventListener("click", this.reset.bind(this));
|
||||||
|
|
||||||
const confirmButton = document.createElement(this.button.nodeName);
|
const confirmButton = document.createElement(this.element.nodeName);
|
||||||
confirmButton.type = this.button.dataset.type;
|
confirmButton.type = this.element.dataset.type;
|
||||||
confirmButton.name = this.button.dataset.name;
|
confirmButton.name = this.element.dataset.name;
|
||||||
confirmButton.value = this.button.dataset.value;
|
confirmButton.value = this.element.dataset.value;
|
||||||
confirmButton.innerText = question ? "Yes" : "Confirm";
|
confirmButton.innerText = question ? "Yes" : "Confirm";
|
||||||
confirmButton.className = "btn btn-link btn-sm";
|
confirmButton.className = buttonClasses;
|
||||||
confirmButton.addEventListener("click", this.reset.bind(this));
|
confirmButton.addEventListener("click", this.reset.bind(this));
|
||||||
|
|
||||||
container.append(cancelButton, confirmButton);
|
container.append(cancelButton, confirmButton);
|
||||||
this.container = container;
|
this.container = container;
|
||||||
|
|
||||||
this.button.before(container);
|
this.element.before(container);
|
||||||
this.button.classList.add("d-none");
|
this.element.classList.add("d-none");
|
||||||
}
|
}
|
||||||
|
|
||||||
reset() {
|
reset() {
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
Behavior.interacting = false;
|
||||||
this.container.remove();
|
this.container.remove();
|
||||||
this.button.classList.remove("d-none");
|
this.element.classList.remove("d-none");
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
import { registerBehavior } from "./index";
|
import { Behavior, registerBehavior } from "./index";
|
||||||
|
|
||||||
class DropdownBehavior {
|
class DropdownBehavior extends Behavior {
|
||||||
constructor(element) {
|
constructor(element) {
|
||||||
this.element = element;
|
super(element);
|
||||||
this.opened = false;
|
this.opened = false;
|
||||||
this.onOutsideClick = this.onOutsideClick.bind(this);
|
this.onOutsideClick = this.onOutsideClick.bind(this);
|
||||||
|
|
||||||
|
48
bookmarks/frontend/behaviors/fetch.js
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
import { Behavior, fireEvents, registerBehavior, swap } from "./index";
|
||||||
|
|
||||||
|
class FetchBehavior extends Behavior {
|
||||||
|
constructor(element) {
|
||||||
|
super(element);
|
||||||
|
|
||||||
|
const eventName = element.getAttribute("ld-on");
|
||||||
|
const interval = parseInt(element.getAttribute("ld-interval")) * 1000;
|
||||||
|
|
||||||
|
this.onFetch = this.onFetch.bind(this);
|
||||||
|
this.onInterval = this.onInterval.bind(this);
|
||||||
|
|
||||||
|
element.addEventListener(eventName, this.onFetch);
|
||||||
|
if (interval) {
|
||||||
|
this.intervalId = setInterval(this.onInterval, interval);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
destroy() {
|
||||||
|
if (this.intervalId) {
|
||||||
|
clearInterval(this.intervalId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async onFetch(maybeEvent) {
|
||||||
|
if (maybeEvent) {
|
||||||
|
maybeEvent.preventDefault();
|
||||||
|
}
|
||||||
|
const url = this.element.getAttribute("ld-fetch");
|
||||||
|
const html = await fetch(url).then((response) => response.text());
|
||||||
|
|
||||||
|
const target = this.element.getAttribute("ld-target");
|
||||||
|
const select = this.element.getAttribute("ld-select");
|
||||||
|
swap(this.element, html, { target, select });
|
||||||
|
|
||||||
|
const events = this.element.getAttribute("ld-fire");
|
||||||
|
fireEvents(events);
|
||||||
|
}
|
||||||
|
|
||||||
|
onInterval() {
|
||||||
|
if (Behavior.interacting) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.onFetch();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
registerBehavior("ld-fetch", FetchBehavior);
|
44
bookmarks/frontend/behaviors/form.js
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
import { Behavior, fireEvents, registerBehavior } from "./index";
|
||||||
|
|
||||||
|
class FormBehavior extends Behavior {
|
||||||
|
constructor(element) {
|
||||||
|
super(element);
|
||||||
|
|
||||||
|
element.addEventListener("submit", this.onSubmit.bind(this));
|
||||||
|
}
|
||||||
|
|
||||||
|
async onSubmit(event) {
|
||||||
|
event.preventDefault();
|
||||||
|
|
||||||
|
const url = this.element.action;
|
||||||
|
const formData = new FormData(this.element);
|
||||||
|
if (event.submitter) {
|
||||||
|
formData.append(event.submitter.name, event.submitter.value);
|
||||||
|
}
|
||||||
|
|
||||||
|
await fetch(url, {
|
||||||
|
method: "POST",
|
||||||
|
body: formData,
|
||||||
|
redirect: "manual", // ignore redirect
|
||||||
|
});
|
||||||
|
|
||||||
|
const events = this.element.getAttribute("ld-fire");
|
||||||
|
if (fireEvents) {
|
||||||
|
fireEvents(events);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class AutoSubmitBehavior extends Behavior {
|
||||||
|
constructor(element) {
|
||||||
|
super(element);
|
||||||
|
|
||||||
|
element.addEventListener("change", () => {
|
||||||
|
const form = element.closest("form");
|
||||||
|
form.dispatchEvent(new Event("submit", { cancelable: true }));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
registerBehavior("ld-form", FormBehavior);
|
||||||
|
registerBehavior("ld-auto-submit", AutoSubmitBehavior);
|
@@ -1,7 +1,9 @@
|
|||||||
import { registerBehavior } from "./index";
|
import { Behavior, registerBehavior } from "./index";
|
||||||
|
|
||||||
|
class GlobalShortcuts extends Behavior {
|
||||||
|
constructor(element) {
|
||||||
|
super(element);
|
||||||
|
|
||||||
class GlobalShortcuts {
|
|
||||||
constructor() {
|
|
||||||
document.addEventListener("keydown", this.onKeyDown.bind(this));
|
document.addEventListener("keydown", this.onKeyDown.bind(this));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,4 +1,35 @@
|
|||||||
const behaviorRegistry = {};
|
const behaviorRegistry = {};
|
||||||
|
const debug = false;
|
||||||
|
|
||||||
|
const mutationObserver = new MutationObserver((mutations) => {
|
||||||
|
mutations.forEach((mutation) => {
|
||||||
|
mutation.removedNodes.forEach((node) => {
|
||||||
|
if (node instanceof HTMLElement && !node.isConnected) {
|
||||||
|
destroyBehaviors(node);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
mutation.addedNodes.forEach((node) => {
|
||||||
|
if (node instanceof HTMLElement && node.isConnected) {
|
||||||
|
applyBehaviors(node);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
mutationObserver.observe(document.body, {
|
||||||
|
childList: true,
|
||||||
|
subtree: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
export class Behavior {
|
||||||
|
constructor(element) {
|
||||||
|
this.element = element;
|
||||||
|
}
|
||||||
|
|
||||||
|
destroy() {}
|
||||||
|
}
|
||||||
|
|
||||||
|
Behavior.interacting = false;
|
||||||
|
|
||||||
export function registerBehavior(name, behavior) {
|
export function registerBehavior(name, behavior) {
|
||||||
behaviorRegistry[name] = behavior;
|
behaviorRegistry[name] = behavior;
|
||||||
@@ -12,7 +43,14 @@ export function applyBehaviors(container, behaviorNames = null) {
|
|||||||
|
|
||||||
behaviorNames.forEach((behaviorName) => {
|
behaviorNames.forEach((behaviorName) => {
|
||||||
const behavior = behaviorRegistry[behaviorName];
|
const behavior = behaviorRegistry[behaviorName];
|
||||||
const elements = container.querySelectorAll(`[${behaviorName}]`);
|
const elements = Array.from(
|
||||||
|
container.querySelectorAll(`[${behaviorName}]`),
|
||||||
|
);
|
||||||
|
|
||||||
|
// Include the container element if it has the behavior
|
||||||
|
if (container.hasAttribute && container.hasAttribute(behaviorName)) {
|
||||||
|
elements.push(container);
|
||||||
|
}
|
||||||
|
|
||||||
elements.forEach((element) => {
|
elements.forEach((element) => {
|
||||||
element.__behaviors = element.__behaviors || [];
|
element.__behaviors = element.__behaviors || [];
|
||||||
@@ -26,11 +64,82 @@ export function applyBehaviors(container, behaviorNames = null) {
|
|||||||
|
|
||||||
const behaviorInstance = new behavior(element);
|
const behaviorInstance = new behavior(element);
|
||||||
element.__behaviors.push(behaviorInstance);
|
element.__behaviors.push(behaviorInstance);
|
||||||
|
if (debug) {
|
||||||
|
console.log(
|
||||||
|
`[Behavior] ${behaviorInstance.constructor.name} initialized`,
|
||||||
|
);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export function swap(element, html) {
|
export function destroyBehaviors(element) {
|
||||||
element.innerHTML = html;
|
const behaviorNames = Object.keys(behaviorRegistry);
|
||||||
applyBehaviors(element);
|
|
||||||
|
behaviorNames.forEach((behaviorName) => {
|
||||||
|
const elements = Array.from(element.querySelectorAll(`[${behaviorName}]`));
|
||||||
|
elements.push(element);
|
||||||
|
|
||||||
|
elements.forEach((element) => {
|
||||||
|
if (!element.__behaviors) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
element.__behaviors.forEach((behavior) => {
|
||||||
|
behavior.destroy();
|
||||||
|
if (debug) {
|
||||||
|
console.log(`[Behavior] ${behavior.constructor.name} destroyed`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
delete element.__behaviors;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function swap(element, html, options) {
|
||||||
|
const dom = new DOMParser().parseFromString(html, "text/html");
|
||||||
|
|
||||||
|
let targetElement = element;
|
||||||
|
let strategy = "innerHTML";
|
||||||
|
if (options.target) {
|
||||||
|
const parts = options.target.split("|");
|
||||||
|
targetElement =
|
||||||
|
parts[0] === "self" ? element : document.querySelector(parts[0]);
|
||||||
|
strategy = parts[1] || "innerHTML";
|
||||||
|
}
|
||||||
|
|
||||||
|
let contents = Array.from(dom.body.children);
|
||||||
|
if (options.select) {
|
||||||
|
contents = Array.from(dom.querySelectorAll(options.select));
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (strategy) {
|
||||||
|
case "append":
|
||||||
|
targetElement.append(...contents);
|
||||||
|
break;
|
||||||
|
case "outerHTML":
|
||||||
|
targetElement.parentElement.replaceChild(contents[0], targetElement);
|
||||||
|
break;
|
||||||
|
case "innerHTML":
|
||||||
|
default:
|
||||||
|
Array.from(targetElement.children).forEach((child) => {
|
||||||
|
child.remove();
|
||||||
|
});
|
||||||
|
targetElement.append(...contents);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function fireEvents(events) {
|
||||||
|
if (!events) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
events.split(",").forEach((eventName) => {
|
||||||
|
const targets = Array.from(
|
||||||
|
document.querySelectorAll(`[ld-on='${eventName}']`),
|
||||||
|
);
|
||||||
|
targets.push(document);
|
||||||
|
targets.forEach((target) => {
|
||||||
|
target.dispatchEvent(new CustomEvent(eventName));
|
||||||
|
});
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
@@ -1,64 +1,22 @@
|
|||||||
import { registerBehavior } from "./index";
|
import { Behavior, registerBehavior } from "./index";
|
||||||
|
|
||||||
class ModalBehavior {
|
class ModalBehavior extends Behavior {
|
||||||
constructor(element) {
|
constructor(element) {
|
||||||
const toggle = element;
|
super(element);
|
||||||
toggle.addEventListener("click", this.onToggleClick.bind(this));
|
|
||||||
this.toggle = toggle;
|
|
||||||
}
|
|
||||||
|
|
||||||
onToggleClick() {
|
const modalOverlay = element.querySelector(".modal-overlay");
|
||||||
const contentSelector = this.toggle.getAttribute("modal-content");
|
const closeButton = element.querySelector("button.close");
|
||||||
const content = document.querySelector(contentSelector);
|
|
||||||
if (!content) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create modal
|
|
||||||
const modal = document.createElement("div");
|
|
||||||
modal.classList.add("modal", "active");
|
|
||||||
modal.innerHTML = `
|
|
||||||
<div class="modal-overlay" aria-label="Close"></div>
|
|
||||||
<div class="modal-container">
|
|
||||||
<div class="modal-header d-flex justify-between align-center">
|
|
||||||
<div class="modal-title h5">Tags</div>
|
|
||||||
<button class="btn btn-link close">
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
|
||||||
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
|
|
||||||
<path d="M18 6l-12 12"></path>
|
|
||||||
<path d="M6 6l12 12"></path>
|
|
||||||
</svg>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<div class="modal-body">
|
|
||||||
<div class="content"></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
`;
|
|
||||||
|
|
||||||
// Teleport content element
|
|
||||||
const contentOwner = content.parentElement;
|
|
||||||
const contentContainer = modal.querySelector(".content");
|
|
||||||
contentContainer.append(content);
|
|
||||||
this.content = content;
|
|
||||||
this.contentOwner = contentOwner;
|
|
||||||
|
|
||||||
// Register close handlers
|
|
||||||
const modalOverlay = modal.querySelector(".modal-overlay");
|
|
||||||
const closeButton = modal.querySelector(".btn.close");
|
|
||||||
modalOverlay.addEventListener("click", this.onClose.bind(this));
|
modalOverlay.addEventListener("click", this.onClose.bind(this));
|
||||||
closeButton.addEventListener("click", this.onClose.bind(this));
|
closeButton.addEventListener("click", this.onClose.bind(this));
|
||||||
|
|
||||||
document.body.append(modal);
|
|
||||||
this.modal = modal;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
onClose() {
|
onClose() {
|
||||||
// Teleport content back
|
this.element.classList.add("closing");
|
||||||
this.contentOwner.append(this.content);
|
this.element.addEventListener("animationend", (event) => {
|
||||||
|
if (event.animationName === "fade-out") {
|
||||||
// Remove modal
|
this.element.remove();
|
||||||
this.modal.remove();
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,9 +1,10 @@
|
|||||||
import { registerBehavior } from "./index";
|
import { Behavior, registerBehavior } from "./index";
|
||||||
import TagAutoCompleteComponent from "../components/TagAutocomplete.svelte";
|
import TagAutoCompleteComponent from "../components/TagAutocomplete.svelte";
|
||||||
import { ApiClient } from "../api";
|
import { ApiClient } from "../api";
|
||||||
|
|
||||||
class TagAutocomplete {
|
class TagAutocomplete extends Behavior {
|
||||||
constructor(element) {
|
constructor(element) {
|
||||||
|
super(element);
|
||||||
const wrapper = document.createElement("div");
|
const wrapper = document.createElement("div");
|
||||||
const apiBaseUrl = document.documentElement.dataset.apiBaseUrl || "";
|
const apiBaseUrl = document.documentElement.dataset.apiBaseUrl || "";
|
||||||
const apiClient = new ApiClient(apiBaseUrl);
|
const apiClient = new ApiClient(apiBaseUrl);
|
||||||
|
@@ -258,4 +258,4 @@
|
|||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
@@ -150,19 +150,31 @@
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form-autocomplete-input {
|
||||||
|
box-sizing: border-box;
|
||||||
|
height: var(--control-size);
|
||||||
|
min-height: var(--control-size);
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-autocomplete-input input {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border: none;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.form-autocomplete.small .form-autocomplete-input {
|
.form-autocomplete.small .form-autocomplete-input {
|
||||||
height: 1.4rem;
|
height: var(--control-size-sm);
|
||||||
min-height: 1.4rem;
|
min-height: var(--control-size-sm);
|
||||||
padding: 0.05rem 0.3rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-autocomplete.small .form-autocomplete-input input {
|
.form-autocomplete.small .form-autocomplete-input input {
|
||||||
margin: 0;
|
padding: 0.05rem 0.3rem;
|
||||||
padding: 0;
|
font-size: var(--font-size-sm);
|
||||||
font-size: 0.7rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-autocomplete.small .menu .menu-item {
|
.form-autocomplete.small .menu .menu-item {
|
||||||
font-size: 0.7rem;
|
font-size: var(--font-size-sm);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@@ -1,16 +1,12 @@
|
|||||||
import TagAutoComplete from "./components/TagAutocomplete.svelte";
|
|
||||||
import SearchAutoComplete from "./components/SearchAutoComplete.svelte";
|
|
||||||
import { ApiClient } from "./api";
|
|
||||||
import "./behaviors/bookmark-page";
|
import "./behaviors/bookmark-page";
|
||||||
import "./behaviors/bulk-edit";
|
import "./behaviors/bulk-edit";
|
||||||
import "./behaviors/confirm-button";
|
import "./behaviors/confirm-button";
|
||||||
import "./behaviors/dropdown";
|
import "./behaviors/dropdown";
|
||||||
|
import "./behaviors/fetch";
|
||||||
|
import "./behaviors/form";
|
||||||
import "./behaviors/modal";
|
import "./behaviors/modal";
|
||||||
import "./behaviors/global-shortcuts";
|
import "./behaviors/global-shortcuts";
|
||||||
import "./behaviors/tag-autocomplete";
|
import "./behaviors/tag-autocomplete";
|
||||||
|
export { default as TagAutoComplete } from "./components/TagAutocomplete.svelte";
|
||||||
export default {
|
export { default as SearchAutoComplete } from "./components/SearchAutoComplete.svelte";
|
||||||
ApiClient,
|
export { ApiClient } from "./api";
|
||||||
TagAutoComplete,
|
|
||||||
SearchAutoComplete,
|
|
||||||
};
|
|
||||||
|
@@ -24,3 +24,8 @@ class Command(BaseCommand):
|
|||||||
source_db.close()
|
source_db.close()
|
||||||
|
|
||||||
self.stdout.write(self.style.SUCCESS(f"Backup created at {destination}"))
|
self.stdout.write(self.style.SUCCESS(f"Backup created at {destination}"))
|
||||||
|
self.stdout.write(
|
||||||
|
self.style.WARNING(
|
||||||
|
"This backup method is deprecated and may be removed in the future. Please use the full_backup command instead, which creates backup zip file with all contents of the data folder."
|
||||||
|
)
|
||||||
|
)
|
||||||
|
@@ -1,15 +0,0 @@
|
|||||||
from background_task.models import Task, CompletedTask
|
|
||||||
from django.core.management.base import BaseCommand
|
|
||||||
|
|
||||||
|
|
||||||
class Command(BaseCommand):
|
|
||||||
help = "Remove task locks and clear completed task history"
|
|
||||||
|
|
||||||
def handle(self, *args, **options):
|
|
||||||
# Remove task locks
|
|
||||||
# If the background task processor exited while executing tasks, these tasks would still be marked as locked,
|
|
||||||
# even though no process is working on them, and would prevent the task processor from picking the next task in
|
|
||||||
# the queue
|
|
||||||
Task.objects.all().update(locked_by=None, locked_at=None)
|
|
||||||
# Clear task history to prevent them from bloating the DB
|
|
||||||
CompletedTask.objects.all().delete()
|
|
62
bookmarks/management/commands/full_backup.py
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
import sqlite3
|
||||||
|
import os
|
||||||
|
import tempfile
|
||||||
|
import zipfile
|
||||||
|
|
||||||
|
from django.core.management.base import BaseCommand
|
||||||
|
|
||||||
|
|
||||||
|
class Command(BaseCommand):
|
||||||
|
help = "Creates a backup of the linkding data folder"
|
||||||
|
|
||||||
|
def add_arguments(self, parser):
|
||||||
|
parser.add_argument("backup_file", type=str, help="Backup zip file destination")
|
||||||
|
|
||||||
|
def handle(self, *args, **options):
|
||||||
|
backup_file = options["backup_file"]
|
||||||
|
with zipfile.ZipFile(backup_file, "w", zipfile.ZIP_DEFLATED) as zip_file:
|
||||||
|
# Backup the database
|
||||||
|
self.stdout.write("Create database backup...")
|
||||||
|
with tempfile.TemporaryDirectory() as temp_dir:
|
||||||
|
backup_db_file = os.path.join(temp_dir, "db.sqlite3")
|
||||||
|
self.backup_database(backup_db_file)
|
||||||
|
zip_file.write(backup_db_file, "db.sqlite3")
|
||||||
|
|
||||||
|
# Backup the assets folder
|
||||||
|
if not os.path.exists(os.path.join("data", "assets")):
|
||||||
|
self.stdout.write(
|
||||||
|
self.style.WARNING("No assets folder found. Skipping...")
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
self.stdout.write("Backup bookmark assets...")
|
||||||
|
assets_folder = os.path.join("data", "assets")
|
||||||
|
for root, _, files in os.walk(assets_folder):
|
||||||
|
for file in files:
|
||||||
|
file_path = os.path.join(root, file)
|
||||||
|
zip_file.write(file_path, os.path.join("assets", file))
|
||||||
|
|
||||||
|
# Backup the favicons folder
|
||||||
|
if not os.path.exists(os.path.join("data", "favicons")):
|
||||||
|
self.stdout.write(
|
||||||
|
self.style.WARNING("No favicons folder found. Skipping...")
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
self.stdout.write("Backup bookmark favicons...")
|
||||||
|
favicons_folder = os.path.join("data", "favicons")
|
||||||
|
for root, _, files in os.walk(favicons_folder):
|
||||||
|
for file in files:
|
||||||
|
file_path = os.path.join(root, file)
|
||||||
|
zip_file.write(file_path, os.path.join("favicons", file))
|
||||||
|
|
||||||
|
self.stdout.write(self.style.SUCCESS(f"Backup created at {backup_file}"))
|
||||||
|
|
||||||
|
def backup_database(self, backup_db_file):
|
||||||
|
def progress(status, remaining, total):
|
||||||
|
self.stdout.write(f"Copied {total-remaining} of {total} pages...")
|
||||||
|
|
||||||
|
source_db = sqlite3.connect(os.path.join("data", "db.sqlite3"))
|
||||||
|
backup_db = sqlite3.connect(backup_db_file)
|
||||||
|
with backup_db:
|
||||||
|
source_db.backup(backup_db, pages=50, progress=progress)
|
||||||
|
backup_db.close()
|
||||||
|
source_db.close()
|
75
bookmarks/management/commands/migrate_tasks.py
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
import json
|
||||||
|
import os
|
||||||
|
import sqlite3
|
||||||
|
import importlib
|
||||||
|
|
||||||
|
from django.core.management.base import BaseCommand
|
||||||
|
|
||||||
|
|
||||||
|
class Command(BaseCommand):
|
||||||
|
help = "Migrate tasks from django-background-tasks to Huey"
|
||||||
|
|
||||||
|
def handle(self, *args, **options):
|
||||||
|
db = sqlite3.connect(os.path.join("data", "db.sqlite3"))
|
||||||
|
|
||||||
|
# Check if background_task table exists
|
||||||
|
cursor = db.cursor()
|
||||||
|
cursor.execute(
|
||||||
|
"SELECT name FROM sqlite_master WHERE type='table' AND name='background_task'"
|
||||||
|
)
|
||||||
|
row = cursor.fetchone()
|
||||||
|
if not row:
|
||||||
|
self.stdout.write(
|
||||||
|
"Legacy task table does not exist. Skipping task migration"
|
||||||
|
)
|
||||||
|
return
|
||||||
|
|
||||||
|
# Load legacy tasks
|
||||||
|
cursor.execute("SELECT id, task_name, task_params FROM background_task")
|
||||||
|
legacy_tasks = cursor.fetchall()
|
||||||
|
|
||||||
|
if len(legacy_tasks) == 0:
|
||||||
|
self.stdout.write("No legacy tasks found. Skipping task migration")
|
||||||
|
return
|
||||||
|
|
||||||
|
self.stdout.write(
|
||||||
|
f"Found {len(legacy_tasks)} legacy tasks. Migrating to Huey..."
|
||||||
|
)
|
||||||
|
|
||||||
|
# Migrate tasks to Huey
|
||||||
|
succeeded_tasks = []
|
||||||
|
for task in legacy_tasks:
|
||||||
|
task_id = task[0]
|
||||||
|
task_name = task[1]
|
||||||
|
task_params_json = task[2]
|
||||||
|
try:
|
||||||
|
task_params = json.loads(task_params_json)
|
||||||
|
function_params = task_params[0]
|
||||||
|
|
||||||
|
# Resolve task function
|
||||||
|
module_name, func_name = task_name.rsplit(".", 1)
|
||||||
|
module = importlib.import_module(module_name)
|
||||||
|
func = getattr(module, func_name)
|
||||||
|
|
||||||
|
# Call task function
|
||||||
|
func(*function_params)
|
||||||
|
succeeded_tasks.append(task_id)
|
||||||
|
except Exception:
|
||||||
|
self.stderr.write(f"Error migrating task [{task_id}] {task_name}")
|
||||||
|
|
||||||
|
self.stdout.write(f"Migrated {len(succeeded_tasks)} tasks successfully")
|
||||||
|
|
||||||
|
# Clean up
|
||||||
|
try:
|
||||||
|
placeholders = ", ".join("?" for _ in succeeded_tasks)
|
||||||
|
sql = f"DELETE FROM background_task WHERE id IN ({placeholders})"
|
||||||
|
cursor.execute(sql, succeeded_tasks)
|
||||||
|
db.commit()
|
||||||
|
self.stdout.write(
|
||||||
|
f"Deleted {len(succeeded_tasks)} migrated tasks from legacy table"
|
||||||
|
)
|
||||||
|
except Exception:
|
||||||
|
self.stderr.write("Error cleaning up legacy tasks")
|
||||||
|
|
||||||
|
cursor.close()
|
||||||
|
db.close()
|
18
bookmarks/migrations/0026_userprofile_custom_css.py
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
# Generated by Django 5.0.2 on 2024-03-16 23:05
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("bookmarks", "0025_userprofile_search_preferences"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="userprofile",
|
||||||
|
name="custom_css",
|
||||||
|
field=models.TextField(blank=True),
|
||||||
|
),
|
||||||
|
]
|
@@ -0,0 +1,27 @@
|
|||||||
|
# Generated by Django 5.0.2 on 2024-03-23 21:48
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("bookmarks", "0026_userprofile_custom_css"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="userprofile",
|
||||||
|
name="bookmark_description_display",
|
||||||
|
field=models.CharField(
|
||||||
|
choices=[("inline", "Inline"), ("separate", "Separate")],
|
||||||
|
default="inline",
|
||||||
|
max_length=10,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="userprofile",
|
||||||
|
name="bookmark_description_max_lines",
|
||||||
|
field=models.IntegerField(default=1),
|
||||||
|
),
|
||||||
|
]
|
@@ -0,0 +1,33 @@
|
|||||||
|
# Generated by Django 5.0.2 on 2024-03-29 20:05
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("bookmarks", "0027_userprofile_bookmark_description_display_and_more"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="userprofile",
|
||||||
|
name="display_archive_bookmark_action",
|
||||||
|
field=models.BooleanField(default=True),
|
||||||
|
),
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="userprofile",
|
||||||
|
name="display_edit_bookmark_action",
|
||||||
|
field=models.BooleanField(default=True),
|
||||||
|
),
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="userprofile",
|
||||||
|
name="display_remove_bookmark_action",
|
||||||
|
field=models.BooleanField(default=True),
|
||||||
|
),
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="userprofile",
|
||||||
|
name="display_view_bookmark_action",
|
||||||
|
field=models.BooleanField(default=True),
|
||||||
|
),
|
||||||
|
]
|
34
bookmarks/migrations/0029_bookmark_list_actions_toast.py
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
# Generated by Django 5.0.2 on 2024-03-29 21:25
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
from django.contrib.auth import get_user_model
|
||||||
|
|
||||||
|
from bookmarks.models import Toast
|
||||||
|
|
||||||
|
User = get_user_model()
|
||||||
|
|
||||||
|
|
||||||
|
def forwards(apps, schema_editor):
|
||||||
|
|
||||||
|
for user in User.objects.all():
|
||||||
|
toast = Toast(
|
||||||
|
key="bookmark_list_actions_hint",
|
||||||
|
message="This version adds a new link to each bookmark to view details in a dialog. If you feel there is too much clutter you can now hide individual links in the settings.",
|
||||||
|
owner=user,
|
||||||
|
)
|
||||||
|
toast.save()
|
||||||
|
|
||||||
|
|
||||||
|
def reverse(apps, schema_editor):
|
||||||
|
Toast.objects.filter(key="bookmark_list_actions_hint").delete()
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("bookmarks", "0028_userprofile_display_archive_bookmark_action_and_more"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.RunPython(forwards, reverse),
|
||||||
|
]
|
43
bookmarks/migrations/0030_bookmarkasset.py
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
# Generated by Django 5.0.2 on 2024-03-31 08:21
|
||||||
|
|
||||||
|
import django.db.models.deletion
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("bookmarks", "0029_bookmark_list_actions_toast"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.CreateModel(
|
||||||
|
name="BookmarkAsset",
|
||||||
|
fields=[
|
||||||
|
(
|
||||||
|
"id",
|
||||||
|
models.AutoField(
|
||||||
|
auto_created=True,
|
||||||
|
primary_key=True,
|
||||||
|
serialize=False,
|
||||||
|
verbose_name="ID",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
("date_created", models.DateTimeField(auto_now_add=True)),
|
||||||
|
("file", models.CharField(blank=True, max_length=2048)),
|
||||||
|
("file_size", models.IntegerField(null=True)),
|
||||||
|
("asset_type", models.CharField(max_length=64)),
|
||||||
|
("content_type", models.CharField(max_length=128)),
|
||||||
|
("display_name", models.CharField(blank=True, max_length=2048)),
|
||||||
|
("status", models.CharField(max_length=64)),
|
||||||
|
("gzip", models.BooleanField(default=False)),
|
||||||
|
(
|
||||||
|
"bookmark",
|
||||||
|
models.ForeignKey(
|
||||||
|
on_delete=django.db.models.deletion.CASCADE,
|
||||||
|
to="bookmarks.bookmark",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
]
|
@@ -0,0 +1,18 @@
|
|||||||
|
# Generated by Django 5.0.2 on 2024-04-01 10:29
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("bookmarks", "0030_bookmarkasset"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="userprofile",
|
||||||
|
name="enable_automatic_html_snapshots",
|
||||||
|
field=models.BooleanField(default=True),
|
||||||
|
),
|
||||||
|
]
|
34
bookmarks/migrations/0032_html_snapshots_hint_toast.py
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
# Generated by Django 5.0.2 on 2024-04-01 12:17
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
from django.contrib.auth import get_user_model
|
||||||
|
|
||||||
|
from bookmarks.models import Toast
|
||||||
|
|
||||||
|
User = get_user_model()
|
||||||
|
|
||||||
|
|
||||||
|
def forwards(apps, schema_editor):
|
||||||
|
|
||||||
|
for user in User.objects.all():
|
||||||
|
toast = Toast(
|
||||||
|
key="html_snapshots_hint",
|
||||||
|
message="This version adds a new feature for archiving snapshots of websites locally. To use it, you need to switch to a different Docker image. See the installation instructions on GitHub for details.",
|
||||||
|
owner=user,
|
||||||
|
)
|
||||||
|
toast.save()
|
||||||
|
|
||||||
|
|
||||||
|
def reverse(apps, schema_editor):
|
||||||
|
Toast.objects.filter(key="bookmark_list_actions_hint").delete()
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("bookmarks", "0031_userprofile_enable_automatic_html_snapshots"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.RunPython(forwards, reverse),
|
||||||
|
]
|
@@ -1,18 +1,22 @@
|
|||||||
import binascii
|
import logging
|
||||||
import os
|
import os
|
||||||
from typing import List
|
from typing import List
|
||||||
|
|
||||||
|
import binascii
|
||||||
from django import forms
|
from django import forms
|
||||||
|
from django.conf import settings
|
||||||
from django.contrib.auth import get_user_model
|
from django.contrib.auth import get_user_model
|
||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.db.models.signals import post_save
|
from django.db.models.signals import post_save, post_delete
|
||||||
from django.dispatch import receiver
|
from django.dispatch import receiver
|
||||||
from django.http import QueryDict
|
from django.http import QueryDict
|
||||||
|
|
||||||
from bookmarks.utils import unique
|
from bookmarks.utils import unique
|
||||||
from bookmarks.validators import BookmarkURLValidator
|
from bookmarks.validators import BookmarkURLValidator
|
||||||
|
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class Tag(models.Model):
|
class Tag(models.Model):
|
||||||
name = models.CharField(max_length=64)
|
name = models.CharField(max_length=64)
|
||||||
@@ -85,6 +89,47 @@ class Bookmark(models.Model):
|
|||||||
return self.resolved_title + " (" + self.url[:30] + "...)"
|
return self.resolved_title + " (" + self.url[:30] + "...)"
|
||||||
|
|
||||||
|
|
||||||
|
class BookmarkAsset(models.Model):
|
||||||
|
TYPE_SNAPSHOT = "snapshot"
|
||||||
|
|
||||||
|
CONTENT_TYPE_HTML = "text/html"
|
||||||
|
|
||||||
|
STATUS_PENDING = "pending"
|
||||||
|
STATUS_COMPLETE = "complete"
|
||||||
|
STATUS_FAILURE = "failure"
|
||||||
|
|
||||||
|
bookmark = models.ForeignKey(Bookmark, on_delete=models.CASCADE)
|
||||||
|
date_created = models.DateTimeField(auto_now_add=True, null=False)
|
||||||
|
file = models.CharField(max_length=2048, blank=True, null=False)
|
||||||
|
file_size = models.IntegerField(null=True)
|
||||||
|
asset_type = models.CharField(max_length=64, blank=False, null=False)
|
||||||
|
content_type = models.CharField(max_length=128, blank=False, null=False)
|
||||||
|
display_name = models.CharField(max_length=2048, blank=True, null=False)
|
||||||
|
status = models.CharField(max_length=64, blank=False, null=False)
|
||||||
|
gzip = models.BooleanField(default=False, null=False)
|
||||||
|
|
||||||
|
def save(self, *args, **kwargs):
|
||||||
|
if self.file:
|
||||||
|
try:
|
||||||
|
file_path = os.path.join(settings.LD_ASSET_FOLDER, self.file)
|
||||||
|
if os.path.isfile(file_path):
|
||||||
|
self.file_size = os.path.getsize(file_path)
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
super().save(*args, **kwargs)
|
||||||
|
|
||||||
|
|
||||||
|
@receiver(post_delete, sender=BookmarkAsset)
|
||||||
|
def bookmark_asset_deleted(sender, instance, **kwargs):
|
||||||
|
if instance.file:
|
||||||
|
filepath = os.path.join(settings.LD_ASSET_FOLDER, instance.file)
|
||||||
|
if os.path.isfile(filepath):
|
||||||
|
try:
|
||||||
|
os.remove(filepath)
|
||||||
|
except Exception as error:
|
||||||
|
logger.error(f"Failed to delete asset file: {filepath}", exc_info=error)
|
||||||
|
|
||||||
|
|
||||||
class BookmarkForm(forms.ModelForm):
|
class BookmarkForm(forms.ModelForm):
|
||||||
# Use URLField for URL
|
# Use URLField for URL
|
||||||
url = forms.CharField(validators=[BookmarkURLValidator()])
|
url = forms.CharField(validators=[BookmarkURLValidator()])
|
||||||
@@ -278,6 +323,12 @@ class UserProfile(models.Model):
|
|||||||
(BOOKMARK_DATE_DISPLAY_ABSOLUTE, "Absolute"),
|
(BOOKMARK_DATE_DISPLAY_ABSOLUTE, "Absolute"),
|
||||||
(BOOKMARK_DATE_DISPLAY_HIDDEN, "Hidden"),
|
(BOOKMARK_DATE_DISPLAY_HIDDEN, "Hidden"),
|
||||||
]
|
]
|
||||||
|
BOOKMARK_DESCRIPTION_DISPLAY_INLINE = "inline"
|
||||||
|
BOOKMARK_DESCRIPTION_DISPLAY_SEPARATE = "separate"
|
||||||
|
BOOKMARK_DESCRIPTION_DISPLAY_CHOICES = [
|
||||||
|
(BOOKMARK_DESCRIPTION_DISPLAY_INLINE, "Inline"),
|
||||||
|
(BOOKMARK_DESCRIPTION_DISPLAY_SEPARATE, "Separate"),
|
||||||
|
]
|
||||||
BOOKMARK_LINK_TARGET_BLANK = "_blank"
|
BOOKMARK_LINK_TARGET_BLANK = "_blank"
|
||||||
BOOKMARK_LINK_TARGET_SELF = "_self"
|
BOOKMARK_LINK_TARGET_SELF = "_self"
|
||||||
BOOKMARK_LINK_TARGET_CHOICES = [
|
BOOKMARK_LINK_TARGET_CHOICES = [
|
||||||
@@ -308,6 +359,16 @@ class UserProfile(models.Model):
|
|||||||
blank=False,
|
blank=False,
|
||||||
default=BOOKMARK_DATE_DISPLAY_RELATIVE,
|
default=BOOKMARK_DATE_DISPLAY_RELATIVE,
|
||||||
)
|
)
|
||||||
|
bookmark_description_display = models.CharField(
|
||||||
|
max_length=10,
|
||||||
|
choices=BOOKMARK_DESCRIPTION_DISPLAY_CHOICES,
|
||||||
|
blank=False,
|
||||||
|
default=BOOKMARK_DESCRIPTION_DISPLAY_INLINE,
|
||||||
|
)
|
||||||
|
bookmark_description_max_lines = models.IntegerField(
|
||||||
|
null=False,
|
||||||
|
default=1,
|
||||||
|
)
|
||||||
bookmark_link_target = models.CharField(
|
bookmark_link_target = models.CharField(
|
||||||
max_length=10,
|
max_length=10,
|
||||||
choices=BOOKMARK_LINK_TARGET_CHOICES,
|
choices=BOOKMARK_LINK_TARGET_CHOICES,
|
||||||
@@ -330,8 +391,14 @@ class UserProfile(models.Model):
|
|||||||
enable_public_sharing = models.BooleanField(default=False, null=False)
|
enable_public_sharing = models.BooleanField(default=False, null=False)
|
||||||
enable_favicons = models.BooleanField(default=False, null=False)
|
enable_favicons = models.BooleanField(default=False, null=False)
|
||||||
display_url = models.BooleanField(default=False, null=False)
|
display_url = models.BooleanField(default=False, null=False)
|
||||||
|
display_view_bookmark_action = models.BooleanField(default=True, null=False)
|
||||||
|
display_edit_bookmark_action = models.BooleanField(default=True, null=False)
|
||||||
|
display_archive_bookmark_action = models.BooleanField(default=True, null=False)
|
||||||
|
display_remove_bookmark_action = models.BooleanField(default=True, null=False)
|
||||||
permanent_notes = models.BooleanField(default=False, null=False)
|
permanent_notes = models.BooleanField(default=False, null=False)
|
||||||
|
custom_css = models.TextField(blank=True, null=False)
|
||||||
search_preferences = models.JSONField(default=dict, null=False)
|
search_preferences = models.JSONField(default=dict, null=False)
|
||||||
|
enable_automatic_html_snapshots = models.BooleanField(default=True, null=False)
|
||||||
|
|
||||||
|
|
||||||
class UserProfileForm(forms.ModelForm):
|
class UserProfileForm(forms.ModelForm):
|
||||||
@@ -340,14 +407,22 @@ class UserProfileForm(forms.ModelForm):
|
|||||||
fields = [
|
fields = [
|
||||||
"theme",
|
"theme",
|
||||||
"bookmark_date_display",
|
"bookmark_date_display",
|
||||||
|
"bookmark_description_display",
|
||||||
|
"bookmark_description_max_lines",
|
||||||
"bookmark_link_target",
|
"bookmark_link_target",
|
||||||
"web_archive_integration",
|
"web_archive_integration",
|
||||||
"tag_search",
|
"tag_search",
|
||||||
"enable_sharing",
|
"enable_sharing",
|
||||||
"enable_public_sharing",
|
"enable_public_sharing",
|
||||||
"enable_favicons",
|
"enable_favicons",
|
||||||
|
"enable_automatic_html_snapshots",
|
||||||
"display_url",
|
"display_url",
|
||||||
|
"display_view_bookmark_action",
|
||||||
|
"display_edit_bookmark_action",
|
||||||
|
"display_archive_bookmark_action",
|
||||||
|
"display_remove_bookmark_action",
|
||||||
"permanent_notes",
|
"permanent_notes",
|
||||||
|
"custom_css",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@@ -34,6 +34,9 @@ def create_bookmark(bookmark: Bookmark, tag_string: str, current_user: User):
|
|||||||
tasks.create_web_archive_snapshot(current_user, bookmark, False)
|
tasks.create_web_archive_snapshot(current_user, bookmark, False)
|
||||||
# Load favicon
|
# Load favicon
|
||||||
tasks.load_favicon(current_user, bookmark)
|
tasks.load_favicon(current_user, bookmark)
|
||||||
|
# Create HTML snapshot
|
||||||
|
if current_user.profile.enable_automatic_html_snapshots:
|
||||||
|
tasks.create_html_snapshot(bookmark)
|
||||||
|
|
||||||
return bookmark
|
return bookmark
|
||||||
|
|
||||||
|
32
bookmarks/services/monolith.py
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
import gzip
|
||||||
|
import shutil
|
||||||
|
import subprocess
|
||||||
|
import os
|
||||||
|
|
||||||
|
from django.conf import settings
|
||||||
|
|
||||||
|
|
||||||
|
class MonolithError(Exception):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
# Monolith isn't used at the moment, as the local snapshot implementation
|
||||||
|
# switched to single-file after the prototype. Keeping this around in case
|
||||||
|
# it turns out to be useful in the future.
|
||||||
|
def create_snapshot(url: str, filepath: str):
|
||||||
|
monolith_path = settings.LD_MONOLITH_PATH
|
||||||
|
monolith_options = settings.LD_MONOLITH_OPTIONS
|
||||||
|
temp_filepath = filepath + ".tmp"
|
||||||
|
|
||||||
|
try:
|
||||||
|
command = f"{monolith_path} '{url}' {monolith_options} -o {temp_filepath}"
|
||||||
|
subprocess.run(command, check=True, shell=True)
|
||||||
|
|
||||||
|
with open(temp_filepath, "rb") as raw_file, gzip.open(
|
||||||
|
filepath, "wb"
|
||||||
|
) as gz_file:
|
||||||
|
shutil.copyfileobj(raw_file, gz_file)
|
||||||
|
|
||||||
|
os.remove(temp_filepath)
|
||||||
|
except subprocess.CalledProcessError as error:
|
||||||
|
raise MonolithError(f"Failed to create snapshot: {error.stderr}")
|
58
bookmarks/services/singlefile.py
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
import gzip
|
||||||
|
import logging
|
||||||
|
import os
|
||||||
|
import shlex
|
||||||
|
import shutil
|
||||||
|
import signal
|
||||||
|
import subprocess
|
||||||
|
|
||||||
|
from django.conf import settings
|
||||||
|
|
||||||
|
|
||||||
|
class SingeFileError(Exception):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
def create_snapshot(url: str, filepath: str):
|
||||||
|
singlefile_path = settings.LD_SINGLEFILE_PATH
|
||||||
|
# parse options to list of arguments
|
||||||
|
ublock_options = shlex.split(settings.LD_SINGLEFILE_UBLOCK_OPTIONS)
|
||||||
|
custom_options = shlex.split(settings.LD_SINGLEFILE_OPTIONS)
|
||||||
|
temp_filepath = filepath + ".tmp"
|
||||||
|
# concat lists
|
||||||
|
args = [singlefile_path] + ublock_options + custom_options + [url, temp_filepath]
|
||||||
|
try:
|
||||||
|
# Use start_new_session=True to create a new process group
|
||||||
|
process = subprocess.Popen(args, start_new_session=True)
|
||||||
|
process.wait(timeout=settings.LD_SINGLEFILE_TIMEOUT_SEC)
|
||||||
|
|
||||||
|
# check if the file was created
|
||||||
|
if not os.path.exists(temp_filepath):
|
||||||
|
raise SingeFileError("Failed to create snapshot")
|
||||||
|
|
||||||
|
with open(temp_filepath, "rb") as raw_file, gzip.open(
|
||||||
|
filepath, "wb"
|
||||||
|
) as gz_file:
|
||||||
|
shutil.copyfileobj(raw_file, gz_file)
|
||||||
|
|
||||||
|
os.remove(temp_filepath)
|
||||||
|
except subprocess.TimeoutExpired:
|
||||||
|
# First try to terminate properly
|
||||||
|
try:
|
||||||
|
logger.error(
|
||||||
|
"Timeout expired while creating snapshot. Terminating process..."
|
||||||
|
)
|
||||||
|
process.terminate()
|
||||||
|
process.wait(timeout=20)
|
||||||
|
raise SingeFileError("Timeout expired while creating snapshot")
|
||||||
|
except subprocess.TimeoutExpired:
|
||||||
|
# Kill the whole process group, which should also clean up any chromium
|
||||||
|
# processes spawned by single-file
|
||||||
|
logger.error("Timeout expired while terminating. Killing process...")
|
||||||
|
os.killpg(os.getpgid(process.pid), signal.SIGTERM)
|
||||||
|
raise SingeFileError("Timeout expired while creating snapshot")
|
||||||
|
except subprocess.CalledProcessError as error:
|
||||||
|
raise SingeFileError(f"Failed to create snapshot: {error.stderr}")
|
@@ -1,21 +1,55 @@
|
|||||||
|
import functools
|
||||||
import logging
|
import logging
|
||||||
|
import os
|
||||||
|
from typing import List
|
||||||
|
|
||||||
import waybackpy
|
import waybackpy
|
||||||
from background_task import background
|
|
||||||
from background_task.models import Task
|
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.contrib.auth import get_user_model
|
from django.contrib.auth import get_user_model
|
||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
|
from django.utils import timezone, formats
|
||||||
|
from huey import crontab
|
||||||
|
from huey.contrib.djhuey import HUEY as huey
|
||||||
|
from huey.exceptions import TaskLockedException
|
||||||
from waybackpy.exceptions import WaybackError, TooManyRequestsError, NoCDXRecordFound
|
from waybackpy.exceptions import WaybackError, TooManyRequestsError, NoCDXRecordFound
|
||||||
|
|
||||||
import bookmarks.services.wayback
|
import bookmarks.services.wayback
|
||||||
from bookmarks.models import Bookmark, UserProfile
|
from bookmarks.models import Bookmark, BookmarkAsset, UserProfile
|
||||||
from bookmarks.services import favicon_loader
|
from bookmarks.services import favicon_loader, singlefile
|
||||||
from bookmarks.services.website_loader import DEFAULT_USER_AGENT
|
from bookmarks.services.website_loader import DEFAULT_USER_AGENT
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
# Create custom decorator for Huey tasks that implements exponential backoff
|
||||||
|
# Taken from: https://huey.readthedocs.io/en/latest/guide.html#tips-and-tricks
|
||||||
|
# Retry 1: 60
|
||||||
|
# Retry 2: 240
|
||||||
|
# Retry 3: 960
|
||||||
|
# Retry 4: 3840
|
||||||
|
# Retry 5: 15360
|
||||||
|
def task(retries=5, retry_delay=15, retry_backoff=4):
|
||||||
|
def deco(fn):
|
||||||
|
@functools.wraps(fn)
|
||||||
|
def inner(*args, **kwargs):
|
||||||
|
task = kwargs.pop("task")
|
||||||
|
try:
|
||||||
|
return fn(*args, **kwargs)
|
||||||
|
except TaskLockedException as exc:
|
||||||
|
# Task locks are currently only used as workaround to enforce
|
||||||
|
# running specific types of tasks (e.g. singlefile snapshots)
|
||||||
|
# sequentially. In that case don't reduce the number of retries.
|
||||||
|
task.retries = retries
|
||||||
|
raise exc
|
||||||
|
except Exception as exc:
|
||||||
|
task.retry_delay *= retry_backoff
|
||||||
|
raise exc
|
||||||
|
|
||||||
|
return huey.task(retries=retries, retry_delay=retry_delay, context=True)(inner)
|
||||||
|
|
||||||
|
return deco
|
||||||
|
|
||||||
|
|
||||||
def is_web_archive_integration_active(user: User) -> bool:
|
def is_web_archive_integration_active(user: User) -> bool:
|
||||||
background_tasks_enabled = not settings.LD_DISABLE_BACKGROUND_TASKS
|
background_tasks_enabled = not settings.LD_DISABLE_BACKGROUND_TASKS
|
||||||
web_archive_integration_enabled = (
|
web_archive_integration_enabled = (
|
||||||
@@ -65,7 +99,7 @@ def _create_snapshot(bookmark: Bookmark):
|
|||||||
logger.info(f"Successfully created new snapshot for bookmark:. url={bookmark.url}")
|
logger.info(f"Successfully created new snapshot for bookmark:. url={bookmark.url}")
|
||||||
|
|
||||||
|
|
||||||
@background()
|
@task()
|
||||||
def _create_web_archive_snapshot_task(bookmark_id: int, force_update: bool):
|
def _create_web_archive_snapshot_task(bookmark_id: int, force_update: bool):
|
||||||
try:
|
try:
|
||||||
bookmark = Bookmark.objects.get(id=bookmark_id)
|
bookmark = Bookmark.objects.get(id=bookmark_id)
|
||||||
@@ -94,7 +128,7 @@ def _create_web_archive_snapshot_task(bookmark_id: int, force_update: bool):
|
|||||||
_load_newest_snapshot(bookmark)
|
_load_newest_snapshot(bookmark)
|
||||||
|
|
||||||
|
|
||||||
@background()
|
@task()
|
||||||
def _load_web_archive_snapshot_task(bookmark_id: int):
|
def _load_web_archive_snapshot_task(bookmark_id: int):
|
||||||
try:
|
try:
|
||||||
bookmark = Bookmark.objects.get(id=bookmark_id)
|
bookmark = Bookmark.objects.get(id=bookmark_id)
|
||||||
@@ -112,13 +146,14 @@ def schedule_bookmarks_without_snapshots(user: User):
|
|||||||
_schedule_bookmarks_without_snapshots_task(user.id)
|
_schedule_bookmarks_without_snapshots_task(user.id)
|
||||||
|
|
||||||
|
|
||||||
@background()
|
@task()
|
||||||
def _schedule_bookmarks_without_snapshots_task(user_id: int):
|
def _schedule_bookmarks_without_snapshots_task(user_id: int):
|
||||||
user = get_user_model().objects.get(id=user_id)
|
user = get_user_model().objects.get(id=user_id)
|
||||||
bookmarks_without_snapshots = Bookmark.objects.filter(
|
bookmarks_without_snapshots = Bookmark.objects.filter(
|
||||||
web_archive_snapshot_url__exact="", owner=user
|
web_archive_snapshot_url__exact="", owner=user
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# TODO: Implement bulk task creation
|
||||||
for bookmark in bookmarks_without_snapshots:
|
for bookmark in bookmarks_without_snapshots:
|
||||||
# To prevent rate limit errors from the Wayback API only try to load the latest snapshots instead of creating
|
# To prevent rate limit errors from the Wayback API only try to load the latest snapshots instead of creating
|
||||||
# new ones when processing bookmarks in bulk
|
# new ones when processing bookmarks in bulk
|
||||||
@@ -136,7 +171,7 @@ def load_favicon(user: User, bookmark: Bookmark):
|
|||||||
_load_favicon_task(bookmark.id)
|
_load_favicon_task(bookmark.id)
|
||||||
|
|
||||||
|
|
||||||
@background()
|
@task()
|
||||||
def _load_favicon_task(bookmark_id: int):
|
def _load_favicon_task(bookmark_id: int):
|
||||||
try:
|
try:
|
||||||
bookmark = Bookmark.objects.get(id=bookmark_id)
|
bookmark = Bookmark.objects.get(id=bookmark_id)
|
||||||
@@ -160,19 +195,15 @@ def schedule_bookmarks_without_favicons(user: User):
|
|||||||
_schedule_bookmarks_without_favicons_task(user.id)
|
_schedule_bookmarks_without_favicons_task(user.id)
|
||||||
|
|
||||||
|
|
||||||
@background()
|
@task()
|
||||||
def _schedule_bookmarks_without_favicons_task(user_id: int):
|
def _schedule_bookmarks_without_favicons_task(user_id: int):
|
||||||
user = get_user_model().objects.get(id=user_id)
|
user = get_user_model().objects.get(id=user_id)
|
||||||
bookmarks = Bookmark.objects.filter(favicon_file__exact="", owner=user)
|
bookmarks = Bookmark.objects.filter(favicon_file__exact="", owner=user)
|
||||||
tasks = []
|
|
||||||
|
|
||||||
|
# TODO: Implement bulk task creation
|
||||||
for bookmark in bookmarks:
|
for bookmark in bookmarks:
|
||||||
task = Task.objects.new_task(
|
_load_favicon_task(bookmark.id)
|
||||||
task_name="bookmarks.services.tasks._load_favicon_task", args=(bookmark.id,)
|
pass
|
||||||
)
|
|
||||||
tasks.append(task)
|
|
||||||
|
|
||||||
Task.objects.bulk_create(tasks)
|
|
||||||
|
|
||||||
|
|
||||||
def schedule_refresh_favicons(user: User):
|
def schedule_refresh_favicons(user: User):
|
||||||
@@ -180,16 +211,135 @@ def schedule_refresh_favicons(user: User):
|
|||||||
_schedule_refresh_favicons_task(user.id)
|
_schedule_refresh_favicons_task(user.id)
|
||||||
|
|
||||||
|
|
||||||
@background()
|
@task()
|
||||||
def _schedule_refresh_favicons_task(user_id: int):
|
def _schedule_refresh_favicons_task(user_id: int):
|
||||||
user = get_user_model().objects.get(id=user_id)
|
user = get_user_model().objects.get(id=user_id)
|
||||||
bookmarks = Bookmark.objects.filter(owner=user)
|
bookmarks = Bookmark.objects.filter(owner=user)
|
||||||
tasks = []
|
|
||||||
|
|
||||||
|
# TODO: Implement bulk task creation
|
||||||
for bookmark in bookmarks:
|
for bookmark in bookmarks:
|
||||||
task = Task.objects.new_task(
|
_load_favicon_task(bookmark.id)
|
||||||
task_name="bookmarks.services.tasks._load_favicon_task", args=(bookmark.id,)
|
|
||||||
)
|
|
||||||
tasks.append(task)
|
|
||||||
|
|
||||||
Task.objects.bulk_create(tasks)
|
|
||||||
|
def is_html_snapshot_feature_active() -> bool:
|
||||||
|
return settings.LD_ENABLE_SNAPSHOTS and not settings.LD_DISABLE_BACKGROUND_TASKS
|
||||||
|
|
||||||
|
|
||||||
|
def create_html_snapshot(bookmark: Bookmark):
|
||||||
|
if not is_html_snapshot_feature_active():
|
||||||
|
return
|
||||||
|
|
||||||
|
asset = _create_snapshot_asset(bookmark)
|
||||||
|
asset.save()
|
||||||
|
|
||||||
|
|
||||||
|
def create_html_snapshots(bookmark_list: List[Bookmark]):
|
||||||
|
if not is_html_snapshot_feature_active():
|
||||||
|
return
|
||||||
|
|
||||||
|
assets_to_create = []
|
||||||
|
for bookmark in bookmark_list:
|
||||||
|
asset = _create_snapshot_asset(bookmark)
|
||||||
|
assets_to_create.append(asset)
|
||||||
|
|
||||||
|
BookmarkAsset.objects.bulk_create(assets_to_create)
|
||||||
|
|
||||||
|
|
||||||
|
MAX_SNAPSHOT_FILENAME_LENGTH = 192
|
||||||
|
|
||||||
|
|
||||||
|
def _create_snapshot_asset(bookmark: Bookmark) -> BookmarkAsset:
|
||||||
|
timestamp = formats.date_format(timezone.now(), "SHORT_DATE_FORMAT")
|
||||||
|
asset = BookmarkAsset(
|
||||||
|
bookmark=bookmark,
|
||||||
|
asset_type=BookmarkAsset.TYPE_SNAPSHOT,
|
||||||
|
content_type="text/html",
|
||||||
|
display_name=f"HTML snapshot from {timestamp}",
|
||||||
|
status=BookmarkAsset.STATUS_PENDING,
|
||||||
|
)
|
||||||
|
return asset
|
||||||
|
|
||||||
|
|
||||||
|
def _generate_snapshot_filename(asset: BookmarkAsset) -> str:
|
||||||
|
def sanitize_char(char):
|
||||||
|
if char.isalnum() or char in ("-", "_", "."):
|
||||||
|
return char
|
||||||
|
else:
|
||||||
|
return "_"
|
||||||
|
|
||||||
|
formatted_datetime = asset.date_created.strftime("%Y-%m-%d_%H%M%S")
|
||||||
|
sanitized_url = "".join(sanitize_char(char) for char in asset.bookmark.url)
|
||||||
|
|
||||||
|
# Calculate the length of the non-URL parts of the filename
|
||||||
|
non_url_length = len(f"{asset.asset_type}{formatted_datetime}__.html.gz")
|
||||||
|
# Calculate the maximum length for the URL part
|
||||||
|
max_url_length = MAX_SNAPSHOT_FILENAME_LENGTH - non_url_length
|
||||||
|
# Truncate the URL if necessary
|
||||||
|
sanitized_url = sanitized_url[:max_url_length]
|
||||||
|
|
||||||
|
return f"{asset.asset_type}_{formatted_datetime}_{sanitized_url}.html.gz"
|
||||||
|
|
||||||
|
|
||||||
|
# singe-file does not support running multiple instances in parallel, so we can
|
||||||
|
# not queue up multiple snapshot tasks at once. Instead, schedule a periodic
|
||||||
|
# task that grabs a number of pending assets and creates snapshots for them in
|
||||||
|
# sequence. The task uses a lock to ensure that a new task isn't scheduled
|
||||||
|
# before the previous one has finished.
|
||||||
|
@huey.periodic_task(crontab(minute="*"))
|
||||||
|
@huey.lock_task("schedule-html-snapshots-lock")
|
||||||
|
def _schedule_html_snapshots_task():
|
||||||
|
# Get five pending assets
|
||||||
|
assets = BookmarkAsset.objects.filter(status=BookmarkAsset.STATUS_PENDING).order_by(
|
||||||
|
"date_created"
|
||||||
|
)[:5]
|
||||||
|
|
||||||
|
for asset in assets:
|
||||||
|
_create_html_snapshot_task(asset.id)
|
||||||
|
|
||||||
|
|
||||||
|
def _create_html_snapshot_task(asset_id: int):
|
||||||
|
try:
|
||||||
|
asset = BookmarkAsset.objects.get(id=asset_id)
|
||||||
|
except BookmarkAsset.DoesNotExist:
|
||||||
|
return
|
||||||
|
|
||||||
|
logger.info(f"Create HTML snapshot for bookmark. url={asset.bookmark.url}")
|
||||||
|
|
||||||
|
try:
|
||||||
|
filename = _generate_snapshot_filename(asset)
|
||||||
|
filepath = os.path.join(settings.LD_ASSET_FOLDER, filename)
|
||||||
|
singlefile.create_snapshot(asset.bookmark.url, filepath)
|
||||||
|
asset.status = BookmarkAsset.STATUS_COMPLETE
|
||||||
|
asset.file = filename
|
||||||
|
asset.gzip = True
|
||||||
|
asset.save()
|
||||||
|
logger.info(
|
||||||
|
f"Successfully created HTML snapshot for bookmark. url={asset.bookmark.url}"
|
||||||
|
)
|
||||||
|
except Exception as error:
|
||||||
|
logger.error(
|
||||||
|
f"Failed to HTML snapshot for bookmark. url={asset.bookmark.url}",
|
||||||
|
exc_info=error,
|
||||||
|
)
|
||||||
|
asset.status = BookmarkAsset.STATUS_FAILURE
|
||||||
|
asset.save()
|
||||||
|
|
||||||
|
|
||||||
|
def create_missing_html_snapshots(user: User) -> int:
|
||||||
|
if not is_html_snapshot_feature_active():
|
||||||
|
return 0
|
||||||
|
|
||||||
|
bookmarks_without_snapshots = Bookmark.objects.filter(owner=user).exclude(
|
||||||
|
bookmarkasset__asset_type=BookmarkAsset.TYPE_SNAPSHOT,
|
||||||
|
bookmarkasset__status__in=[
|
||||||
|
BookmarkAsset.STATUS_PENDING,
|
||||||
|
BookmarkAsset.STATUS_COMPLETE,
|
||||||
|
],
|
||||||
|
)
|
||||||
|
bookmarks_without_snapshots |= Bookmark.objects.filter(owner=user).exclude(
|
||||||
|
bookmarkasset__asset_type=BookmarkAsset.TYPE_SNAPSHOT
|
||||||
|
)
|
||||||
|
|
||||||
|
create_html_snapshots(list(bookmarks_without_snapshots))
|
||||||
|
|
||||||
|
return bookmarks_without_snapshots.count()
|
||||||
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 2.5 KiB |
BIN
bookmarks/static/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 12 KiB |
1
bookmarks/static/favicon.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.5" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><circle cx="255.0164" cy="254.9236" fill="#5856e0" r="224.78528" stroke-width="1.18"/><g fill="none" stroke="#fff" stroke-width="31.25"><path d="m1244.39 1293.95v199.64s-.81 67.89 74.9 68.88c75.98.99 74.88-68.88 74.88-68.88v-199.64" transform="matrix(.70710678 .70710678 -.70710678 .70710678 284.139117 -1684.198509)"/><path d="m1244.39 1293.95v199.64s-.81 67.89 74.9 68.88c75.98.99 74.88-68.88 74.88-68.88v-199.64" transform="matrix(-.70957074 -.70463421 .70463421 -.70957074 235.113139 2195.434643)"/></g></svg>
|
After Width: | Height: | Size: 663 B |
BIN
bookmarks/static/linkding-screenshot.png
Normal file
After Width: | Height: | Size: 184 KiB |
BIN
bookmarks/static/logo-192.png
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
bookmarks/static/logo-512.png
Normal file
After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 1.6 KiB |
1
bookmarks/static/logo.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg clip-rule="evenodd" fill-rule="evenodd" height="512" stroke-linejoin="round" stroke-miterlimit="1.5" viewBox="0 0 512 512" width="512" xmlns="http://www.w3.org/2000/svg"><circle cx="255.0164" cy="254.9236" fill="#5856e0" r="224.78528" stroke-width="1.18"/><g fill="none" stroke="#fff" stroke-width="31.25"><path d="m1244.39 1293.95v199.64s-.81 67.89 74.9 68.88c75.98.99 74.88-68.88 74.88-68.88v-199.64" transform="matrix(.70710678 .70710678 -.70710678 .70710678 284.139117 -1684.198509)"/><path d="m1244.39 1293.95v199.64s-.81 67.89 74.9 68.88c75.98.99 74.88-68.88 74.88-68.88v-199.64" transform="matrix(-.70957074 -.70463421 .70463421 -.70957074 235.113139 2195.434643)"/></g></svg>
|
After Width: | Height: | Size: 688 B |
BIN
bookmarks/static/maskable-logo-192.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
bookmarks/static/maskable-logo-512.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
1
bookmarks/static/maskable-logo.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg clip-rule="evenodd" fill-rule="evenodd" height="512" stroke-linejoin="round" stroke-miterlimit="1.5" width="512" xmlns="http://www.w3.org/2000/svg"><path d="m512 512h-512v-512h512" fill="#5856e0" fill-rule="nonzero" stroke-width=".293"/><g fill="none" stroke="#fff" stroke-width="31.25"><path d="m249.095 110.679-141.167 141.167s-48.578 47.432 4.257 101.668c53.026 54.426 101.654 4.242 101.654 4.242l141.166-141.166"/><path d="m263.892 400.446 140.673-141.659s48.412-47.602-4.612-101.652c-53.215-54.24-101.667-3.888-101.667-3.888l-140.674 141.659"/></g></svg>
|
After Width: | Height: | Size: 564 B |
1
bookmarks/static/safari-pinned-tab.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg height="700pt" preserveAspectRatio="xMidYMid meet" viewBox="0 0 700 700" width="700pt" xmlns="http://www.w3.org/2000/svg"><path d="m3210 6573c-780-79-1463-417-1985-983-444-481-716-1082-791-1750-18-160-18-490 0-650 80-713 380-1341 880-1842 492-494 1125-801 1822-883 150-18 512-21 654-5 407 44 737 142 1094 323 775 394 1350 1108 1571 1952 71 271 98 487 98 785-1 311-35 562-117 847-54 188-99 302-201 508-216 439-510 795-900 1090-441 335-992 550-1544 605-95 9-499 12-581 3zm-639-2228c-543-544-1003-1011-1020-1038-91-134-135-274-134-422 1-167 61-314 200-485 135-165 308-291 467-338 110-32 264-27 376 12 185 65 130 15 1233 1115l1007 1006 150-150c83-82 150-154 150-160s-442-452-982-992c-658-656-1010-1000-1064-1040-304-223-643-298-965-214-271 72-548 272-751 543-115 153-179 283-226 457-22 85-26 115-25 256 0 140 3 172 26 257 34 130 95 266 169 380 54 83 172 205 1067 1101l1006 1007 152-152 153-153zm2359 1051c242-44 461-167 675-381 282-281 415-567 415-890 0-119-17-230-51-336-32-101-123-277-188-363-54-71-2003-2046-2020-2046-11 0-301 281-301 292 0 6 435 449 967 985 533 536 986 998 1007 1027 53 70 121 216 140 303 30 136 14 277-48 416-65 147-245 351-396 449-211 137-403 161-617 79-162-63-173-73-1009-913-428-431-871-876-984-991-112-114-207-207-211-207s-75 67-160 148l-153 149 785 789c431 434 865 872 964 973 266 271 397 369 612 455 176 70 396 94 573 62z" transform="matrix(.1 0 0 -.1 0 700)"/></svg>
|
After Width: | Height: | Size: 1.4 KiB |
@@ -9,7 +9,7 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
margin-bottom: $unit-10;
|
margin-bottom: $unit-9;
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
width: 28px;
|
width: 28px;
|
||||||
@@ -50,14 +50,14 @@ section.content-area {
|
|||||||
border-bottom: solid 1px $border-color;
|
border-bottom: solid 1px $border-color;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
column-gap: $unit-6;
|
column-gap: $unit-5;
|
||||||
padding-bottom: $unit-2;
|
padding-bottom: $unit-1;
|
||||||
margin-bottom: $unit-4;
|
margin-bottom: $unit-3;
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
flex: 0 0 auto;
|
flex: 0 0 auto;
|
||||||
line-height: 1.8rem;
|
line-height: $unit-9;
|
||||||
margin-bottom: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-controls {
|
.header-controls {
|
||||||
@@ -95,10 +95,6 @@ span.confirmation {
|
|||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-sm {
|
|
||||||
font-size: 0.7rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-gray-dark {
|
.text-gray-dark {
|
||||||
color: $gray-color-dark;
|
color: $gray-color-dark;
|
||||||
}
|
}
|
||||||
@@ -124,10 +120,6 @@ span.confirmation {
|
|||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ml-auto {
|
|
||||||
margin-left: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn.btn-wide {
|
.btn.btn-wide {
|
||||||
padding-left: $unit-6;
|
padding-left: $unit-6;
|
||||||
padding-right: $unit-6;
|
padding-right: $unit-6;
|
||||||
|
126
bookmarks/styles/bookmark-details.scss
Normal file
@@ -0,0 +1,126 @@
|
|||||||
|
/* Common styles */
|
||||||
|
.bookmark-details {
|
||||||
|
h2 {
|
||||||
|
flex: 1 1 0;
|
||||||
|
align-items: flex-start;
|
||||||
|
font-size: 1rem;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.weblinks {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: $unit-2;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.weblink {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: $unit-2;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.weblink img, a.weblink svg {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
color: $body-font-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.weblink span {
|
||||||
|
flex: 1 1 0;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
dl {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.assets {
|
||||||
|
margin-top: $unit-2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.assets .asset {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: $unit-3;
|
||||||
|
padding: $unit-2 0;
|
||||||
|
border-top: $unit-o solid $border-color-light;
|
||||||
|
}
|
||||||
|
|
||||||
|
.assets .asset:last-child {
|
||||||
|
border-bottom: $unit-o solid $border-color-light;
|
||||||
|
}
|
||||||
|
|
||||||
|
.assets .asset-icon {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.assets .asset-text {
|
||||||
|
flex: 1 1 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.assets .asset-text .filesize {
|
||||||
|
color: $gray-color;
|
||||||
|
margin-left: $unit-2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.assets .asset-actions, .assets-actions {
|
||||||
|
display: flex;
|
||||||
|
gap: $unit-3;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.assets .asset-actions .btn, .assets-actions .btn {
|
||||||
|
height: unset;
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.assets-actions {
|
||||||
|
margin-top: $unit-2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tags a {
|
||||||
|
color: $alternative-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.status form {
|
||||||
|
display: flex;
|
||||||
|
gap: $unit-2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.status .form-group, .status .form-switch {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.actions {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Bookmark details view specific */
|
||||||
|
.bookmark-details.page {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: $unit-6;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Bookmark details modal specific */
|
||||||
|
.bookmark-details.modal {
|
||||||
|
.modal-header {
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
gap: $unit-2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-body {
|
||||||
|
padding-top: 0;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
@@ -1,11 +1,10 @@
|
|||||||
.bookmarks-page.grid {
|
.bookmarks-page.grid {
|
||||||
grid-gap: $unit-10;
|
grid-gap: $unit-9;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Bookmark area header controls */
|
/* Bookmark area header controls */
|
||||||
.bookmarks-page .content-area-header {
|
.bookmarks-page .content-area-header {
|
||||||
--searchbox-max-width: 350px;
|
--searchbox-max-width: 350px;
|
||||||
--searchbox-height: 1.8rem;
|
|
||||||
|
|
||||||
@media (max-width: $size-sm) {
|
@media (max-width: $size-sm) {
|
||||||
--searchbox-max-width: initial;
|
--searchbox-max-width: initial;
|
||||||
@@ -20,18 +19,18 @@
|
|||||||
|
|
||||||
// Regular input
|
// Regular input
|
||||||
input[type='search'] {
|
input[type='search'] {
|
||||||
height: var(--searchbox-height);
|
height: $control-size;
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Enhanced auto-complete input
|
// Enhanced auto-complete input
|
||||||
// This needs a bit more wrangling to make the CSS component align with the attached button
|
// This needs a bit more wrangling to make the CSS component align with the attached button
|
||||||
.form-autocomplete {
|
.form-autocomplete {
|
||||||
height: var(--searchbox-height);
|
height: $control-size;
|
||||||
|
|
||||||
.form-autocomplete-input {
|
.form-autocomplete-input {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: var(--searchbox-height);
|
height: $control-size;
|
||||||
|
|
||||||
input[type='search'] {
|
input[type='search'] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@@ -72,6 +71,7 @@
|
|||||||
.menu {
|
.menu {
|
||||||
padding: $unit-4;
|
padding: $unit-4;
|
||||||
min-width: 250px;
|
min-width: 250px;
|
||||||
|
font-size: $font-size-sm;
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu .actions {
|
.menu .actions {
|
||||||
@@ -82,9 +82,11 @@
|
|||||||
|
|
||||||
.radio-group {
|
.radio-group {
|
||||||
margin-bottom: $unit-1;
|
margin-bottom: $unit-1;
|
||||||
|
|
||||||
.form-label {
|
.form-label {
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-radio.form-inline {
|
.form-radio.form-inline {
|
||||||
margin: 0 $unit-2 0 0;
|
margin: 0 $unit-2 0 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@@ -92,6 +94,7 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
column-gap: $unit-1;
|
column-gap: $unit-1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-icon {
|
.form-icon {
|
||||||
top: 0;
|
top: 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
@@ -105,6 +108,9 @@ ul.bookmark-list {
|
|||||||
list-style: none;
|
list-style: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
|
/* Increase line-height for better separation within / between items */
|
||||||
|
line-height: 1.1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes appear {
|
@keyframes appear {
|
||||||
@@ -122,59 +128,81 @@ ul.bookmark-list {
|
|||||||
/* Bookmarks */
|
/* Bookmarks */
|
||||||
li[ld-bookmark-item] {
|
li[ld-bookmark-item] {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
margin-top: $unit-2;
|
||||||
|
|
||||||
[ld-bulk-edit-checkbox].form-checkbox {
|
.form-checkbox.bulk-edit-checkbox {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title img {
|
||||||
|
position: absolute;
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
left: 0;
|
||||||
|
top: 50%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title img + a {
|
||||||
|
padding-left: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
.title a {
|
.title a {
|
||||||
display: inline-block;
|
display: block;
|
||||||
vertical-align: top;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
&[data-tooltip]:hover::after, &[data-tooltip]:focus::after {
|
.title a[data-tooltip]:hover::after, .title a[data-tooltip]:focus::after {
|
||||||
content: attr(data-tooltip);
|
content: attr(data-tooltip);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
top: 20px;
|
top: 100%;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
transform: translateX(-50%);
|
transform: translateX(-50%);
|
||||||
width: max-content;
|
width: max-content;
|
||||||
max-width: 100%;
|
max-width: 90%;
|
||||||
height: fit-content;
|
height: fit-content;
|
||||||
background-color: #292f62;
|
background-color: #292f62;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
padding: $unit-1;
|
padding: $unit-1;
|
||||||
border-radius: $border-radius;
|
border-radius: $border-radius;
|
||||||
border: 1px solid #424a8c;
|
border: 1px solid #424a8c;
|
||||||
font-size: $font-size-sm;
|
font-size: $font-size-sm;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
animation: 0.3s ease 0s appear;
|
pointer-events: none;
|
||||||
}
|
animation: 0.3s ease 0s appear;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.unread .title a {
|
&.unread .title a {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title img {
|
.url-path, .url-display {
|
||||||
width: 16px;
|
font-size: $font-size-sm;
|
||||||
height: 16px;
|
|
||||||
margin-right: $unit-h;
|
|
||||||
vertical-align: text-top;
|
|
||||||
}
|
|
||||||
|
|
||||||
.url-display {
|
|
||||||
color: $secondary-link-color;
|
color: $secondary-link-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.description {
|
.description {
|
||||||
color: $gray-color-dark;
|
color: $gray-color-dark;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description.separate {
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-line-clamp: var(--ld-bookmark-description-max-lines, 1);
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tags {
|
||||||
a, a:visited:hover {
|
a, a:visited:hover {
|
||||||
color: $alternative-color;
|
color: $alternative-color;
|
||||||
}
|
}
|
||||||
@@ -195,6 +223,8 @@ li[ld-bookmark-item] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.actions {
|
.actions {
|
||||||
|
font-size: $font-size-sm;
|
||||||
|
|
||||||
a, button.btn-link {
|
a, button.btn-link {
|
||||||
color: $gray-color;
|
color: $gray-color;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@@ -211,10 +241,6 @@ li[ld-bookmark-item] {
|
|||||||
color: $gray-color-dark;
|
color: $gray-color-dark;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.separator {
|
|
||||||
align-self: flex-start;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -223,6 +249,8 @@ li[ld-bookmark-item] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.tag-cloud {
|
.tag-cloud {
|
||||||
|
/* Increase line-height for better separation within / between items */
|
||||||
|
line-height: 1.1rem;
|
||||||
|
|
||||||
.selected-tags {
|
.selected-tags {
|
||||||
margin-bottom: $unit-4;
|
margin-bottom: $unit-4;
|
||||||
@@ -258,55 +286,13 @@ ul.bookmark-list {
|
|||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.show-notes .notes,
|
.notes .markdown {
|
||||||
li.show-notes .notes {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Bookmark notes markdown styles */
|
|
||||||
ul.bookmark-list .notes-content {
|
|
||||||
& {
|
|
||||||
padding: $unit-2 $unit-3;
|
padding: $unit-2 $unit-3;
|
||||||
}
|
}
|
||||||
|
|
||||||
p, ul, ol, pre, blockquote {
|
&.show-notes .notes,
|
||||||
margin: 0 0 $unit-2 0;
|
li.show-notes .notes {
|
||||||
}
|
display: block;
|
||||||
|
|
||||||
> *:first-child {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
> *:last-child {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul, ol {
|
|
||||||
margin-left: $unit-4;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul li, ol li {
|
|
||||||
margin-top: $unit-1;
|
|
||||||
}
|
|
||||||
|
|
||||||
pre {
|
|
||||||
padding: $unit-1 $unit-2;
|
|
||||||
background-color: $code-bg-color;
|
|
||||||
border-radius: $unit-1;
|
|
||||||
overflow-x: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
pre code {
|
|
||||||
background: none;
|
|
||||||
box-shadow: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
> pre:first-child:last-child {
|
|
||||||
padding: 0;
|
|
||||||
background: none;
|
|
||||||
border-radius: 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -320,7 +306,7 @@ $bulk-edit-transition-duration: 400ms;
|
|||||||
.bulk-edit-bar {
|
.bulk-edit-bar {
|
||||||
margin-top: -1px;
|
margin-top: -1px;
|
||||||
margin-left: -$bulk-edit-bar-offset;
|
margin-left: -$bulk-edit-bar-offset;
|
||||||
margin-bottom: $unit-4;
|
margin-bottom: $unit-3;
|
||||||
max-height: 0;
|
max-height: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
transition: max-height $bulk-edit-transition-duration;
|
transition: max-height $bulk-edit-transition-duration;
|
||||||
@@ -337,21 +323,22 @@ $bulk-edit-transition-duration: 400ms;
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* All checkbox */
|
/* All checkbox */
|
||||||
[ld-bulk-edit-checkbox][all].form-checkbox {
|
.form-checkbox.bulk-edit-checkbox.all {
|
||||||
display: block;
|
display: block;
|
||||||
width: $bulk-edit-toggle-width;
|
width: $bulk-edit-toggle-width;
|
||||||
margin: 0 0 0 $bulk-edit-toggle-offset;
|
margin: 0 0 0 $bulk-edit-toggle-offset;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
min-height: 1rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Bookmark checkboxes */
|
/* Bookmark checkboxes */
|
||||||
li[ld-bookmark-item] [ld-bulk-edit-checkbox].form-checkbox {
|
li[ld-bookmark-item] .form-checkbox.bulk-edit-checkbox {
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: $bulk-edit-toggle-width;
|
width: $bulk-edit-toggle-width;
|
||||||
|
min-height: $bulk-edit-toggle-width;
|
||||||
left: -$bulk-edit-toggle-width - $bulk-edit-toggle-offset;
|
left: -$bulk-edit-toggle-width - $bulk-edit-toggle-offset;
|
||||||
top: 0;
|
top: 50%;
|
||||||
|
transform: translateY(-50%);
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
@@ -359,11 +346,11 @@ $bulk-edit-transition-duration: 400ms;
|
|||||||
transition: all $bulk-edit-transition-duration;
|
transition: all $bulk-edit-transition-duration;
|
||||||
|
|
||||||
.form-icon {
|
.form-icon {
|
||||||
top: $unit-1;
|
top: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.active li[ld-bookmark-item] [ld-bulk-edit-checkbox].form-checkbox {
|
&.active li[ld-bookmark-item] .form-checkbox.bulk-edit-checkbox {
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
@@ -371,7 +358,7 @@ $bulk-edit-transition-duration: 400ms;
|
|||||||
/* Actions */
|
/* Actions */
|
||||||
.bulk-edit-actions {
|
.bulk-edit-actions {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: baseline;
|
align-items: center;
|
||||||
padding: $unit-1 0;
|
padding: $unit-1 0;
|
||||||
border-top: solid 1px $border-color;
|
border-top: solid 1px $border-color;
|
||||||
gap: $unit-2;
|
gap: $unit-2;
|
||||||
|
40
bookmarks/styles/markdown.scss
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
.markdown {
|
||||||
|
p, ul, ol, pre, blockquote {
|
||||||
|
margin: 0 0 $unit-2 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
> *:first-child {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
> *:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul, ol {
|
||||||
|
margin-left: $unit-4;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul li, ol li {
|
||||||
|
margin-top: $unit-1;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
padding: $unit-1 $unit-2;
|
||||||
|
background-color: $code-bg-color;
|
||||||
|
border-radius: $unit-1;
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre code {
|
||||||
|
background: none;
|
||||||
|
box-shadow: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
> pre:first-child:last-child {
|
||||||
|
padding: 0;
|
||||||
|
background: none;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
}
|
@@ -37,6 +37,14 @@
|
|||||||
min-width: 0;
|
min-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.columns-2 {
|
||||||
|
--grid-columns: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gap-0 {
|
||||||
|
gap: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.col-1 {
|
.col-1 {
|
||||||
grid-column: unquote("span min(1, var(--grid-columns))");
|
grid-column: unquote("span min(1, var(--grid-columns))");
|
||||||
}
|
}
|
||||||
|
@@ -1,12 +1,16 @@
|
|||||||
.settings-page {
|
.settings-page {
|
||||||
section.content-area {
|
section.content-area {
|
||||||
margin-bottom: $unit-12;
|
margin-bottom: $unit-10;
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
margin-bottom: $unit-4;
|
margin-bottom: $unit-3;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
textarea.custom-css {
|
||||||
|
font-family: monospace;
|
||||||
|
}
|
||||||
|
|
||||||
.input-group > input[type=submit] {
|
.input-group > input[type=submit] {
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
@@ -3,6 +3,32 @@
|
|||||||
|
|
||||||
// Variables and mixins
|
// Variables and mixins
|
||||||
@import "../../node_modules/spectre.css/src/variables";
|
@import "../../node_modules/spectre.css/src/variables";
|
||||||
|
|
||||||
|
// Customize variables to reduce font and control sizes
|
||||||
|
|
||||||
|
// Can use CSS variables for font sizes, as they are not used in SCSS calculations
|
||||||
|
$font-size: var(--font-size);
|
||||||
|
$font-size-sm: var(--font-size-sm);
|
||||||
|
$font-size-lg: var(--font-size-lg);
|
||||||
|
|
||||||
|
// Can't use CSS variables for these, used in SCSS calculations
|
||||||
|
$line-height: 1rem;
|
||||||
|
$control-size: $unit-8;
|
||||||
|
$control-size-sm: $unit-6;
|
||||||
|
$control-size-lg: $unit-9;
|
||||||
|
|
||||||
|
// Declare defaults for CSS variables, expose SCSS variables as CSS variables
|
||||||
|
html {
|
||||||
|
--font-size: 0.7rem;
|
||||||
|
--font-size-sm: 0.65rem;
|
||||||
|
--font-size-lg: 0.8rem;
|
||||||
|
|
||||||
|
--control-size: #{$control-size};
|
||||||
|
--control-size-sm: #{$control-size-sm};
|
||||||
|
--control-size-lg: #{$control-size-lg};
|
||||||
|
}
|
||||||
|
|
||||||
|
// Mixins
|
||||||
@import "../../node_modules/spectre.css/src/mixins";
|
@import "../../node_modules/spectre.css/src/mixins";
|
||||||
|
|
||||||
/*! Spectre.css v#{$version} | MIT License | github.com/picturepan2/spectre */
|
/*! Spectre.css v#{$version} | MIT License | github.com/picturepan2/spectre */
|
||||||
@@ -64,19 +90,6 @@ a:visited:hover {
|
|||||||
transition: none !important;
|
transition: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fix radio button sub-pixel size
|
|
||||||
.form-radio .form-icon {
|
|
||||||
width: 14px;
|
|
||||||
height: 14px;
|
|
||||||
border-width: 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-radio input:checked + .form-icon::before {
|
|
||||||
top: 3px;
|
|
||||||
left: 3px;
|
|
||||||
transform: unset;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Make code work with light and dark theme
|
// Make code work with light and dark theme
|
||||||
code {
|
code {
|
||||||
color: $gray-color-dark;
|
color: $gray-color-dark;
|
||||||
@@ -127,6 +140,53 @@ ul.menu li:first-child {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Customize modal animation
|
||||||
|
@keyframes fade-in {
|
||||||
|
0% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes fade-out {
|
||||||
|
0% {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal.active .modal-container, .modal.active .modal-overlay {
|
||||||
|
animation: fade-in .15s ease 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal.active.closing .modal-container, .modal.active.closing .modal-overlay {
|
||||||
|
animation: fade-out .15s ease 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Customize menu animation
|
||||||
|
.dropdown .menu {
|
||||||
|
animation: fade-in .15s ease 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Modal close button
|
||||||
|
.modal .modal-header button.close {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
padding: 0;
|
||||||
|
line-height: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
opacity: .85;
|
||||||
|
color: $gray-color-dark;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Increase input font size on small viewports to prevent zooming on focus the input
|
// Increase input font size on small viewports to prevent zooming on focus the input
|
||||||
// on mobile devices. 430px relates to the "normalized" iPhone 14 Pro Max
|
// on mobile devices. 430px relates to the "normalized" iPhone 14 Pro Max
|
||||||
// viewport size
|
// viewport size
|
||||||
|
@@ -7,9 +7,11 @@
|
|||||||
// Import style modules
|
// Import style modules
|
||||||
@import "base";
|
@import "base";
|
||||||
@import "responsive";
|
@import "responsive";
|
||||||
|
@import "bookmark-details";
|
||||||
@import "bookmark-page";
|
@import "bookmark-page";
|
||||||
@import "bookmark-form";
|
@import "bookmark-form";
|
||||||
@import "settings";
|
@import "settings";
|
||||||
|
@import "markdown";
|
||||||
|
|
||||||
/* Dark theme overrides */
|
/* Dark theme overrides */
|
||||||
|
|
||||||
@@ -40,8 +42,17 @@ a:focus, .btn:focus {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.form-checkbox input:checked + .form-icon, .form-radio input:checked + .form-icon, .form-switch input:checked + .form-icon {
|
.form-checkbox input:checked + .form-icon, .form-radio input:checked + .form-icon, .form-switch input:checked + .form-icon {
|
||||||
background: $dt-primary-button-color;
|
background: $dt-primary-input-color;
|
||||||
border-color: $dt-primary-button-color;
|
border-color: $dt-primary-input-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-switch .form-icon::before, .form-switch input:active + .form-icon::before {
|
||||||
|
background: $light-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-switch input:checked + .form-icon {
|
||||||
|
background: $dt-primary-input-color;
|
||||||
|
border-color: $dt-primary-input-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-radio input:checked + .form-icon::before {
|
.form-radio input:checked + .form-icon::before {
|
||||||
|
@@ -7,6 +7,8 @@
|
|||||||
// Import style modules
|
// Import style modules
|
||||||
@import "base";
|
@import "base";
|
||||||
@import "responsive";
|
@import "responsive";
|
||||||
|
@import "bookmark-details";
|
||||||
@import "bookmark-page";
|
@import "bookmark-page";
|
||||||
@import "bookmark-form";
|
@import "bookmark-form";
|
||||||
@import "settings";
|
@import "settings";
|
||||||
|
@import "markdown";
|
||||||
|
@@ -1,5 +1,3 @@
|
|||||||
$html-font-size: 18px !default;
|
|
||||||
|
|
||||||
$body-bg: #161822 !default;
|
$body-bg: #161822 !default;
|
||||||
$bg-color: lighten($body-bg, 5%) !default;
|
$bg-color: lighten($body-bg, 5%) !default;
|
||||||
$bg-color-light: lighten($body-bg, 5%) !default;
|
$bg-color-light: lighten($body-bg, 5%) !default;
|
||||||
@@ -30,4 +28,5 @@ $code-bg-color: rgba(255, 255, 255, 0.1);
|
|||||||
$code-shadow-color: rgba(255, 255, 255, 0.2);
|
$code-shadow-color: rgba(255, 255, 255, 0.2);
|
||||||
|
|
||||||
/* Dark theme specific */
|
/* Dark theme specific */
|
||||||
|
$dt-primary-input-color: #5C68E7 !default;
|
||||||
$dt-primary-button-color: #5761cb !default;
|
$dt-primary-button-color: #5761cb !default;
|
||||||
|
@@ -1,5 +1,3 @@
|
|||||||
$html-font-size: 18px !default;
|
|
||||||
|
|
||||||
$alternative-color: #05a6a3;
|
$alternative-color: #05a6a3;
|
||||||
$alternative-color-dark: darken($alternative-color, 5%);
|
$alternative-color-dark: darken($alternative-color, 5%);
|
||||||
|
|
||||||
|
2
bookmarks/tasks.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# Expose task modules to Huey Django extension
|
||||||
|
import bookmarks.services.tasks
|
39
bookmarks/templates/admin/background_tasks.html
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
{% extends "admin/base_site.html" %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<table style="width: 100%">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>ID</th>
|
||||||
|
<th>Name</th>
|
||||||
|
<th>Args</th>
|
||||||
|
<th>Retries</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{% for task in tasks %}
|
||||||
|
<tr>
|
||||||
|
<td>{{ task.id }}</td>
|
||||||
|
<td>{{ task.name }}</td>
|
||||||
|
<td>{{ task.args }}</td>
|
||||||
|
<td>{{ task.retries }}</td>
|
||||||
|
</tr>
|
||||||
|
{% endfor %}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<p class="paginator">
|
||||||
|
{% if page.paginator.num_pages > 1 %}
|
||||||
|
{% for page_number in page_range %}
|
||||||
|
{% if page_number == page.number %}
|
||||||
|
<span class="this-page">{{ page_number }}</span>
|
||||||
|
{% elif page_number == '…' %}
|
||||||
|
<span>…</span>
|
||||||
|
{% else %}
|
||||||
|
<a href="?p={{ page_number }}">{{ page_number }}</a>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
{% endif %}
|
||||||
|
{{ page.paginator.count }} tasks
|
||||||
|
</p>
|
||||||
|
{% endblock %}
|
@@ -4,11 +4,7 @@
|
|||||||
{% load bookmarks %}
|
{% load bookmarks %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="bookmarks-page grid columns-md-1"
|
<div ld-bulk-edit class="bookmarks-page grid columns-md-1">
|
||||||
ld-bulk-edit
|
|
||||||
ld-bookmark-page
|
|
||||||
bookmarks-url="{% url 'bookmarks:partials.bookmark_list.archived' %}"
|
|
||||||
tags-url="{% url 'bookmarks:partials.tag_cloud.archived' %}">
|
|
||||||
|
|
||||||
{# Bookmark list #}
|
{# Bookmark list #}
|
||||||
<section class="content-area col-2">
|
<section class="content-area col-2">
|
||||||
@@ -17,17 +13,22 @@
|
|||||||
<div class="header-controls">
|
<div class="header-controls">
|
||||||
{% bookmark_search bookmark_list.search tag_cloud.tags mode='archived' %}
|
{% bookmark_search bookmark_list.search tag_cloud.tags mode='archived' %}
|
||||||
{% include 'bookmarks/bulk_edit/toggle.html' %}
|
{% include 'bookmarks/bulk_edit/toggle.html' %}
|
||||||
<button ld-modal modal-content=".tag-cloud" class="btn ml-2 show-md">Tags</button>
|
<button ld-fetch="{{ bookmark_list.tag_modal_url }}" ld-target="body|append" ld-on="click"
|
||||||
|
class="btn ml-2 show-md">Tags
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form class="bookmark-actions"
|
<form ld-form ld-fire="refresh-bookmark-list,refresh-tag-cloud"
|
||||||
|
class="bookmark-actions"
|
||||||
action="{{ bookmark_list.action_url|safe }}"
|
action="{{ bookmark_list.action_url|safe }}"
|
||||||
method="post" autocomplete="off">
|
method="post" autocomplete="off">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
{% include 'bookmarks/bulk_edit/bar.html' with disable_actions='bulk_archive' %}
|
{% include 'bookmarks/bulk_edit/bar.html' with disable_actions='bulk_archive' %}
|
||||||
|
|
||||||
<div class="bookmark-list-container">
|
<div ld-fetch="{{ bookmark_list.refresh_url }}" ld-on="refresh-bookmark-list"
|
||||||
|
ld-fire="refresh-bookmark-list-done"
|
||||||
|
class="bookmark-list-container">
|
||||||
{% include 'bookmarks/bookmark_list.html' %}
|
{% include 'bookmarks/bookmark_list.html' %}
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
@@ -38,7 +39,8 @@
|
|||||||
<div class="content-area-header">
|
<div class="content-area-header">
|
||||||
<h2>Tags</h2>
|
<h2>Tags</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="tag-cloud-container">
|
<div ld-fetch="{{ tag_cloud.refresh_url }}" ld-on="refresh-tag-cloud"
|
||||||
|
class="tag-cloud-container">
|
||||||
{% include 'bookmarks/tag_cloud.html' %}
|
{% include 'bookmarks/tag_cloud.html' %}
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
@@ -6,50 +6,66 @@
|
|||||||
{% include 'bookmarks/empty_bookmarks.html' %}
|
{% include 'bookmarks/empty_bookmarks.html' %}
|
||||||
{% else %}
|
{% else %}
|
||||||
<ul class="bookmark-list{% if bookmark_list.show_notes %} show-notes{% endif %}"
|
<ul class="bookmark-list{% if bookmark_list.show_notes %} show-notes{% endif %}"
|
||||||
|
style="--ld-bookmark-description-max-lines:{{ bookmark_list.description_max_lines }};"
|
||||||
data-bookmarks-total="{{ bookmark_list.bookmarks_total }}">
|
data-bookmarks-total="{{ bookmark_list.bookmarks_total }}">
|
||||||
{% for bookmark_item in bookmark_list.items %}
|
{% for bookmark_item in bookmark_list.items %}
|
||||||
<li ld-bookmark-item{% if bookmark_item.css_classes %} class="{{ bookmark_item.css_classes }}"{% endif %}>
|
<li ld-bookmark-item{% if bookmark_item.css_classes %} class="{{ bookmark_item.css_classes }}"{% endif %}>
|
||||||
<label ld-bulk-edit-checkbox class="form-checkbox">
|
|
||||||
<input type="checkbox" name="bookmark_id" value="{{ bookmark_item.id }}">
|
|
||||||
<i class="form-icon"></i>
|
|
||||||
</label>
|
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<a href="{{ bookmark_item.url }}" target="{{ bookmark_list.link_target }}" rel="noopener" >
|
<label class="form-checkbox bulk-edit-checkbox">
|
||||||
{% if bookmark_item.favicon_file and bookmark_list.show_favicons %}
|
<input type="checkbox" name="bookmark_id" value="{{ bookmark_item.id }}">
|
||||||
<img src="{% static bookmark_item.favicon_file %}" alt="">
|
<i class="form-icon"></i>
|
||||||
{% endif %}
|
</label>
|
||||||
<span>{{ bookmark_item.title }}</span>
|
{% if bookmark_item.favicon_file and bookmark_list.show_favicons %}
|
||||||
|
<img src="{% static bookmark_item.favicon_file %}" alt="">
|
||||||
|
{% endif %}
|
||||||
|
<a href="{{ bookmark_item.url }}" target="{{ bookmark_list.link_target }}" rel="noopener">
|
||||||
|
<span>{{ bookmark_item.title }}</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
{% if bookmark_list.show_url %}
|
{% if bookmark_list.show_url %}
|
||||||
<div class="url-path truncate">
|
<div class="url-path truncate">
|
||||||
<a href="{{ bookmark_item.url }}" target="{{ bookmark_list.link_target }}" rel="noopener"
|
<a href="{{ bookmark_item.url }}" target="{{ bookmark_list.link_target }}" rel="noopener"
|
||||||
class="url-display text-sm">
|
class="url-display">
|
||||||
{{ bookmark_item.url }}
|
{{ bookmark_item.url }}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="description truncate">
|
{% if bookmark_list.description_display == 'inline' %}
|
||||||
|
<div class="description inline truncate">
|
||||||
|
{% if bookmark_item.tag_names %}
|
||||||
|
<span class="tags">
|
||||||
|
{% for tag_name in bookmark_item.tag_names %}
|
||||||
|
<a href="?{% add_tag_to_query tag_name %}">{{ tag_name|hash_tag }}</a>
|
||||||
|
{% endfor %}
|
||||||
|
</span>
|
||||||
|
{% endif %}
|
||||||
|
{% if bookmark_item.tag_names and bookmark_item.description %} | {% endif %}
|
||||||
|
{% if bookmark_item.description %}
|
||||||
|
<span>{{ bookmark_item.description }}</span>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
|
{% if bookmark_item.description %}
|
||||||
|
<div class="description separate">
|
||||||
|
{{ bookmark_item.description }}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
{% if bookmark_item.tag_names %}
|
{% if bookmark_item.tag_names %}
|
||||||
<span>
|
<div class="tags">
|
||||||
{% for tag_name in bookmark_item.tag_names %}
|
{% for tag_name in bookmark_item.tag_names %}
|
||||||
<a href="?{% add_tag_to_query tag_name %}">{{ tag_name|hash_tag }}</a>
|
<a href="?{% add_tag_to_query tag_name %}">{{ tag_name|hash_tag }}</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</span>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if bookmark_item.tag_names and bookmark_item.description %} | {% endif %}
|
{% endif %}
|
||||||
{% if bookmark_item.description %}
|
|
||||||
<span>{{ bookmark_item.description }}</span>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
{% if bookmark_item.notes %}
|
{% if bookmark_item.notes %}
|
||||||
<div class="notes bg-gray text-gray-dark">
|
<div class="notes bg-gray text-gray-dark">
|
||||||
<div class="notes-content">
|
<div class="markdown">
|
||||||
{% markdown bookmark_item.notes %}
|
{% markdown bookmark_item.notes %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="actions text-gray text-sm">
|
<div class="actions text-gray">
|
||||||
{% if bookmark_item.display_date %}
|
{% if bookmark_item.display_date %}
|
||||||
{% if bookmark_item.web_archive_snapshot_url %}
|
{% if bookmark_item.web_archive_snapshot_url %}
|
||||||
<a href="{{ bookmark_item.web_archive_snapshot_url }}"
|
<a href="{{ bookmark_item.web_archive_snapshot_url }}"
|
||||||
@@ -61,23 +77,35 @@
|
|||||||
{% else %}
|
{% else %}
|
||||||
<span>{{ bookmark_item.display_date }}</span>
|
<span>{{ bookmark_item.display_date }}</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<span class="separator">|</span>
|
<span>|</span>
|
||||||
|
{% endif %}
|
||||||
|
{# View link is visible for both owned and shared bookmarks #}
|
||||||
|
{% if bookmark_list.show_view_action %}
|
||||||
|
<a ld-fetch="{% url 'bookmarks:details_modal' bookmark_item.id %}?return_url={{ bookmark_list.return_url|urlencode }}"
|
||||||
|
ld-on="click" ld-target="body|append"
|
||||||
|
href="{% url 'bookmarks:details' bookmark_item.id %}">View</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if bookmark_item.is_editable %}
|
{% if bookmark_item.is_editable %}
|
||||||
{# Bookmark owner actions #}
|
{# Bookmark owner actions #}
|
||||||
<a href="{% url 'bookmarks:edit' bookmark_item.id %}?return_url={{ bookmark_list.return_url|urlencode }}">Edit</a>
|
{% if bookmark_list.show_edit_action %}
|
||||||
{% if bookmark_item.is_archived %}
|
<a href="{% url 'bookmarks:edit' bookmark_item.id %}?return_url={{ bookmark_list.return_url|urlencode }}">Edit</a>
|
||||||
<button type="submit" name="unarchive" value="{{ bookmark_item.id }}"
|
{% endif %}
|
||||||
class="btn btn-link btn-sm">Unarchive
|
{% if bookmark_list.show_archive_action %}
|
||||||
</button>
|
{% if bookmark_item.is_archived %}
|
||||||
{% else %}
|
<button type="submit" name="unarchive" value="{{ bookmark_item.id }}"
|
||||||
<button type="submit" name="archive" value="{{ bookmark_item.id }}"
|
class="btn btn-link btn-sm">Unarchive
|
||||||
class="btn btn-link btn-sm">Archive
|
</button>
|
||||||
|
{% else %}
|
||||||
|
<button type="submit" name="archive" value="{{ bookmark_item.id }}"
|
||||||
|
class="btn btn-link btn-sm">Archive
|
||||||
|
</button>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
{% if bookmark_list.show_remove_action %}
|
||||||
|
<button ld-confirm-button type="submit" name="remove" value="{{ bookmark_item.id }}"
|
||||||
|
class="btn btn-link btn-sm">Remove
|
||||||
</button>
|
</button>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<button ld-confirm-button type="submit" name="remove" value="{{ bookmark_item.id }}"
|
|
||||||
class="btn btn-link btn-sm">Remove
|
|
||||||
</button>
|
|
||||||
{% else %}
|
{% else %}
|
||||||
{# Shared bookmark actions #}
|
{# Shared bookmark actions #}
|
||||||
<span>Shared by
|
<span>Shared by
|
||||||
@@ -86,11 +114,11 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
{% if bookmark_item.has_extra_actions %}
|
{% if bookmark_item.has_extra_actions %}
|
||||||
<div class="extra-actions">
|
<div class="extra-actions">
|
||||||
<span class="separator hide-sm">|</span>
|
<span class="hide-sm">|</span>
|
||||||
{% if bookmark_item.show_mark_as_read %}
|
{% if bookmark_item.show_mark_as_read %}
|
||||||
<button type="submit" name="mark_as_read" value="{{ bookmark_item.id }}"
|
<button type="submit" name="mark_as_read" value="{{ bookmark_item.id }}"
|
||||||
class="btn btn-link btn-sm btn-icon"
|
class="btn btn-link btn-sm btn-icon"
|
||||||
ld-confirm-button confirm-icon="ld-icon-read" confirm-question="Mark as read?">
|
ld-confirm-button ld-confirm-icon="ld-icon-read" ld-confirm-question="Mark as read?">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">
|
||||||
<use xlink:href="#ld-icon-unread"></use>
|
<use xlink:href="#ld-icon-unread"></use>
|
||||||
</svg>
|
</svg>
|
||||||
@@ -100,7 +128,7 @@
|
|||||||
{% if bookmark_item.show_unshare %}
|
{% if bookmark_item.show_unshare %}
|
||||||
<button type="submit" name="unshare" value="{{ bookmark_item.id }}"
|
<button type="submit" name="unshare" value="{{ bookmark_item.id }}"
|
||||||
class="btn btn-link btn-sm btn-icon"
|
class="btn btn-link btn-sm btn-icon"
|
||||||
ld-confirm-button confirm-icon="ld-icon-unshare" confirm-question="Unshare?">
|
ld-confirm-button ld-confirm-icon="ld-icon-unshare" ld-confirm-question="Unshare?">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">
|
||||||
<use xlink:href="#ld-icon-share"></use>
|
<use xlink:href="#ld-icon-share"></use>
|
||||||
</svg>
|
</svg>
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
{% htmlmin %}
|
{% htmlmin %}
|
||||||
<div class="bulk-edit-bar">
|
<div class="bulk-edit-bar">
|
||||||
<div class="bulk-edit-actions bg-gray">
|
<div class="bulk-edit-actions bg-gray">
|
||||||
<label ld-bulk-edit-checkbox all class="form-checkbox">
|
<label class="form-checkbox bulk-edit-checkbox all">
|
||||||
<input type="checkbox">
|
<input type="checkbox">
|
||||||
<i class="form-icon"></i>
|
<i class="form-icon"></i>
|
||||||
</label>
|
</label>
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
<button ld-bulk-edit-active-toggle class="btn hide-sm ml-2" title="Bulk edit">
|
<button class="btn hide-sm ml-2 bulk-edit-active-toggle" title="Bulk edit">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" width="20px"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" width="20px"
|
||||||
height="20px">
|
height="20px">
|
||||||
<path
|
<path
|
||||||
|
13
bookmarks/templates/bookmarks/details.html
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{% extends 'bookmarks/layout.html' %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="bookmark-details page">
|
||||||
|
{% if details.is_editable %}
|
||||||
|
{% include 'bookmarks/details/actions.html' %}
|
||||||
|
{% endif %}
|
||||||
|
{% include 'bookmarks/details/title.html' %}
|
||||||
|
<div>
|
||||||
|
{% include 'bookmarks/details/form.html' %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
16
bookmarks/templates/bookmarks/details/actions.html
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<div class="actions">
|
||||||
|
<div class="left-actions">
|
||||||
|
<a class="btn"
|
||||||
|
href="{% url 'bookmarks:edit' details.bookmark.id %}?return_url={{ details.edit_return_url|urlencode }}">Edit</a>
|
||||||
|
</div>
|
||||||
|
<div class="right-actions">
|
||||||
|
<form action="{% url 'bookmarks:index.action' %}?return_url={{ details.delete_return_url|urlencode }}"
|
||||||
|
method="post">
|
||||||
|
{% csrf_token %}
|
||||||
|
<button ld-confirm-button type="submit" name="remove" value="{{ details.bookmark.id }}"
|
||||||
|
class="btn btn-link text-error">
|
||||||
|
Delete...
|
||||||
|
</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
42
bookmarks/templates/bookmarks/details/asset_icon.html
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
{% if asset.content_type == 'text/html' %}
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
|
||||||
|
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
||||||
|
<path d="M14 3v4a1 1 0 0 0 1 1h4"/>
|
||||||
|
<path d="M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"/>
|
||||||
|
<path d="M2 21v-6"/>
|
||||||
|
<path d="M5 15v6"/>
|
||||||
|
<path d="M2 18h3"/>
|
||||||
|
<path d="M20 15v6h2"/>
|
||||||
|
<path d="M13 21v-6l2 3l2 -3v6"/>
|
||||||
|
<path d="M7.5 15h3"/>
|
||||||
|
<path d="M9 15v6"/>
|
||||||
|
</svg>
|
||||||
|
{% elif asset.content_type == 'application/pdf' %}
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
|
||||||
|
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
||||||
|
<path d="M14 3v4a1 1 0 0 0 1 1h4"/>
|
||||||
|
<path d="M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"/>
|
||||||
|
<path d="M5 18h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6"/>
|
||||||
|
<path d="M17 18h2"/>
|
||||||
|
<path d="M20 15h-3v6"/>
|
||||||
|
<path d="M11 15v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"/>
|
||||||
|
</svg>
|
||||||
|
{% elif asset.content_type == 'image/png' or asset.content_type == 'image/jpeg' or asset.content_type == 'image.gif' %}
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
|
||||||
|
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
||||||
|
<path d="M15 8h.01"/>
|
||||||
|
<path d="M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"/>
|
||||||
|
<path d="M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"/>
|
||||||
|
<path d="M14 14l1 -1c.928 -.893 2.072 -.893 3 0l3 3"/>
|
||||||
|
</svg>
|
||||||
|
{% else %}
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
||||||
|
<path d="M14 3v4a1 1 0 0 0 1 1h4"/>
|
||||||
|
<path d="M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"/>
|
||||||
|
</svg>
|
||||||
|
{% endif %}
|
44
bookmarks/templates/bookmarks/details/assets.html
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
<div {% if details.has_pending_assets %}
|
||||||
|
ld-fetch="{% url 'bookmarks:details_assets' details.bookmark.id %}"
|
||||||
|
ld-interval="5" ld-target="self|outerHTML"
|
||||||
|
{% endif %}>
|
||||||
|
{% if details.assets %}
|
||||||
|
<div class="assets">
|
||||||
|
{% for asset in details.assets %}
|
||||||
|
<div class="asset" data-asset-id="{{ asset.id }}">
|
||||||
|
<div class="asset-icon {{ asset.icon_classes }}">
|
||||||
|
{% include 'bookmarks/details/asset_icon.html' %}
|
||||||
|
</div>
|
||||||
|
<div class="asset-text truncate {{ asset.text_classes }}">
|
||||||
|
<span>
|
||||||
|
{{ asset.display_name }}
|
||||||
|
{% if asset.status == 'pending' %}(queued){% endif %}
|
||||||
|
{% if asset.status == 'failure' %}(failed){% endif %}
|
||||||
|
</span>
|
||||||
|
{% if asset.file_size %}
|
||||||
|
<span class="filesize">{{ asset.file_size|filesizeformat }}</span>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
<div class="asset-actions">
|
||||||
|
{% if asset.file %}
|
||||||
|
<a class="btn btn-link" href="{% url 'bookmarks:assets.view' asset.id %}" target="_blank">View</a>
|
||||||
|
{% endif %}
|
||||||
|
{% if details.is_editable %}
|
||||||
|
<button ld-confirm-button type="submit" name="remove_asset" value="{{ asset.id }}" class="btn btn-link">
|
||||||
|
Remove
|
||||||
|
</button>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if details.is_editable %}
|
||||||
|
<div class="assets-actions">
|
||||||
|
<button type="submit" name="create_snapshot" class="btn btn-link"
|
||||||
|
{% if details.has_pending_assets %}disabled{% endif %}>Create HTML snapshot
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
98
bookmarks/templates/bookmarks/details/form.html
Normal file
@@ -0,0 +1,98 @@
|
|||||||
|
{% load static %}
|
||||||
|
{% load shared %}
|
||||||
|
|
||||||
|
<form ld-form ld-fire="refresh-bookmark-list,refresh-tag-cloud,refresh-details"
|
||||||
|
action="{% url 'bookmarks:details' details.bookmark.id %}"
|
||||||
|
method="post">
|
||||||
|
<div class="weblinks">
|
||||||
|
<a class="weblink" href="{{ details.bookmark.url }}" rel="noopener"
|
||||||
|
target="{{ details.profile.bookmark_link_target }}">
|
||||||
|
{% if details.show_link_icons %}
|
||||||
|
<img class="favicon" src="{% static details.bookmark.favicon_file %}" alt="">
|
||||||
|
{% endif %}
|
||||||
|
<span>{{ details.bookmark.url }}</span>
|
||||||
|
</a>
|
||||||
|
{% if details.bookmark.web_archive_snapshot_url %}
|
||||||
|
<a class="weblink" href="{{ details.bookmark.web_archive_snapshot_url }}"
|
||||||
|
target="{{ details.profile.bookmark_link_target }}">
|
||||||
|
{% if details.show_link_icons %}
|
||||||
|
<svg class="favicon" viewBox="0 0 76 86" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path
|
||||||
|
d="m76 82v4h-76l.00080851-4zm-3-6v5h-70v-5zm-62.6696277-54 .8344146.4217275.4176066 6.7436084.4176065 10.9576581v10.5383496l-.4176065 13.1364492-.0694681 8.8498268-1.1825531.3523804h-4.17367003l-1.25202116-.3523804-.48627608-8.8498268-.41840503-13.0662957v-10.5375432l.41840503-11.028618.38167482-6.7798947.87034634-.3854412zm60.0004653 0 .8353798.4217275.4168913 6.7436084.4168913 10.9576581v10.5383496l-.4168913 13.1364492-.0686832 8.8498268-1.1835879.3523804h-4.1737047l-1.2522712-.3523804-.4879704-8.8498268-.4168913-13.0662957v-10.5375432l.4168913-11.028618.3833483-6.7798947.8697215-.3854412zm-42.000632 0 .8344979.4217275.4176483 6.7436084.4176482 10.9576581v10.5383496l-.4176482 13.1364492-.0686764 8.8498268-1.1834698.3523804h-4.1740866l-1.2529447-.3523804-.4863246-8.8498268-.4168497-13.0662957v-10.5375432l.4168497-11.028618.38331-6.7798947.8688361-.3854412zm23 0 .8344979.4217275.4176483 6.7436084.4176482 10.9576581v10.5383496l-.4176482 13.1364492-.0686764 8.8498268-1.1834698.3523804h-4.1740866l-1.2521462-.3523804-.4871231-8.8498268-.4168497-13.0662957v-10.5375432l.4168497-11.028618.38331-6.7798947.8696347-.3854412zm21.6697944-9v7h-70v-7zm-35.7200748-13 36.7200748 8.4088317-1.4720205 2.5911683h-70.32799254l-2.19998696-2.10140371z"
|
||||||
|
fill="currentColor" fill-rule="evenodd"/>
|
||||||
|
</svg>
|
||||||
|
{% endif %}
|
||||||
|
<span>View on Internet Archive</span>
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
<dl class="grid columns-2 columns-sm-1 gap-0">
|
||||||
|
{% if details.is_editable %}
|
||||||
|
<div class="status col-2">
|
||||||
|
<dt>Status</dt>
|
||||||
|
<dd class="d-flex" style="gap: .8rem">
|
||||||
|
{% csrf_token %}
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="form-switch">
|
||||||
|
<input ld-auto-submit type="checkbox" name="is_archived"
|
||||||
|
{% if details.bookmark.is_archived %}checked{% endif %}>
|
||||||
|
<i class="form-icon"></i> Archived
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="form-switch">
|
||||||
|
<input ld-auto-submit type="checkbox" name="unread"
|
||||||
|
{% if details.bookmark.unread %}checked{% endif %}>
|
||||||
|
<i class="form-icon"></i> Unread
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
{% if details.profile.enable_sharing %}
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="form-switch">
|
||||||
|
<input ld-auto-submit type="checkbox" name="shared"
|
||||||
|
{% if details.bookmark.shared %}checked{% endif %}>
|
||||||
|
<i class="form-icon"></i> Shared
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
{% if details.show_files %}
|
||||||
|
<div class="files col-2">
|
||||||
|
<dt>Files</dt>
|
||||||
|
<dd>
|
||||||
|
{% include 'bookmarks/details/assets.html' %}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
{% if details.bookmark.tag_names %}
|
||||||
|
<div class="tags col-1">
|
||||||
|
<dt>Tags</dt>
|
||||||
|
<dd>
|
||||||
|
{% for tag_name in details.bookmark.tag_names %}
|
||||||
|
<a href="{% url 'bookmarks:index' %}?{% add_tag_to_query tag_name %}">{{ tag_name|hash_tag }}</a>
|
||||||
|
{% endfor %}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
<div class="date-added col-1">
|
||||||
|
<dt>Date added</dt>
|
||||||
|
<dd>
|
||||||
|
<span>{{ details.bookmark.date_added }}</span>
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
{% if details.bookmark.resolved_description %}
|
||||||
|
<div class="description col-2">
|
||||||
|
<dt>Description</dt>
|
||||||
|
<dd>{{ details.bookmark.resolved_description }}</dd>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
{% if details.bookmark.notes %}
|
||||||
|
<div class="notes col-2">
|
||||||
|
<dt>Notes</dt>
|
||||||
|
<dd class="markdown">{% markdown details.bookmark.notes %}</dd>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</dl>
|
||||||
|
</form>
|
3
bookmarks/templates/bookmarks/details/title.html
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
<h2>
|
||||||
|
{{ details.bookmark.resolved_title }}
|
||||||
|
</h2>
|
30
bookmarks/templates/bookmarks/details_modal.html
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
<div ld-modal
|
||||||
|
ld-fetch="{% url 'bookmarks:details_modal' details.bookmark.id %}" ld-on="refresh-details"
|
||||||
|
ld-select=".content" ld-target=".modal.bookmark-details .content|outerHTML"
|
||||||
|
class="modal active bookmark-details">
|
||||||
|
<div class="modal-overlay" aria-label="Close"></div>
|
||||||
|
<div class="modal-container">
|
||||||
|
<div class="modal-header">
|
||||||
|
{% include 'bookmarks/details/title.html' %}
|
||||||
|
<button class="close">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" stroke-width="2"
|
||||||
|
stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
|
||||||
|
<path d="M18 6l-12 12"></path>
|
||||||
|
<path d="M6 6l12 12"></path>
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<div class="content">
|
||||||
|
{% include 'bookmarks/details/form.html' %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% if details.is_editable %}
|
||||||
|
<div class="modal-footer">
|
||||||
|
{% include 'bookmarks/details/actions.html' %}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
@@ -4,11 +4,7 @@
|
|||||||
{% load bookmarks %}
|
{% load bookmarks %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="bookmarks-page grid columns-md-1"
|
<div ld-bulk-edit class="bookmarks-page grid columns-md-1">
|
||||||
ld-bulk-edit
|
|
||||||
ld-bookmark-page
|
|
||||||
bookmarks-url="{% url 'bookmarks:partials.bookmark_list.active' %}"
|
|
||||||
tags-url="{% url 'bookmarks:partials.tag_cloud.active' %}">
|
|
||||||
|
|
||||||
{# Bookmark list #}
|
{# Bookmark list #}
|
||||||
<section class="content-area col-2">
|
<section class="content-area col-2">
|
||||||
@@ -17,17 +13,22 @@
|
|||||||
<div class="header-controls">
|
<div class="header-controls">
|
||||||
{% bookmark_search bookmark_list.search tag_cloud.tags %}
|
{% bookmark_search bookmark_list.search tag_cloud.tags %}
|
||||||
{% include 'bookmarks/bulk_edit/toggle.html' %}
|
{% include 'bookmarks/bulk_edit/toggle.html' %}
|
||||||
<button ld-modal modal-content=".tag-cloud" class="btn ml-2 show-md">Tags</button>
|
<button ld-fetch="{{ bookmark_list.tag_modal_url }}" ld-target="body|append" ld-on="click"
|
||||||
|
class="btn ml-2 show-md">Tags
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form class="bookmark-actions"
|
<form ld-form ld-fire="refresh-bookmark-list,refresh-tag-cloud"
|
||||||
|
class="bookmark-actions"
|
||||||
action="{{ bookmark_list.action_url|safe }}"
|
action="{{ bookmark_list.action_url|safe }}"
|
||||||
method="post" autocomplete="off">
|
method="post" autocomplete="off">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
{% include 'bookmarks/bulk_edit/bar.html' with disable_actions='bulk_unarchive' %}
|
{% include 'bookmarks/bulk_edit/bar.html' with disable_actions='bulk_unarchive' %}
|
||||||
|
|
||||||
<div class="bookmark-list-container">
|
<div ld-fetch="{{ bookmark_list.refresh_url }}" ld-on="refresh-bookmark-list"
|
||||||
|
ld-fire="refresh-bookmark-list-done"
|
||||||
|
class="bookmark-list-container">
|
||||||
{% include 'bookmarks/bookmark_list.html' %}
|
{% include 'bookmarks/bookmark_list.html' %}
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
@@ -35,10 +36,11 @@
|
|||||||
|
|
||||||
{# Tag cloud #}
|
{# Tag cloud #}
|
||||||
<section class="content-area col-1 hide-md">
|
<section class="content-area col-1 hide-md">
|
||||||
<div class="content-area-header mb-4">
|
<div class="content-area-header">
|
||||||
<h2>Tags</h2>
|
<h2>Tags</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="tag-cloud-container">
|
<div ld-fetch="{{ tag_cloud.refresh_url }}" ld-on="refresh-tag-cloud"
|
||||||
|
class="tag-cloud-container">
|
||||||
{% include 'bookmarks/tag_cloud.html' %}
|
{% include 'bookmarks/tag_cloud.html' %}
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
@@ -6,8 +6,10 @@
|
|||||||
<html lang="en" data-api-base-url="{% url 'bookmarks:api-root' %}">
|
<html lang="en" data-api-base-url="{% url 'bookmarks:api-root' %}">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<link rel="icon" href="{% static 'favicon.png' %}"/>
|
<link rel="icon" href="{% static 'favicon.ico' %}" sizes="48x48">
|
||||||
<link rel="apple-touch-icon" href="{% static 'apple-touch-icon.png' %}">
|
<link rel="icon" href="{% static 'favicon.svg' %}" sizes="any" type="image/svg+xml">
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="{% static 'apple-touch-icon.png' %}">
|
||||||
|
<link rel="mask-icon" href="{% static 'safari-pinned-tab.svg' %}" color="#5856e0">
|
||||||
<link rel="manifest" href="{% url 'bookmarks:manifest' %}">
|
<link rel="manifest" href="{% url 'bookmarks:manifest' %}">
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimal-ui">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimal-ui">
|
||||||
@@ -19,14 +21,21 @@
|
|||||||
{# Include specific theme variant based on user profile setting #}
|
{# Include specific theme variant based on user profile setting #}
|
||||||
{% if request.user_profile.theme == 'light' %}
|
{% if request.user_profile.theme == 'light' %}
|
||||||
<link href="{% sass_src 'theme-light.scss' %}?v={{ app_version }}" rel="stylesheet" type="text/css"/>
|
<link href="{% sass_src 'theme-light.scss' %}?v={{ app_version }}" rel="stylesheet" type="text/css"/>
|
||||||
|
<meta name="theme-color" content="#5856e0">
|
||||||
{% elif request.user_profile.theme == 'dark' %}
|
{% elif request.user_profile.theme == 'dark' %}
|
||||||
<link href="{% sass_src 'theme-dark.scss' %}?v={{ app_version }}" rel="stylesheet" type="text/css"/>
|
<link href="{% sass_src 'theme-dark.scss' %}?v={{ app_version }}" rel="stylesheet" type="text/css"/>
|
||||||
|
<meta name="theme-color" content="#161822">
|
||||||
{% else %}
|
{% else %}
|
||||||
{# Use auto theme as fallback #}
|
{# Use auto theme as fallback #}
|
||||||
<link href="{% sass_src 'theme-dark.scss' %}?v={{ app_version }}" rel="stylesheet" type="text/css"
|
<link href="{% sass_src 'theme-dark.scss' %}?v={{ app_version }}" rel="stylesheet" type="text/css"
|
||||||
media="(prefers-color-scheme: dark)"/>
|
media="(prefers-color-scheme: dark)"/>
|
||||||
<link href="{% sass_src 'theme-light.scss' %}?v={{ app_version }}" rel="stylesheet" type="text/css"
|
<link href="{% sass_src 'theme-light.scss' %}?v={{ app_version }}" rel="stylesheet" type="text/css"
|
||||||
media="(prefers-color-scheme: light)"/>
|
media="(prefers-color-scheme: light)"/>
|
||||||
|
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#161822">
|
||||||
|
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#5856e0">
|
||||||
|
{% endif %}
|
||||||
|
{% if request.user_profile.custom_css %}
|
||||||
|
<style>{{ request.user_profile.custom_css }}</style>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</head>
|
</head>
|
||||||
<body ld-global-shortcuts>
|
<body ld-global-shortcuts>
|
||||||
@@ -96,9 +105,9 @@
|
|||||||
<form action="{% url 'bookmarks:toasts.acknowledge' %}?return_url={{ request.path | urlencode }}" method="post">
|
<form action="{% url 'bookmarks:toasts.acknowledge' %}?return_url={{ request.path | urlencode }}" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
{% for toast in toast_messages %}
|
{% for toast in toast_messages %}
|
||||||
<div class="toast">
|
<div class="toast d-flex">
|
||||||
{{ toast.message }}
|
{{ toast.message }}
|
||||||
<button type="submit" name="toast" value="{{ toast.id }}" class="btn btn-clear float-right"></button>
|
<button type="submit" name="toast" value="{{ toast.id }}" class="btn btn-clear"></button>
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</form>
|
</form>
|
||||||
|
@@ -6,8 +6,8 @@
|
|||||||
<div class="dropdown">
|
<div class="dropdown">
|
||||||
<a href="#" class="btn btn-link dropdown-toggle" tabindex="0" style="padding-right: 0.2rem">
|
<a href="#" class="btn btn-link dropdown-toggle" tabindex="0" style="padding-right: 0.2rem">
|
||||||
Bookmarks
|
Bookmarks
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"
|
||||||
style="height:1rem;width:1rem;vertical-align: text-bottom;">
|
style="height:1rem;width:1rem;vertical-align: middle;">
|
||||||
<path fill-rule="evenodd"
|
<path fill-rule="evenodd"
|
||||||
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
|
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
|
||||||
clip-rule="evenodd"/>
|
clip-rule="evenodd"/>
|
||||||
|
@@ -25,7 +25,7 @@
|
|||||||
<path d="M18 9v11"></path>
|
<path d="M18 9v11"></path>
|
||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
<div class="menu text-sm" tabindex="0">
|
<div class="menu" tabindex="0">
|
||||||
<form id="search_preferences" action="" method="post">
|
<form id="search_preferences" action="" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
{% if 'sort' in preferences_form.editable_fields %}
|
{% if 'sort' in preferences_form.editable_fields %}
|
||||||
|
@@ -4,10 +4,7 @@
|
|||||||
{% load bookmarks %}
|
{% load bookmarks %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="bookmarks-page grid columns-md-1"
|
<div class="bookmarks-page grid columns-md-1">
|
||||||
ld-bookmark-page
|
|
||||||
bookmarks-url="{% url 'bookmarks:partials.bookmark_list.shared' %}"
|
|
||||||
tags-url="{% url 'bookmarks:partials.tag_cloud.shared' %}">
|
|
||||||
|
|
||||||
{# Bookmark list #}
|
{# Bookmark list #}
|
||||||
<section class="content-area col-2">
|
<section class="content-area col-2">
|
||||||
@@ -15,15 +12,20 @@
|
|||||||
<h2>Shared bookmarks</h2>
|
<h2>Shared bookmarks</h2>
|
||||||
<div class="header-controls">
|
<div class="header-controls">
|
||||||
{% bookmark_search bookmark_list.search tag_cloud.tags mode='shared' %}
|
{% bookmark_search bookmark_list.search tag_cloud.tags mode='shared' %}
|
||||||
<button ld-modal modal-content=".tag-cloud" class="btn ml-2 show-md">Tags</button>
|
<button ld-fetch="{{ bookmark_list.tag_modal_url }}" ld-target="body|append" ld-on="click"
|
||||||
|
class="btn ml-2 show-md">Tags
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form class="bookmark-actions" action="{{ bookmark_list.action_url|safe }}"
|
<form ld-form ld-fire="refresh-bookmark-list,refresh-tag-cloud"
|
||||||
method="post">
|
class="bookmark-actions"
|
||||||
|
action="{{ bookmark_list.action_url|safe }}"
|
||||||
|
method="post" autocomplete="off">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
<div ld-fetch="{{ bookmark_list.refresh_url }}" ld-on="refresh-bookmark-list"
|
||||||
<div class="bookmark-list-container">
|
ld-fire="refresh-bookmark-list-done"
|
||||||
|
class="bookmark-list-container">
|
||||||
{% include 'bookmarks/bookmark_list.html' %}
|
{% include 'bookmarks/bookmark_list.html' %}
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
@@ -41,7 +43,8 @@
|
|||||||
<div class="content-area-header">
|
<div class="content-area-header">
|
||||||
<h2>Tags</h2>
|
<h2>Tags</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="tag-cloud-container">
|
<div ld-fetch="{{ tag_cloud.refresh_url }}" ld-on="refresh-tag-cloud"
|
||||||
|
class="tag-cloud-container">
|
||||||
{% include 'bookmarks/tag_cloud.html' %}
|
{% include 'bookmarks/tag_cloud.html' %}
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
21
bookmarks/templates/bookmarks/tag_modal.html
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<div ld-modal class="modal active">
|
||||||
|
<div class="modal-overlay" aria-label="Close"></div>
|
||||||
|
<div class="modal-container">
|
||||||
|
<div class="modal-header d-flex justify-between align-center">
|
||||||
|
<div class="modal-title h5">Tags</div>
|
||||||
|
<button class="close">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" stroke-width="2"
|
||||||
|
stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
|
||||||
|
<path d="M18 6l-12 12"></path>
|
||||||
|
<path d="M6 6l12 12"></path>
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<div class="content">
|
||||||
|
{% include 'bookmarks/tag_cloud.html' %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
@@ -17,22 +17,24 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="form-label" for="{{ form.username.id_for_label }}">Username</label>
|
<label class="form-label" for="{{ form.username.id_for_label }}">Username</label>
|
||||||
{{ form.username|add_class:'form-input'|attr:"placeholder: " }}
|
{{ form.username|add_class:'form-input'|attr:'placeholder: ' }}
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="form-label" for="{{ form.password.id_for_label }}">Password</label>
|
<label class="form-label" for="{{ form.password.id_for_label }}">Password</label>
|
||||||
{{ form.password|add_class:'form-input'|attr:"placeholder: " }}
|
{{ form.password|add_class:'form-input'|attr:'placeholder: ' }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<br/>
|
<br/>
|
||||||
<div class="d-flex justify-between">
|
<div class="d-flex justify-between">
|
||||||
<input type="submit" value="Login" class="btn btn-primary btn-wide">
|
<input type="submit" value="Login" class="btn btn-primary btn-wide"/>
|
||||||
<input type="hidden" name="next" value="{{ next }}">
|
<input type="hidden" name="next" value="{{ next }}"/>
|
||||||
|
{% if enable_oidc %}
|
||||||
|
<a class="btn btn-link" href="{% url 'oidc_authentication_init' %}">Login with OIDC</a>
|
||||||
|
{% endif %}
|
||||||
{% if allow_registration %}
|
{% if allow_registration %}
|
||||||
<a href="{% url 'django_registration_register' %}" class="btn btn-link">Register</a>
|
<a href="{% url 'django_registration_register' %}" class="btn btn-link">Register</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@@ -8,6 +8,12 @@
|
|||||||
|
|
||||||
{# Profile section #}
|
{# Profile section #}
|
||||||
<section class="content-area">
|
<section class="content-area">
|
||||||
|
{% if success_message %}
|
||||||
|
<div class="toast toast-success mb-4">{{ success_message }}</div>
|
||||||
|
{% endif %}
|
||||||
|
{% if error_message %}
|
||||||
|
<div class="toast toast-error mb-4">{{ error_message }}</div>
|
||||||
|
{% endif %}
|
||||||
<h2>Profile</h2>
|
<h2>Profile</h2>
|
||||||
<p>
|
<p>
|
||||||
<a href="{% url 'change_password' %}">Change password</a>
|
<a href="{% url 'change_password' %}">Change password</a>
|
||||||
@@ -29,6 +35,23 @@
|
|||||||
be hidden.
|
be hidden.
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="{{ form.bookmark_description_display.id_for_label }}" class="form-label">Bookmark
|
||||||
|
description</label>
|
||||||
|
{{ form.bookmark_description_display|add_class:"form-select width-25 width-sm-100" }}
|
||||||
|
<div class="form-input-hint">
|
||||||
|
Whether to show bookmark descriptions and tags in the same line, or as separate blocks.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="form-group {% if request.user_profile.bookmark_description_display == 'inline' %}d-hide{% endif %}">
|
||||||
|
<label for="{{ form.bookmark_description_max_lines.id_for_label }}" class="form-label">Bookmark description
|
||||||
|
max lines</label>
|
||||||
|
{{ form.bookmark_description_max_lines|add_class:"form-input width-25 width-sm-100" }}
|
||||||
|
<div class="form-input-hint">
|
||||||
|
Limits the number of lines that are displayed for the bookmark description.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="{{ form.display_url.id_for_label }}" class="form-checkbox">
|
<label for="{{ form.display_url.id_for_label }}" class="form-checkbox">
|
||||||
{{ form.display_url }}
|
{{ form.display_url }}
|
||||||
@@ -48,6 +71,28 @@
|
|||||||
Alternatively the keyboard shortcut <code>e</code> can be used to temporarily show all notes.
|
Alternatively the keyboard shortcut <code>e</code> can be used to temporarily show all notes.
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label>Bookmark actions</label>
|
||||||
|
<label for="{{ form.display_view_bookmark_action.id_for_label }}" class="form-checkbox">
|
||||||
|
{{ form.display_view_bookmark_action }}
|
||||||
|
<i class="form-icon"></i> View
|
||||||
|
</label>
|
||||||
|
<label for="{{ form.display_edit_bookmark_action.id_for_label }}" class="form-checkbox">
|
||||||
|
{{ form.display_edit_bookmark_action }}
|
||||||
|
<i class="form-icon"></i> Edit
|
||||||
|
</label>
|
||||||
|
<label for="{{ form.display_archive_bookmark_action.id_for_label }}" class="form-checkbox">
|
||||||
|
{{ form.display_archive_bookmark_action }}
|
||||||
|
<i class="form-icon"></i> Archive
|
||||||
|
</label>
|
||||||
|
<label for="{{ form.display_remove_bookmark_action.id_for_label }}" class="form-checkbox">
|
||||||
|
{{ form.display_remove_bookmark_action }}
|
||||||
|
<i class="form-icon"></i> Remove
|
||||||
|
</label>
|
||||||
|
<div class="form-input-hint">
|
||||||
|
Which actions to display for each bookmark.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="{{ form.bookmark_link_target.id_for_label }}" class="form-label">Open bookmarks in</label>
|
<label for="{{ form.bookmark_link_target.id_for_label }}" class="form-label">Open bookmarks in</label>
|
||||||
{{ form.bookmark_link_target|add_class:"form-select width-25 width-sm-100" }}
|
{{ form.bookmark_link_target|add_class:"form-select width-25 width-sm-100" }}
|
||||||
@@ -81,13 +126,6 @@
|
|||||||
{% if request.user_profile.enable_favicons and enable_refresh_favicons %}
|
{% if request.user_profile.enable_favicons and enable_refresh_favicons %}
|
||||||
<button class="btn mt-2" name="refresh_favicons">Refresh Favicons</button>
|
<button class="btn mt-2" name="refresh_favicons">Refresh Favicons</button>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if refresh_favicons_success_message %}
|
|
||||||
<div class="has-success">
|
|
||||||
<p class="form-input-hint">
|
|
||||||
{{ refresh_favicons_success_message }}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="{{ form.web_archive_integration.id_for_label }}" class="form-label">Internet Archive
|
<label for="{{ form.web_archive_integration.id_for_label }}" class="form-label">Internet Archive
|
||||||
@@ -124,15 +162,33 @@
|
|||||||
href="{% url 'bookmarks:shared' %}">shared bookmarks page</a>.
|
href="{% url 'bookmarks:shared' %}">shared bookmarks page</a>.
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
{% if has_snapshot_support %}
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="{{ form.enable_automatic_html_snapshots.id_for_label }}" class="form-checkbox">
|
||||||
|
{{ form.enable_automatic_html_snapshots }}
|
||||||
|
<i class="form-icon"></i> Automatically create HTML snapshots
|
||||||
|
</label>
|
||||||
|
<div class="form-input-hint">
|
||||||
|
Automatically creates HTML snapshots when adding bookmarks. Alternatively, when disabled, snapshots can be
|
||||||
|
created manually in the details view of a bookmark.
|
||||||
|
</div>
|
||||||
|
<button class="btn mt-2" name="create_missing_html_snapshots">Create missing HTML snapshots</button>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
<div class="form-group">
|
||||||
|
<details {% if form.custom_css.value %}open{% endif %}>
|
||||||
|
<summary>Custom CSS</summary>
|
||||||
|
<label for="{{ form.custom_css.id_for_label }}" class="text-assistive">Custom CSS</label>
|
||||||
|
<div class="mt-2">
|
||||||
|
{{ form.custom_css|add_class:"form-input custom-css"|attr:"rows:6" }}
|
||||||
|
</div>
|
||||||
|
</details>
|
||||||
|
<div class="form-input-hint">
|
||||||
|
Allows to add custom CSS to the page.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<input type="submit" name="update_profile" value="Save" class="btn btn-primary mt-2">
|
<input type="submit" name="update_profile" value="Save" class="btn btn-primary mt-2">
|
||||||
{% if update_profile_success_message %}
|
|
||||||
<div class="has-success">
|
|
||||||
<p class="form-input-hint">
|
|
||||||
{{ update_profile_success_message }}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
@@ -150,7 +206,9 @@
|
|||||||
<i class="form-icon"></i> Import public bookmarks as shared
|
<i class="form-icon"></i> Import public bookmarks as shared
|
||||||
</label>
|
</label>
|
||||||
<div class="form-input-hint">
|
<div class="form-input-hint">
|
||||||
When importing bookmarks from a service that supports marking bookmarks as public or private (using the <code>PRIVATE</code> attribute), enabling this option will import all bookmarks that are marked as not private as shared bookmarks.
|
When importing bookmarks from a service that supports marking bookmarks as public or private (using the
|
||||||
|
<code>PRIVATE</code> attribute), enabling this option will import all bookmarks that are marked as not
|
||||||
|
private as shared bookmarks.
|
||||||
Otherwise, all bookmarks will be imported as private bookmarks.
|
Otherwise, all bookmarks will be imported as private bookmarks.
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -159,20 +217,6 @@
|
|||||||
<input class="form-input" type="file" name="import_file">
|
<input class="form-input" type="file" name="import_file">
|
||||||
<input type="submit" class="input-group-btn btn btn-primary" value="Upload">
|
<input type="submit" class="input-group-btn btn btn-primary" value="Upload">
|
||||||
</div>
|
</div>
|
||||||
{% if import_success_message %}
|
|
||||||
<div class="has-success">
|
|
||||||
<p class="form-input-hint">
|
|
||||||
{{ import_success_message }}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
{% if import_errors_message %}
|
|
||||||
<div class="has-error">
|
|
||||||
<p class="form-input-hint">
|
|
||||||
{{ import_errors_message }}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
@@ -181,10 +225,6 @@
|
|||||||
<section class="content-area">
|
<section class="content-area">
|
||||||
<h2>Export</h2>
|
<h2>Export</h2>
|
||||||
<p>Export all bookmarks in Netscape HTML format.</p>
|
<p>Export all bookmarks in Netscape HTML format.</p>
|
||||||
<p>
|
|
||||||
Note that exporting bookmark notes is currently not supported due to limitations of the format.
|
|
||||||
For proper backups please use a database backup as described in the documentation.
|
|
||||||
</p>
|
|
||||||
<a class="btn btn-primary" href="{% url 'bookmarks:settings.export' %}">Download (.html)</a>
|
<a class="btn btn-primary" href="{% url 'bookmarks:settings.export' %}">Download (.html)</a>
|
||||||
{% if export_error %}
|
{% if export_error %}
|
||||||
<div class="has-error">
|
<div class="has-error">
|
||||||
@@ -223,10 +263,12 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// Automatically disable public bookmark sharing if bookmark sharing is disabled
|
|
||||||
const enableSharing = document.getElementById("{{ form.enable_sharing.id_for_label }}");
|
const enableSharing = document.getElementById("{{ form.enable_sharing.id_for_label }}");
|
||||||
const enablePublicSharing = document.getElementById("{{ form.enable_public_sharing.id_for_label }}");
|
const enablePublicSharing = document.getElementById("{{ form.enable_public_sharing.id_for_label }}");
|
||||||
|
const bookmarkDescriptionDisplay = document.getElementById("{{ form.bookmark_description_display.id_for_label }}");
|
||||||
|
const bookmarkDescriptionMaxLines = document.getElementById("{{ form.bookmark_description_max_lines.id_for_label }}");
|
||||||
|
|
||||||
|
// Automatically disable public bookmark sharing if bookmark sharing is disabled
|
||||||
function updatePublicSharing() {
|
function updatePublicSharing() {
|
||||||
if (enableSharing.checked) {
|
if (enableSharing.checked) {
|
||||||
enablePublicSharing.disabled = false;
|
enablePublicSharing.disabled = false;
|
||||||
@@ -238,6 +280,18 @@
|
|||||||
|
|
||||||
updatePublicSharing();
|
updatePublicSharing();
|
||||||
enableSharing.addEventListener("change", updatePublicSharing);
|
enableSharing.addEventListener("change", updatePublicSharing);
|
||||||
|
|
||||||
|
// Automatically hide the bookmark description max lines input if the description display is set to inline
|
||||||
|
function updateBookmarkDescriptionMaxLines() {
|
||||||
|
if (bookmarkDescriptionDisplay.value === "inline") {
|
||||||
|
bookmarkDescriptionMaxLines.closest(".form-group").classList.add("d-hide");
|
||||||
|
} else {
|
||||||
|
bookmarkDescriptionMaxLines.closest(".form-group").classList.remove("d-hide");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
updateBookmarkDescriptionMaxLines();
|
||||||
|
bookmarkDescriptionDisplay.addEventListener("change", updateBookmarkDescriptionMaxLines);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@@ -49,9 +49,11 @@
|
|||||||
<section class="content-area">
|
<section class="content-area">
|
||||||
<h2>RSS Feeds</h2>
|
<h2>RSS Feeds</h2>
|
||||||
<p>The following URLs provide RSS feeds for your bookmarks:</p>
|
<p>The following URLs provide RSS feeds for your bookmarks:</p>
|
||||||
<ul>
|
<ul style="list-style-position: outside;">
|
||||||
<li><a href="{{ all_feed_url }}">All bookmarks</a></li>
|
<li><a href="{{ all_feed_url }}">All bookmarks</a></li>
|
||||||
<li><a href="{{ unread_feed_url }}">Unread bookmarks</a></li>
|
<li><a href="{{ unread_feed_url }}">Unread bookmarks</a></li>
|
||||||
|
<li><a href="{{ shared_feed_url }}">Shared bookmarks</a></li>
|
||||||
|
<li><a href="{{ public_shared_feed_url }}">Public shared bookmarks</a><br><span class="text-small text-gray">The public shared feed does not contain an authentication token and can be shared with other people. Only shows shared bookmarks from users who have explicitly enabled public sharing.</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>
|
<p>
|
||||||
All URLs support appending a <code>q</code> URL parameter for specifying a search query.
|
All URLs support appending a <code>q</code> URL parameter for specifying a search query.
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
import random
|
import random
|
||||||
import logging
|
import logging
|
||||||
import datetime
|
from datetime import datetime
|
||||||
from typing import List
|
from typing import List
|
||||||
|
|
||||||
from bs4 import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
@@ -10,7 +10,7 @@ from django.utils.crypto import get_random_string
|
|||||||
from rest_framework import status
|
from rest_framework import status
|
||||||
from rest_framework.test import APITestCase
|
from rest_framework.test import APITestCase
|
||||||
|
|
||||||
from bookmarks.models import Bookmark, Tag
|
from bookmarks.models import Bookmark, BookmarkAsset, Tag
|
||||||
|
|
||||||
|
|
||||||
class BookmarkFactoryMixin:
|
class BookmarkFactoryMixin:
|
||||||
@@ -84,6 +84,7 @@ class BookmarkFactoryMixin:
|
|||||||
unread: bool = False,
|
unread: bool = False,
|
||||||
shared: bool = False,
|
shared: bool = False,
|
||||||
with_tags: bool = False,
|
with_tags: bool = False,
|
||||||
|
with_web_archive_snapshot_url: bool = False,
|
||||||
user: User = None,
|
user: User = None,
|
||||||
):
|
):
|
||||||
user = user or self.get_or_create_test_user()
|
user = user or self.get_or_create_test_user()
|
||||||
@@ -112,6 +113,9 @@ class BookmarkFactoryMixin:
|
|||||||
if with_tags:
|
if with_tags:
|
||||||
tag_name = f"{tag_prefix} {i}{suffix}"
|
tag_name = f"{tag_prefix} {i}{suffix}"
|
||||||
tags = [self.setup_tag(name=tag_name, user=user)]
|
tags = [self.setup_tag(name=tag_name, user=user)]
|
||||||
|
web_archive_snapshot_url = ""
|
||||||
|
if with_web_archive_snapshot_url:
|
||||||
|
web_archive_snapshot_url = f"https://web.archive.org/web/{i}"
|
||||||
bookmark = self.setup_bookmark(
|
bookmark = self.setup_bookmark(
|
||||||
url=url,
|
url=url,
|
||||||
title=title,
|
title=title,
|
||||||
@@ -119,6 +123,7 @@ class BookmarkFactoryMixin:
|
|||||||
unread=unread,
|
unread=unread,
|
||||||
shared=shared,
|
shared=shared,
|
||||||
tags=tags,
|
tags=tags,
|
||||||
|
web_archive_snapshot_url=web_archive_snapshot_url,
|
||||||
user=user,
|
user=user,
|
||||||
)
|
)
|
||||||
bookmarks.append(bookmark)
|
bookmarks.append(bookmark)
|
||||||
@@ -128,6 +133,38 @@ class BookmarkFactoryMixin:
|
|||||||
def get_numbered_bookmark(self, title: str):
|
def get_numbered_bookmark(self, title: str):
|
||||||
return Bookmark.objects.get(title=title)
|
return Bookmark.objects.get(title=title)
|
||||||
|
|
||||||
|
def setup_asset(
|
||||||
|
self,
|
||||||
|
bookmark: Bookmark,
|
||||||
|
date_created: datetime = None,
|
||||||
|
file: str = None,
|
||||||
|
file_size: int = None,
|
||||||
|
asset_type: str = BookmarkAsset.TYPE_SNAPSHOT,
|
||||||
|
content_type: str = "image/html",
|
||||||
|
display_name: str = None,
|
||||||
|
status: str = BookmarkAsset.STATUS_COMPLETE,
|
||||||
|
gzip: bool = False,
|
||||||
|
):
|
||||||
|
if date_created is None:
|
||||||
|
date_created = timezone.now()
|
||||||
|
if not file:
|
||||||
|
file = get_random_string(length=32)
|
||||||
|
if not display_name:
|
||||||
|
display_name = file
|
||||||
|
asset = BookmarkAsset(
|
||||||
|
bookmark=bookmark,
|
||||||
|
date_created=date_created,
|
||||||
|
file=file,
|
||||||
|
file_size=file_size,
|
||||||
|
asset_type=asset_type,
|
||||||
|
content_type=content_type,
|
||||||
|
display_name=display_name,
|
||||||
|
status=status,
|
||||||
|
gzip=gzip,
|
||||||
|
)
|
||||||
|
asset.save()
|
||||||
|
return asset
|
||||||
|
|
||||||
def setup_tag(self, user: User = None, name: str = ""):
|
def setup_tag(self, user: User = None, name: str = ""):
|
||||||
if user is None:
|
if user is None:
|
||||||
user = self.get_or_create_test_user()
|
user = self.get_or_create_test_user()
|
||||||
|
@@ -94,15 +94,10 @@ class BookmarkArchivedViewTestCase(TestCase, BookmarkFactoryMixin, HtmlTestMixin
|
|||||||
)
|
)
|
||||||
|
|
||||||
def assertBulkActionForm(self, response, url: str):
|
def assertBulkActionForm(self, response, url: str):
|
||||||
html = collapse_whitespace(response.content.decode())
|
soup = self.make_soup(response.content.decode())
|
||||||
needle = collapse_whitespace(
|
form = soup.select_one("form.bookmark-actions")
|
||||||
f"""
|
self.assertIsNotNone(form)
|
||||||
<form class="bookmark-actions"
|
self.assertEqual(form.attrs["action"], url)
|
||||||
action="{url}"
|
|
||||||
method="post" autocomplete="off">
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
self.assertIn(needle, html)
|
|
||||||
|
|
||||||
def test_should_list_archived_and_user_owned_bookmarks(self):
|
def test_should_list_archived_and_user_owned_bookmarks(self):
|
||||||
other_user = User.objects.create_user(
|
other_user = User.objects.create_user(
|
||||||
|
125
bookmarks/tests/test_bookmark_asset_view.py
Normal file
@@ -0,0 +1,125 @@
|
|||||||
|
import os
|
||||||
|
|
||||||
|
from django.conf import settings
|
||||||
|
from django.test import TestCase
|
||||||
|
from django.urls import reverse
|
||||||
|
|
||||||
|
from bookmarks.tests.helpers import (
|
||||||
|
BookmarkFactoryMixin,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class BookmarkAssetViewTestCase(TestCase, BookmarkFactoryMixin):
|
||||||
|
def setUp(self) -> None:
|
||||||
|
user = self.get_or_create_test_user()
|
||||||
|
self.client.force_login(user)
|
||||||
|
|
||||||
|
def tearDown(self):
|
||||||
|
temp_files = [
|
||||||
|
f for f in os.listdir(settings.LD_ASSET_FOLDER) if f.startswith("temp")
|
||||||
|
]
|
||||||
|
for temp_file in temp_files:
|
||||||
|
os.remove(os.path.join(settings.LD_ASSET_FOLDER, temp_file))
|
||||||
|
|
||||||
|
def setup_asset_file(self, filename):
|
||||||
|
if not os.path.exists(settings.LD_ASSET_FOLDER):
|
||||||
|
os.makedirs(settings.LD_ASSET_FOLDER)
|
||||||
|
filepath = os.path.join(settings.LD_ASSET_FOLDER, filename)
|
||||||
|
with open(filepath, "w") as f:
|
||||||
|
f.write("test")
|
||||||
|
|
||||||
|
def setup_asset_with_file(self, bookmark):
|
||||||
|
filename = f"temp_{bookmark.id}.html.gzip"
|
||||||
|
self.setup_asset_file(filename)
|
||||||
|
asset = self.setup_asset(bookmark=bookmark, file=filename)
|
||||||
|
return asset
|
||||||
|
|
||||||
|
def test_view_access(self):
|
||||||
|
# own bookmark
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
asset = self.setup_asset_with_file(bookmark)
|
||||||
|
|
||||||
|
response = self.client.get(reverse("bookmarks:assets.view", args=[asset.id]))
|
||||||
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
|
# other user's bookmark
|
||||||
|
other_user = self.setup_user()
|
||||||
|
bookmark = self.setup_bookmark(user=other_user)
|
||||||
|
asset = self.setup_asset_with_file(bookmark)
|
||||||
|
|
||||||
|
response = self.client.get(reverse("bookmarks:assets.view", args=[asset.id]))
|
||||||
|
self.assertEqual(response.status_code, 404)
|
||||||
|
|
||||||
|
# shared, sharing disabled
|
||||||
|
bookmark = self.setup_bookmark(user=other_user, shared=True)
|
||||||
|
asset = self.setup_asset_with_file(bookmark)
|
||||||
|
|
||||||
|
response = self.client.get(reverse("bookmarks:assets.view", args=[asset.id]))
|
||||||
|
self.assertEqual(response.status_code, 404)
|
||||||
|
|
||||||
|
# unshared, sharing enabled
|
||||||
|
profile = other_user.profile
|
||||||
|
profile.enable_sharing = True
|
||||||
|
profile.save()
|
||||||
|
bookmark = self.setup_bookmark(user=other_user, shared=False)
|
||||||
|
asset = self.setup_asset_with_file(bookmark)
|
||||||
|
|
||||||
|
response = self.client.get(reverse("bookmarks:assets.view", args=[asset.id]))
|
||||||
|
self.assertEqual(response.status_code, 404)
|
||||||
|
|
||||||
|
# shared, sharing enabled
|
||||||
|
bookmark = self.setup_bookmark(user=other_user, shared=True)
|
||||||
|
asset = self.setup_asset_with_file(bookmark)
|
||||||
|
|
||||||
|
response = self.client.get(reverse("bookmarks:assets.view", args=[asset.id]))
|
||||||
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
|
def test_view_access_guest_user(self):
|
||||||
|
self.client.logout()
|
||||||
|
|
||||||
|
# unshared, sharing disabled
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
asset = self.setup_asset_with_file(bookmark)
|
||||||
|
|
||||||
|
response = self.client.get(reverse("bookmarks:assets.view", args=[asset.id]))
|
||||||
|
self.assertEqual(response.status_code, 404)
|
||||||
|
|
||||||
|
# shared, sharing disabled
|
||||||
|
bookmark = self.setup_bookmark(shared=True)
|
||||||
|
asset = self.setup_asset_with_file(bookmark)
|
||||||
|
|
||||||
|
response = self.client.get(reverse("bookmarks:assets.view", args=[asset.id]))
|
||||||
|
self.assertEqual(response.status_code, 404)
|
||||||
|
|
||||||
|
# unshared, sharing enabled
|
||||||
|
profile = self.get_or_create_test_user().profile
|
||||||
|
profile.enable_sharing = True
|
||||||
|
profile.save()
|
||||||
|
bookmark = self.setup_bookmark(shared=False)
|
||||||
|
asset = self.setup_asset_with_file(bookmark)
|
||||||
|
|
||||||
|
response = self.client.get(reverse("bookmarks:assets.view", args=[asset.id]))
|
||||||
|
self.assertEqual(response.status_code, 404)
|
||||||
|
|
||||||
|
# shared, sharing enabled
|
||||||
|
bookmark = self.setup_bookmark(shared=True)
|
||||||
|
asset = self.setup_asset_with_file(bookmark)
|
||||||
|
|
||||||
|
response = self.client.get(reverse("bookmarks:assets.view", args=[asset.id]))
|
||||||
|
self.assertEqual(response.status_code, 404)
|
||||||
|
|
||||||
|
# unshared, public sharing enabled
|
||||||
|
profile.enable_public_sharing = True
|
||||||
|
profile.save()
|
||||||
|
bookmark = self.setup_bookmark(shared=False)
|
||||||
|
asset = self.setup_asset_with_file(bookmark)
|
||||||
|
|
||||||
|
response = self.client.get(reverse("bookmarks:assets.view", args=[asset.id]))
|
||||||
|
self.assertEqual(response.status_code, 404)
|
||||||
|
|
||||||
|
# shared, public sharing enabled
|
||||||
|
bookmark = self.setup_bookmark(shared=True)
|
||||||
|
asset = self.setup_asset_with_file(bookmark)
|
||||||
|
|
||||||
|
response = self.client.get(reverse("bookmarks:assets.view", args=[asset.id]))
|
||||||
|
self.assertEqual(response.status_code, 200)
|
89
bookmarks/tests/test_bookmark_assets.py
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
import os
|
||||||
|
|
||||||
|
from django.conf import settings
|
||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
from bookmarks.tests.helpers import (
|
||||||
|
BookmarkFactoryMixin,
|
||||||
|
)
|
||||||
|
from bookmarks.services import bookmarks
|
||||||
|
|
||||||
|
|
||||||
|
class BookmarkAssetsTestCase(TestCase, BookmarkFactoryMixin):
|
||||||
|
def tearDown(self):
|
||||||
|
temp_files = [
|
||||||
|
f for f in os.listdir(settings.LD_ASSET_FOLDER) if f.startswith("temp")
|
||||||
|
]
|
||||||
|
for temp_file in temp_files:
|
||||||
|
os.remove(os.path.join(settings.LD_ASSET_FOLDER, temp_file))
|
||||||
|
|
||||||
|
def setup_asset_file(self, filename):
|
||||||
|
if not os.path.exists(settings.LD_ASSET_FOLDER):
|
||||||
|
os.makedirs(settings.LD_ASSET_FOLDER)
|
||||||
|
filepath = os.path.join(settings.LD_ASSET_FOLDER, filename)
|
||||||
|
with open(filepath, "w") as f:
|
||||||
|
f.write("test")
|
||||||
|
|
||||||
|
def setup_asset_with_file(self, bookmark):
|
||||||
|
filename = f"temp_{bookmark.id}.html.gzip"
|
||||||
|
self.setup_asset_file(filename)
|
||||||
|
asset = self.setup_asset(bookmark=bookmark, file=filename)
|
||||||
|
return asset
|
||||||
|
|
||||||
|
def test_delete_bookmark_deletes_asset_file(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
asset = self.setup_asset_with_file(bookmark)
|
||||||
|
self.assertTrue(
|
||||||
|
os.path.exists(os.path.join(settings.LD_ASSET_FOLDER, asset.file))
|
||||||
|
)
|
||||||
|
|
||||||
|
bookmark.delete()
|
||||||
|
self.assertFalse(
|
||||||
|
os.path.exists(os.path.join(settings.LD_ASSET_FOLDER, asset.file))
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_bulk_delete_bookmarks_deletes_asset_files(self):
|
||||||
|
bookmark1 = self.setup_bookmark()
|
||||||
|
asset1 = self.setup_asset_with_file(bookmark1)
|
||||||
|
bookmark2 = self.setup_bookmark()
|
||||||
|
asset2 = self.setup_asset_with_file(bookmark2)
|
||||||
|
bookmark3 = self.setup_bookmark()
|
||||||
|
asset3 = self.setup_asset_with_file(bookmark3)
|
||||||
|
self.assertTrue(
|
||||||
|
os.path.exists(os.path.join(settings.LD_ASSET_FOLDER, asset1.file))
|
||||||
|
)
|
||||||
|
self.assertTrue(
|
||||||
|
os.path.exists(os.path.join(settings.LD_ASSET_FOLDER, asset2.file))
|
||||||
|
)
|
||||||
|
self.assertTrue(
|
||||||
|
os.path.exists(os.path.join(settings.LD_ASSET_FOLDER, asset3.file))
|
||||||
|
)
|
||||||
|
|
||||||
|
bookmarks.delete_bookmarks(
|
||||||
|
[bookmark1.id, bookmark2.id, bookmark3.id], self.get_or_create_test_user()
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertFalse(
|
||||||
|
os.path.exists(os.path.join(settings.LD_ASSET_FOLDER, asset1.file))
|
||||||
|
)
|
||||||
|
self.assertFalse(
|
||||||
|
os.path.exists(os.path.join(settings.LD_ASSET_FOLDER, asset2.file))
|
||||||
|
)
|
||||||
|
self.assertFalse(
|
||||||
|
os.path.exists(os.path.join(settings.LD_ASSET_FOLDER, asset3.file))
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_save_updates_file_size(self):
|
||||||
|
# File does not exist initially
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
asset = self.setup_asset(bookmark=bookmark, file="temp.html.gz")
|
||||||
|
self.assertIsNone(asset.file_size)
|
||||||
|
|
||||||
|
# Add file, save again
|
||||||
|
self.setup_asset_file(asset.file)
|
||||||
|
asset.save()
|
||||||
|
self.assertEqual(asset.file_size, 4)
|
||||||
|
|
||||||
|
# Create asset with initial file
|
||||||
|
asset = self.setup_asset(bookmark=bookmark, file="temp.html.gz")
|
||||||
|
self.assertEqual(asset.file_size, 4)
|
819
bookmarks/tests/test_bookmark_details_modal.py
Normal file
@@ -0,0 +1,819 @@
|
|||||||
|
import re
|
||||||
|
from unittest.mock import patch
|
||||||
|
|
||||||
|
from django.test import TestCase, override_settings
|
||||||
|
from django.urls import reverse
|
||||||
|
from django.utils import formats
|
||||||
|
|
||||||
|
from bookmarks.models import BookmarkAsset, UserProfile
|
||||||
|
from bookmarks.services import tasks
|
||||||
|
from bookmarks.tests.helpers import BookmarkFactoryMixin, HtmlTestMixin
|
||||||
|
|
||||||
|
|
||||||
|
class BookmarkDetailsModalTestCase(TestCase, BookmarkFactoryMixin, HtmlTestMixin):
|
||||||
|
def setUp(self):
|
||||||
|
user = self.get_or_create_test_user()
|
||||||
|
self.client.force_login(user)
|
||||||
|
|
||||||
|
def get_view_name(self):
|
||||||
|
return "bookmarks:details_modal"
|
||||||
|
|
||||||
|
def get_base_url(self, bookmark):
|
||||||
|
return reverse(self.get_view_name(), args=[bookmark.id])
|
||||||
|
|
||||||
|
def get_details_form(self, soup, bookmark):
|
||||||
|
expected_url = reverse("bookmarks:details", args=[bookmark.id])
|
||||||
|
return soup.find("form", {"action": expected_url})
|
||||||
|
|
||||||
|
def get_details(self, bookmark, return_url=""):
|
||||||
|
url = self.get_base_url(bookmark)
|
||||||
|
if return_url:
|
||||||
|
url += f"?return_url={return_url}"
|
||||||
|
response = self.client.get(url)
|
||||||
|
soup = self.make_soup(response.content)
|
||||||
|
return soup
|
||||||
|
|
||||||
|
def find_section(self, soup, section_name):
|
||||||
|
dt = soup.find("dt", string=section_name)
|
||||||
|
dd = dt.find_next_sibling("dd") if dt else None
|
||||||
|
return dd
|
||||||
|
|
||||||
|
def get_section(self, soup, section_name):
|
||||||
|
dd = self.find_section(soup, section_name)
|
||||||
|
self.assertIsNotNone(dd)
|
||||||
|
return dd
|
||||||
|
|
||||||
|
def find_weblink(self, soup, url):
|
||||||
|
return soup.find("a", {"class": "weblink", "href": url})
|
||||||
|
|
||||||
|
def find_asset(self, soup, asset):
|
||||||
|
return soup.find("div", {"data-asset-id": asset.id})
|
||||||
|
|
||||||
|
def details_route_access_test(self, view_name: str, shareable: bool):
|
||||||
|
# own bookmark
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
|
||||||
|
response = self.client.get(reverse(view_name, args=[bookmark.id]))
|
||||||
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
|
# other user's bookmark
|
||||||
|
other_user = self.setup_user()
|
||||||
|
bookmark = self.setup_bookmark(user=other_user)
|
||||||
|
|
||||||
|
response = self.client.get(reverse(view_name, args=[bookmark.id]))
|
||||||
|
self.assertEqual(response.status_code, 404)
|
||||||
|
|
||||||
|
# non-existent bookmark
|
||||||
|
response = self.client.get(reverse(view_name, args=[9999]))
|
||||||
|
self.assertEqual(response.status_code, 404)
|
||||||
|
|
||||||
|
# guest user
|
||||||
|
self.client.logout()
|
||||||
|
response = self.client.get(reverse(view_name, args=[bookmark.id]))
|
||||||
|
self.assertEqual(response.status_code, 404 if shareable else 302)
|
||||||
|
|
||||||
|
def details_route_sharing_access_test(self, view_name: str, shareable: bool):
|
||||||
|
# shared bookmark, sharing disabled
|
||||||
|
other_user = self.setup_user()
|
||||||
|
bookmark = self.setup_bookmark(shared=True, user=other_user)
|
||||||
|
|
||||||
|
response = self.client.get(reverse(view_name, args=[bookmark.id]))
|
||||||
|
self.assertEqual(response.status_code, 404)
|
||||||
|
|
||||||
|
# shared bookmark, sharing enabled
|
||||||
|
profile = other_user.profile
|
||||||
|
profile.enable_sharing = True
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
response = self.client.get(reverse(view_name, args=[bookmark.id]))
|
||||||
|
self.assertEqual(response.status_code, 200 if shareable else 404)
|
||||||
|
|
||||||
|
# shared bookmark, guest user, no public sharing
|
||||||
|
self.client.logout()
|
||||||
|
response = self.client.get(reverse(view_name, args=[bookmark.id]))
|
||||||
|
self.assertEqual(response.status_code, 404 if shareable else 302)
|
||||||
|
|
||||||
|
# shared bookmark, guest user, public sharing
|
||||||
|
profile.enable_public_sharing = True
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
response = self.client.get(reverse(view_name, args=[bookmark.id]))
|
||||||
|
self.assertEqual(response.status_code, 200 if shareable else 302)
|
||||||
|
|
||||||
|
def test_access(self):
|
||||||
|
self.details_route_access_test(self.get_view_name(), True)
|
||||||
|
|
||||||
|
def test_access_with_sharing(self):
|
||||||
|
self.details_route_sharing_access_test(self.get_view_name(), True)
|
||||||
|
|
||||||
|
def test_assets_access(self):
|
||||||
|
self.details_route_access_test("bookmarks:details_assets", True)
|
||||||
|
|
||||||
|
def test_assets_access_with_sharing(self):
|
||||||
|
self.details_route_sharing_access_test("bookmarks:details_assets", True)
|
||||||
|
|
||||||
|
def test_displays_title(self):
|
||||||
|
# with title
|
||||||
|
bookmark = self.setup_bookmark(title="Test title")
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
|
||||||
|
title = soup.find("h2")
|
||||||
|
self.assertIsNotNone(title)
|
||||||
|
self.assertEqual(title.text.strip(), bookmark.title)
|
||||||
|
|
||||||
|
# with website title
|
||||||
|
bookmark = self.setup_bookmark(title="", website_title="Website title")
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
|
||||||
|
title = soup.find("h2")
|
||||||
|
self.assertIsNotNone(title)
|
||||||
|
self.assertEqual(title.text.strip(), bookmark.website_title)
|
||||||
|
|
||||||
|
# with URL only
|
||||||
|
bookmark = self.setup_bookmark(title="", website_title="")
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
|
||||||
|
title = soup.find("h2")
|
||||||
|
self.assertIsNotNone(title)
|
||||||
|
self.assertEqual(title.text.strip(), bookmark.url)
|
||||||
|
|
||||||
|
def test_website_link(self):
|
||||||
|
# basics
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
link = self.find_weblink(soup, bookmark.url)
|
||||||
|
self.assertIsNotNone(link)
|
||||||
|
self.assertEqual(link["href"], bookmark.url)
|
||||||
|
self.assertEqual(link.text.strip(), bookmark.url)
|
||||||
|
|
||||||
|
# favicons disabled
|
||||||
|
bookmark = self.setup_bookmark(favicon_file="example.png")
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
link = self.find_weblink(soup, bookmark.url)
|
||||||
|
image = link.select_one("img")
|
||||||
|
self.assertIsNone(image)
|
||||||
|
|
||||||
|
# favicons enabled, no favicon
|
||||||
|
profile = self.get_or_create_test_user().profile
|
||||||
|
profile.enable_favicons = True
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
bookmark = self.setup_bookmark(favicon_file="")
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
link = self.find_weblink(soup, bookmark.url)
|
||||||
|
image = link.select_one("img")
|
||||||
|
self.assertIsNone(image)
|
||||||
|
|
||||||
|
# favicons enabled, favicon present
|
||||||
|
bookmark = self.setup_bookmark(favicon_file="example.png")
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
link = self.find_weblink(soup, bookmark.url)
|
||||||
|
image = link.select_one("img")
|
||||||
|
self.assertIsNotNone(image)
|
||||||
|
self.assertEqual(image["src"], "/static/example.png")
|
||||||
|
|
||||||
|
def test_internet_archive_link(self):
|
||||||
|
# without snapshot url
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
link = self.find_weblink(soup, bookmark.web_archive_snapshot_url)
|
||||||
|
self.assertIsNone(link)
|
||||||
|
|
||||||
|
# with snapshot url
|
||||||
|
bookmark = self.setup_bookmark(web_archive_snapshot_url="https://example.com/")
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
link = self.find_weblink(soup, bookmark.web_archive_snapshot_url)
|
||||||
|
self.assertIsNotNone(link)
|
||||||
|
self.assertEqual(link["href"], bookmark.web_archive_snapshot_url)
|
||||||
|
self.assertEqual(link.text.strip(), "View on Internet Archive")
|
||||||
|
|
||||||
|
# favicons disabled
|
||||||
|
bookmark = self.setup_bookmark(
|
||||||
|
web_archive_snapshot_url="https://example.com/", favicon_file="example.png"
|
||||||
|
)
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
link = self.find_weblink(soup, bookmark.web_archive_snapshot_url)
|
||||||
|
image = link.select_one("svg")
|
||||||
|
self.assertIsNone(image)
|
||||||
|
|
||||||
|
# favicons enabled, no favicon
|
||||||
|
profile = self.get_or_create_test_user().profile
|
||||||
|
profile.enable_favicons = True
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
bookmark = self.setup_bookmark(
|
||||||
|
web_archive_snapshot_url="https://example.com/", favicon_file=""
|
||||||
|
)
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
link = self.find_weblink(soup, bookmark.web_archive_snapshot_url)
|
||||||
|
image = link.select_one("svg")
|
||||||
|
self.assertIsNone(image)
|
||||||
|
|
||||||
|
# favicons enabled, favicon present
|
||||||
|
bookmark = self.setup_bookmark(
|
||||||
|
web_archive_snapshot_url="https://example.com/", favicon_file="example.png"
|
||||||
|
)
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
link = self.find_weblink(soup, bookmark.web_archive_snapshot_url)
|
||||||
|
image = link.select_one("svg")
|
||||||
|
self.assertIsNotNone(image)
|
||||||
|
|
||||||
|
def test_weblinks_respect_target_setting(self):
|
||||||
|
bookmark = self.setup_bookmark(web_archive_snapshot_url="https://example.com/")
|
||||||
|
|
||||||
|
# target blank
|
||||||
|
profile = self.get_or_create_test_user().profile
|
||||||
|
profile.bookmark_link_target = UserProfile.BOOKMARK_LINK_TARGET_BLANK
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
|
||||||
|
website_link = self.find_weblink(soup, bookmark.url)
|
||||||
|
self.assertIsNotNone(website_link)
|
||||||
|
self.assertEqual(website_link["target"], UserProfile.BOOKMARK_LINK_TARGET_BLANK)
|
||||||
|
|
||||||
|
web_archive_link = self.find_weblink(soup, bookmark.web_archive_snapshot_url)
|
||||||
|
self.assertIsNotNone(web_archive_link)
|
||||||
|
self.assertEqual(
|
||||||
|
web_archive_link["target"], UserProfile.BOOKMARK_LINK_TARGET_BLANK
|
||||||
|
)
|
||||||
|
|
||||||
|
# target self
|
||||||
|
profile.bookmark_link_target = UserProfile.BOOKMARK_LINK_TARGET_SELF
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
|
||||||
|
website_link = self.find_weblink(soup, bookmark.url)
|
||||||
|
self.assertIsNotNone(website_link)
|
||||||
|
self.assertEqual(website_link["target"], UserProfile.BOOKMARK_LINK_TARGET_SELF)
|
||||||
|
|
||||||
|
web_archive_link = self.find_weblink(soup, bookmark.web_archive_snapshot_url)
|
||||||
|
self.assertIsNotNone(web_archive_link)
|
||||||
|
self.assertEqual(
|
||||||
|
web_archive_link["target"], UserProfile.BOOKMARK_LINK_TARGET_SELF
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_status(self):
|
||||||
|
# renders form
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
|
||||||
|
form = self.get_details_form(soup, bookmark)
|
||||||
|
self.assertIsNotNone(form)
|
||||||
|
self.assertEqual(
|
||||||
|
form["action"], reverse("bookmarks:details", args=[bookmark.id])
|
||||||
|
)
|
||||||
|
self.assertEqual(form["method"], "post")
|
||||||
|
|
||||||
|
# sharing disabled
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
section = self.get_section(soup, "Status")
|
||||||
|
|
||||||
|
archived = section.find("input", {"type": "checkbox", "name": "is_archived"})
|
||||||
|
self.assertIsNotNone(archived)
|
||||||
|
unread = section.find("input", {"type": "checkbox", "name": "unread"})
|
||||||
|
self.assertIsNotNone(unread)
|
||||||
|
shared = section.find("input", {"type": "checkbox", "name": "shared"})
|
||||||
|
self.assertIsNone(shared)
|
||||||
|
|
||||||
|
# sharing enabled
|
||||||
|
profile = self.get_or_create_test_user().profile
|
||||||
|
profile.enable_sharing = True
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
section = self.get_section(soup, "Status")
|
||||||
|
|
||||||
|
archived = section.find("input", {"type": "checkbox", "name": "is_archived"})
|
||||||
|
self.assertIsNotNone(archived)
|
||||||
|
unread = section.find("input", {"type": "checkbox", "name": "unread"})
|
||||||
|
self.assertIsNotNone(unread)
|
||||||
|
shared = section.find("input", {"type": "checkbox", "name": "shared"})
|
||||||
|
self.assertIsNotNone(shared)
|
||||||
|
|
||||||
|
# unchecked
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
section = self.get_section(soup, "Status")
|
||||||
|
|
||||||
|
archived = section.find("input", {"type": "checkbox", "name": "is_archived"})
|
||||||
|
self.assertFalse(archived.has_attr("checked"))
|
||||||
|
unread = section.find("input", {"type": "checkbox", "name": "unread"})
|
||||||
|
self.assertFalse(unread.has_attr("checked"))
|
||||||
|
shared = section.find("input", {"type": "checkbox", "name": "shared"})
|
||||||
|
self.assertFalse(shared.has_attr("checked"))
|
||||||
|
|
||||||
|
# checked
|
||||||
|
bookmark = self.setup_bookmark(is_archived=True, unread=True, shared=True)
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
section = self.get_section(soup, "Status")
|
||||||
|
|
||||||
|
archived = section.find("input", {"type": "checkbox", "name": "is_archived"})
|
||||||
|
self.assertTrue(archived.has_attr("checked"))
|
||||||
|
unread = section.find("input", {"type": "checkbox", "name": "unread"})
|
||||||
|
self.assertTrue(unread.has_attr("checked"))
|
||||||
|
shared = section.find("input", {"type": "checkbox", "name": "shared"})
|
||||||
|
self.assertTrue(shared.has_attr("checked"))
|
||||||
|
|
||||||
|
def test_status_visibility(self):
|
||||||
|
# own bookmark
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
section = self.find_section(soup, "Status")
|
||||||
|
self.assertIsNotNone(section)
|
||||||
|
|
||||||
|
# other user's bookmark
|
||||||
|
other_user = self.setup_user(enable_sharing=True)
|
||||||
|
bookmark = self.setup_bookmark(user=other_user, shared=True)
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
section = self.find_section(soup, "Status")
|
||||||
|
self.assertIsNone(section)
|
||||||
|
|
||||||
|
# guest user
|
||||||
|
self.client.logout()
|
||||||
|
bookmark = self.setup_bookmark(user=other_user, shared=True)
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
section = self.find_section(soup, "Status")
|
||||||
|
self.assertIsNone(section)
|
||||||
|
|
||||||
|
def test_status_update(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
|
||||||
|
# update status
|
||||||
|
response = self.client.post(
|
||||||
|
self.get_base_url(bookmark),
|
||||||
|
{"is_archived": "on", "unread": "on", "shared": "on"},
|
||||||
|
)
|
||||||
|
self.assertEqual(response.status_code, 302)
|
||||||
|
|
||||||
|
bookmark.refresh_from_db()
|
||||||
|
self.assertTrue(bookmark.is_archived)
|
||||||
|
self.assertTrue(bookmark.unread)
|
||||||
|
self.assertTrue(bookmark.shared)
|
||||||
|
|
||||||
|
# update individual status
|
||||||
|
response = self.client.post(
|
||||||
|
self.get_base_url(bookmark),
|
||||||
|
{"is_archived": "", "unread": "on", "shared": ""},
|
||||||
|
)
|
||||||
|
self.assertEqual(response.status_code, 302)
|
||||||
|
|
||||||
|
bookmark.refresh_from_db()
|
||||||
|
self.assertFalse(bookmark.is_archived)
|
||||||
|
self.assertTrue(bookmark.unread)
|
||||||
|
self.assertFalse(bookmark.shared)
|
||||||
|
|
||||||
|
def test_status_update_access(self):
|
||||||
|
# no sharing
|
||||||
|
other_user = self.setup_user()
|
||||||
|
bookmark = self.setup_bookmark(user=other_user)
|
||||||
|
response = self.client.post(
|
||||||
|
self.get_base_url(bookmark),
|
||||||
|
{"is_archived": "on", "unread": "on", "shared": "on"},
|
||||||
|
)
|
||||||
|
self.assertEqual(response.status_code, 404)
|
||||||
|
|
||||||
|
# shared, sharing disabled
|
||||||
|
bookmark = self.setup_bookmark(user=other_user, shared=True)
|
||||||
|
response = self.client.post(
|
||||||
|
self.get_base_url(bookmark),
|
||||||
|
{"is_archived": "on", "unread": "on", "shared": "on"},
|
||||||
|
)
|
||||||
|
self.assertEqual(response.status_code, 404)
|
||||||
|
|
||||||
|
# shared, sharing enabled
|
||||||
|
bookmark = self.setup_bookmark(user=other_user, shared=True)
|
||||||
|
profile = other_user.profile
|
||||||
|
profile.enable_sharing = True
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
response = self.client.post(
|
||||||
|
self.get_base_url(bookmark),
|
||||||
|
{"is_archived": "on", "unread": "on", "shared": "on"},
|
||||||
|
)
|
||||||
|
self.assertEqual(response.status_code, 404)
|
||||||
|
|
||||||
|
# shared, public sharing enabled
|
||||||
|
bookmark = self.setup_bookmark(user=other_user, shared=True)
|
||||||
|
profile = other_user.profile
|
||||||
|
profile.enable_public_sharing = True
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
response = self.client.post(
|
||||||
|
self.get_base_url(bookmark),
|
||||||
|
{"is_archived": "on", "unread": "on", "shared": "on"},
|
||||||
|
)
|
||||||
|
self.assertEqual(response.status_code, 404)
|
||||||
|
|
||||||
|
# guest user
|
||||||
|
self.client.logout()
|
||||||
|
bookmark = self.setup_bookmark(user=other_user, shared=True)
|
||||||
|
|
||||||
|
response = self.client.post(
|
||||||
|
self.get_base_url(bookmark),
|
||||||
|
{"is_archived": "on", "unread": "on", "shared": "on"},
|
||||||
|
)
|
||||||
|
self.assertEqual(response.status_code, 404)
|
||||||
|
|
||||||
|
def test_date_added(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
section = self.get_section(soup, "Date added")
|
||||||
|
|
||||||
|
expected_date = formats.date_format(bookmark.date_added, "DATETIME_FORMAT")
|
||||||
|
date = section.find("span", string=expected_date)
|
||||||
|
self.assertIsNotNone(date)
|
||||||
|
|
||||||
|
def test_tags(self):
|
||||||
|
# without tags
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
|
||||||
|
section = self.find_section(soup, "Tags")
|
||||||
|
self.assertIsNone(section)
|
||||||
|
|
||||||
|
# with tags
|
||||||
|
bookmark = self.setup_bookmark(tags=[self.setup_tag(), self.setup_tag()])
|
||||||
|
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
section = self.get_section(soup, "Tags")
|
||||||
|
|
||||||
|
for tag in bookmark.tags.all():
|
||||||
|
tag_link = section.find("a", string=f"#{tag.name}")
|
||||||
|
self.assertIsNotNone(tag_link)
|
||||||
|
expected_url = reverse("bookmarks:index") + f"?q=%23{tag.name}"
|
||||||
|
self.assertEqual(tag_link["href"], expected_url)
|
||||||
|
|
||||||
|
def test_description(self):
|
||||||
|
# without description
|
||||||
|
bookmark = self.setup_bookmark(description="", website_description="")
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
|
||||||
|
section = self.find_section(soup, "Description")
|
||||||
|
self.assertIsNone(section)
|
||||||
|
|
||||||
|
# with description
|
||||||
|
bookmark = self.setup_bookmark(description="Test description")
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
|
||||||
|
section = self.get_section(soup, "Description")
|
||||||
|
self.assertEqual(section.text.strip(), bookmark.description)
|
||||||
|
|
||||||
|
# with website description
|
||||||
|
bookmark = self.setup_bookmark(
|
||||||
|
description="", website_description="Website description"
|
||||||
|
)
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
|
||||||
|
section = self.get_section(soup, "Description")
|
||||||
|
self.assertEqual(section.text.strip(), bookmark.website_description)
|
||||||
|
|
||||||
|
def test_notes(self):
|
||||||
|
# without notes
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
|
||||||
|
section = self.find_section(soup, "Notes")
|
||||||
|
self.assertIsNone(section)
|
||||||
|
|
||||||
|
# with notes
|
||||||
|
bookmark = self.setup_bookmark(notes="Test notes")
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
|
||||||
|
section = self.get_section(soup, "Notes")
|
||||||
|
self.assertEqual(section.decode_contents(), "<p>Test notes</p>")
|
||||||
|
|
||||||
|
def test_edit_link(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
|
||||||
|
# with default return URL
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
edit_link = soup.find("a", string="Edit")
|
||||||
|
self.assertIsNotNone(edit_link)
|
||||||
|
details_url = reverse("bookmarks:details", args=[bookmark.id])
|
||||||
|
expected_url = (
|
||||||
|
reverse("bookmarks:edit", args=[bookmark.id]) + "?return_url=" + details_url
|
||||||
|
)
|
||||||
|
self.assertEqual(edit_link["href"], expected_url)
|
||||||
|
|
||||||
|
# with custom return URL
|
||||||
|
soup = self.get_details(bookmark, return_url="/custom")
|
||||||
|
edit_link = soup.find("a", string="Edit")
|
||||||
|
self.assertIsNotNone(edit_link)
|
||||||
|
expected_url = (
|
||||||
|
reverse("bookmarks:edit", args=[bookmark.id]) + "?return_url=/custom"
|
||||||
|
)
|
||||||
|
self.assertEqual(edit_link["href"], expected_url)
|
||||||
|
|
||||||
|
def test_delete_button(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
|
||||||
|
# basics
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
delete_button = soup.find("button", {"type": "submit", "name": "remove"})
|
||||||
|
self.assertIsNotNone(delete_button)
|
||||||
|
self.assertEqual(delete_button.text.strip(), "Delete...")
|
||||||
|
self.assertEqual(delete_button["value"], str(bookmark.id))
|
||||||
|
|
||||||
|
form = delete_button.find_parent("form")
|
||||||
|
self.assertIsNotNone(form)
|
||||||
|
expected_url = reverse("bookmarks:index.action") + f"?return_url=/bookmarks"
|
||||||
|
self.assertEqual(form["action"], expected_url)
|
||||||
|
|
||||||
|
# with custom return URL
|
||||||
|
soup = self.get_details(bookmark, return_url="/custom")
|
||||||
|
delete_button = soup.find("button", {"type": "submit", "name": "remove"})
|
||||||
|
form = delete_button.find_parent("form")
|
||||||
|
expected_url = reverse("bookmarks:index.action") + f"?return_url=/custom"
|
||||||
|
self.assertEqual(form["action"], expected_url)
|
||||||
|
|
||||||
|
def test_actions_visibility(self):
|
||||||
|
# with sharing
|
||||||
|
other_user = self.setup_user(enable_sharing=True)
|
||||||
|
bookmark = self.setup_bookmark(user=other_user, shared=True)
|
||||||
|
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
edit_link = soup.find("a", string="Edit")
|
||||||
|
delete_button = soup.find("button", {"type": "submit", "name": "remove"})
|
||||||
|
self.assertIsNone(edit_link)
|
||||||
|
self.assertIsNone(delete_button)
|
||||||
|
|
||||||
|
# with public sharing
|
||||||
|
profile = other_user.profile
|
||||||
|
profile.enable_public_sharing = True
|
||||||
|
profile.save()
|
||||||
|
bookmark = self.setup_bookmark(user=other_user, shared=True)
|
||||||
|
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
edit_link = soup.find("a", string="Edit")
|
||||||
|
delete_button = soup.find("button", {"type": "submit", "name": "remove"})
|
||||||
|
self.assertIsNone(edit_link)
|
||||||
|
self.assertIsNone(delete_button)
|
||||||
|
|
||||||
|
# guest user
|
||||||
|
self.client.logout()
|
||||||
|
bookmark = self.setup_bookmark(user=other_user, shared=True)
|
||||||
|
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
edit_link = soup.find("a", string="Edit")
|
||||||
|
delete_button = soup.find("button", {"type": "submit", "name": "remove"})
|
||||||
|
self.assertIsNone(edit_link)
|
||||||
|
self.assertIsNone(delete_button)
|
||||||
|
|
||||||
|
def test_assets_visibility_no_snapshot_support(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
section = self.find_section(soup, "Files")
|
||||||
|
self.assertIsNone(section)
|
||||||
|
|
||||||
|
@override_settings(LD_ENABLE_SNAPSHOTS=True)
|
||||||
|
def test_assets_visibility_with_snapshot_support(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
section = self.find_section(soup, "Files")
|
||||||
|
self.assertIsNotNone(section)
|
||||||
|
|
||||||
|
@override_settings(LD_ENABLE_SNAPSHOTS=True)
|
||||||
|
def test_asset_list_visibility(self):
|
||||||
|
# no assets
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
section = self.get_section(soup, "Files")
|
||||||
|
asset_list = section.find("div", {"class": "assets"})
|
||||||
|
self.assertIsNone(asset_list)
|
||||||
|
|
||||||
|
# with assets
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
self.setup_asset(bookmark)
|
||||||
|
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
section = self.get_section(soup, "Files")
|
||||||
|
asset_list = section.find("div", {"class": "assets"})
|
||||||
|
self.assertIsNotNone(asset_list)
|
||||||
|
|
||||||
|
@override_settings(LD_ENABLE_SNAPSHOTS=True)
|
||||||
|
def test_asset_list(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
assets = [
|
||||||
|
self.setup_asset(bookmark),
|
||||||
|
self.setup_asset(bookmark),
|
||||||
|
self.setup_asset(bookmark),
|
||||||
|
]
|
||||||
|
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
section = self.get_section(soup, "Files")
|
||||||
|
asset_list = section.find("div", {"class": "assets"})
|
||||||
|
|
||||||
|
for asset in assets:
|
||||||
|
asset_item = self.find_asset(asset_list, asset)
|
||||||
|
self.assertIsNotNone(asset_item)
|
||||||
|
|
||||||
|
asset_icon = asset_item.select_one(".asset-icon svg")
|
||||||
|
self.assertIsNotNone(asset_icon)
|
||||||
|
|
||||||
|
asset_text = asset_item.select_one(".asset-text span")
|
||||||
|
self.assertIsNotNone(asset_text)
|
||||||
|
self.assertIn(asset.display_name, asset_text.text)
|
||||||
|
|
||||||
|
view_url = reverse("bookmarks:assets.view", args=[asset.id])
|
||||||
|
view_link = asset_item.find("a", {"href": view_url})
|
||||||
|
self.assertIsNotNone(view_link)
|
||||||
|
|
||||||
|
@override_settings(LD_ENABLE_SNAPSHOTS=True)
|
||||||
|
def test_asset_without_file(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
asset = self.setup_asset(bookmark)
|
||||||
|
asset.file = ""
|
||||||
|
asset.save()
|
||||||
|
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
asset_item = self.find_asset(soup, asset)
|
||||||
|
view_url = reverse("bookmarks:assets.view", args=[asset.id])
|
||||||
|
view_link = asset_item.find("a", {"href": view_url})
|
||||||
|
self.assertIsNone(view_link)
|
||||||
|
|
||||||
|
@override_settings(LD_ENABLE_SNAPSHOTS=True)
|
||||||
|
def test_asset_status(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
pending_asset = self.setup_asset(bookmark, status=BookmarkAsset.STATUS_PENDING)
|
||||||
|
failed_asset = self.setup_asset(bookmark, status=BookmarkAsset.STATUS_FAILURE)
|
||||||
|
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
|
||||||
|
asset_item = self.find_asset(soup, pending_asset)
|
||||||
|
asset_text = asset_item.select_one(".asset-text span")
|
||||||
|
self.assertIn("(queued)", asset_text.text)
|
||||||
|
|
||||||
|
asset_item = self.find_asset(soup, failed_asset)
|
||||||
|
asset_text = asset_item.select_one(".asset-text span")
|
||||||
|
self.assertIn("(failed)", asset_text.text)
|
||||||
|
|
||||||
|
@override_settings(LD_ENABLE_SNAPSHOTS=True)
|
||||||
|
def test_asset_file_size(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
asset1 = self.setup_asset(bookmark, file_size=None)
|
||||||
|
asset2 = self.setup_asset(bookmark, file_size=54639)
|
||||||
|
asset3 = self.setup_asset(bookmark, file_size=11492020)
|
||||||
|
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
|
||||||
|
asset_item = self.find_asset(soup, asset1)
|
||||||
|
asset_text = asset_item.select_one(".asset-text")
|
||||||
|
self.assertEqual(asset_text.text.strip(), asset1.display_name)
|
||||||
|
|
||||||
|
asset_item = self.find_asset(soup, asset2)
|
||||||
|
asset_text = asset_item.select_one(".asset-text")
|
||||||
|
self.assertIn("53.4\xa0KB", asset_text.text)
|
||||||
|
|
||||||
|
asset_item = self.find_asset(soup, asset3)
|
||||||
|
asset_text = asset_item.select_one(".asset-text")
|
||||||
|
self.assertIn("11.0\xa0MB", asset_text.text)
|
||||||
|
|
||||||
|
@override_settings(LD_ENABLE_SNAPSHOTS=True)
|
||||||
|
def test_asset_actions_visibility(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
|
||||||
|
# with file
|
||||||
|
asset = self.setup_asset(bookmark)
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
|
||||||
|
asset_item = self.find_asset(soup, asset)
|
||||||
|
view_link = asset_item.find("a", string="View")
|
||||||
|
delete_button = asset_item.find(
|
||||||
|
"button", {"type": "submit", "name": "remove_asset"}
|
||||||
|
)
|
||||||
|
self.assertIsNotNone(view_link)
|
||||||
|
self.assertIsNotNone(delete_button)
|
||||||
|
|
||||||
|
# without file
|
||||||
|
asset.file = ""
|
||||||
|
asset.save()
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
|
||||||
|
asset_item = self.find_asset(soup, asset)
|
||||||
|
view_link = asset_item.find("a", string="View")
|
||||||
|
delete_button = asset_item.find(
|
||||||
|
"button", {"type": "submit", "name": "remove_asset"}
|
||||||
|
)
|
||||||
|
self.assertIsNone(view_link)
|
||||||
|
self.assertIsNotNone(delete_button)
|
||||||
|
|
||||||
|
# shared bookmark
|
||||||
|
other_user = self.setup_user(enable_sharing=True, enable_public_sharing=True)
|
||||||
|
bookmark = self.setup_bookmark(shared=True, user=other_user)
|
||||||
|
asset = self.setup_asset(bookmark)
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
|
||||||
|
asset_item = self.find_asset(soup, asset)
|
||||||
|
view_link = asset_item.find("a", string="View")
|
||||||
|
delete_button = asset_item.find(
|
||||||
|
"button", {"type": "submit", "name": "remove_asset"}
|
||||||
|
)
|
||||||
|
self.assertIsNotNone(view_link)
|
||||||
|
self.assertIsNone(delete_button)
|
||||||
|
|
||||||
|
# shared bookmark, guest user
|
||||||
|
self.client.logout()
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
|
||||||
|
asset_item = self.find_asset(soup, asset)
|
||||||
|
view_link = asset_item.find("a", string="View")
|
||||||
|
delete_button = asset_item.find(
|
||||||
|
"button", {"type": "submit", "name": "remove_asset"}
|
||||||
|
)
|
||||||
|
self.assertIsNotNone(view_link)
|
||||||
|
self.assertIsNone(delete_button)
|
||||||
|
|
||||||
|
def test_remove_asset(self):
|
||||||
|
# remove asset
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
asset = self.setup_asset(bookmark)
|
||||||
|
|
||||||
|
response = self.client.post(
|
||||||
|
self.get_base_url(bookmark), {"remove_asset": asset.id}
|
||||||
|
)
|
||||||
|
self.assertEqual(response.status_code, 302)
|
||||||
|
self.assertFalse(BookmarkAsset.objects.filter(id=asset.id).exists())
|
||||||
|
|
||||||
|
# non-existent asset
|
||||||
|
response = self.client.post(self.get_base_url(bookmark), {"remove_asset": 9999})
|
||||||
|
self.assertEqual(response.status_code, 404)
|
||||||
|
|
||||||
|
# post without asset ID does not remove
|
||||||
|
asset = self.setup_asset(bookmark)
|
||||||
|
response = self.client.post(self.get_base_url(bookmark))
|
||||||
|
self.assertEqual(response.status_code, 302)
|
||||||
|
self.assertTrue(BookmarkAsset.objects.filter(id=asset.id).exists())
|
||||||
|
|
||||||
|
# guest user
|
||||||
|
asset = self.setup_asset(bookmark)
|
||||||
|
self.client.logout()
|
||||||
|
response = self.client.post(
|
||||||
|
self.get_base_url(bookmark), {"remove_asset": asset.id}
|
||||||
|
)
|
||||||
|
self.assertEqual(response.status_code, 404)
|
||||||
|
self.assertTrue(BookmarkAsset.objects.filter(id=asset.id).exists())
|
||||||
|
|
||||||
|
@override_settings(LD_ENABLE_SNAPSHOTS=True)
|
||||||
|
def test_assets_refresh_when_having_pending_asset(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
asset = self.setup_asset(bookmark, status=BookmarkAsset.STATUS_COMPLETE)
|
||||||
|
fetch_url = reverse("bookmarks:details_assets", args=[bookmark.id])
|
||||||
|
|
||||||
|
# no pending asset
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
files_section = self.find_section(soup, "Files")
|
||||||
|
assets_wrapper = files_section.find("div", {"ld-fetch": fetch_url})
|
||||||
|
self.assertIsNone(assets_wrapper)
|
||||||
|
|
||||||
|
# with pending asset
|
||||||
|
asset.status = BookmarkAsset.STATUS_PENDING
|
||||||
|
asset.save()
|
||||||
|
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
files_section = self.find_section(soup, "Files")
|
||||||
|
assets_wrapper = files_section.find("div", {"ld-fetch": fetch_url})
|
||||||
|
self.assertIsNotNone(assets_wrapper)
|
||||||
|
|
||||||
|
@override_settings(LD_ENABLE_SNAPSHOTS=True)
|
||||||
|
def test_create_snapshot(self):
|
||||||
|
with patch.object(
|
||||||
|
tasks, "_create_html_snapshot_task"
|
||||||
|
) as mock_create_html_snapshot_task:
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
response = self.client.post(
|
||||||
|
self.get_base_url(bookmark), {"create_snapshot": ""}
|
||||||
|
)
|
||||||
|
self.assertEqual(response.status_code, 302)
|
||||||
|
|
||||||
|
self.assertEqual(bookmark.bookmarkasset_set.count(), 1)
|
||||||
|
|
||||||
|
@override_settings(LD_ENABLE_SNAPSHOTS=True)
|
||||||
|
def test_create_snapshot_is_disabled_when_having_pending_asset(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
asset = self.setup_asset(bookmark, status=BookmarkAsset.STATUS_COMPLETE)
|
||||||
|
|
||||||
|
# no pending asset
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
files_section = self.find_section(soup, "Files")
|
||||||
|
create_button = files_section.find(
|
||||||
|
"button", string=re.compile("Create HTML snapshot")
|
||||||
|
)
|
||||||
|
self.assertFalse(create_button.has_attr("disabled"))
|
||||||
|
|
||||||
|
# with pending asset
|
||||||
|
asset.status = BookmarkAsset.STATUS_PENDING
|
||||||
|
asset.save()
|
||||||
|
|
||||||
|
soup = self.get_details(bookmark)
|
||||||
|
files_section = self.find_section(soup, "Files")
|
||||||
|
create_button = files_section.find(
|
||||||
|
"button", string=re.compile("Create HTML snapshot")
|
||||||
|
)
|
||||||
|
self.assertTrue(create_button.has_attr("disabled"))
|
6
bookmarks/tests/test_bookmark_details_view.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
from bookmarks.tests.test_bookmark_details_modal import BookmarkDetailsModalTestCase
|
||||||
|
|
||||||
|
|
||||||
|
class BookmarkDetailsViewTestCase(BookmarkDetailsModalTestCase):
|
||||||
|
def get_view_name(self):
|
||||||
|
return "bookmarks:details"
|
@@ -94,15 +94,10 @@ class BookmarkIndexViewTestCase(TestCase, BookmarkFactoryMixin, HtmlTestMixin):
|
|||||||
)
|
)
|
||||||
|
|
||||||
def assertBulkActionForm(self, response, url: str):
|
def assertBulkActionForm(self, response, url: str):
|
||||||
html = collapse_whitespace(response.content.decode())
|
soup = self.make_soup(response.content.decode())
|
||||||
needle = collapse_whitespace(
|
form = soup.select_one("form.bookmark-actions")
|
||||||
f"""
|
self.assertIsNotNone(form)
|
||||||
<form class="bookmark-actions"
|
self.assertEqual(form.attrs["action"], url)
|
||||||
action="{url}"
|
|
||||||
method="post" autocomplete="off">
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
self.assertIn(needle, html)
|
|
||||||
|
|
||||||
def test_should_list_unarchived_and_user_owned_bookmarks(self):
|
def test_should_list_unarchived_and_user_owned_bookmarks(self):
|
||||||
other_user = User.objects.create_user(
|
other_user = User.objects.create_user(
|
||||||
|
@@ -35,6 +35,7 @@ class BookmarksApiTestCase(LinkdingApiTestCase, BookmarkFactoryMixin):
|
|||||||
expectation["notes"] = bookmark.notes
|
expectation["notes"] = bookmark.notes
|
||||||
expectation["website_title"] = bookmark.website_title
|
expectation["website_title"] = bookmark.website_title
|
||||||
expectation["website_description"] = bookmark.website_description
|
expectation["website_description"] = bookmark.website_description
|
||||||
|
expectation["web_archive_snapshot_url"] = bookmark.web_archive_snapshot_url
|
||||||
expectation["is_archived"] = bookmark.is_archived
|
expectation["is_archived"] = bookmark.is_archived
|
||||||
expectation["unread"] = bookmark.unread
|
expectation["unread"] = bookmark.unread
|
||||||
expectation["shared"] = bookmark.shared
|
expectation["shared"] = bookmark.shared
|
||||||
@@ -61,6 +62,17 @@ class BookmarksApiTestCase(LinkdingApiTestCase, BookmarkFactoryMixin):
|
|||||||
)
|
)
|
||||||
self.assertBookmarkListEqual(response.data["results"], bookmarks)
|
self.assertBookmarkListEqual(response.data["results"], bookmarks)
|
||||||
|
|
||||||
|
def test_list_bookmarks_with_more_details(self):
|
||||||
|
self.authenticate()
|
||||||
|
bookmarks = self.setup_numbered_bookmarks(
|
||||||
|
5, with_tags=True, with_web_archive_snapshot_url=True
|
||||||
|
)
|
||||||
|
|
||||||
|
response = self.get(
|
||||||
|
reverse("bookmarks:bookmark-list"), expected_status_code=status.HTTP_200_OK
|
||||||
|
)
|
||||||
|
self.assertBookmarkListEqual(response.data["results"], bookmarks)
|
||||||
|
|
||||||
def test_list_bookmarks_does_not_return_archived_bookmarks(self):
|
def test_list_bookmarks_does_not_return_archived_bookmarks(self):
|
||||||
self.authenticate()
|
self.authenticate()
|
||||||
bookmarks = self.setup_numbered_bookmarks(5)
|
bookmarks = self.setup_numbered_bookmarks(5)
|
||||||
@@ -436,6 +448,18 @@ class BookmarksApiTestCase(LinkdingApiTestCase, BookmarkFactoryMixin):
|
|||||||
response = self.get(url, expected_status_code=status.HTTP_200_OK)
|
response = self.get(url, expected_status_code=status.HTTP_200_OK)
|
||||||
self.assertBookmarkListEqual([response.data], [bookmark])
|
self.assertBookmarkListEqual([response.data], [bookmark])
|
||||||
|
|
||||||
|
def test_get_bookmark_with_more_details(self):
|
||||||
|
self.authenticate()
|
||||||
|
tag1 = self.setup_tag()
|
||||||
|
bookmark = self.setup_bookmark(
|
||||||
|
web_archive_snapshot_url="https://web.archive.org/web/1/",
|
||||||
|
tags=[tag1],
|
||||||
|
)
|
||||||
|
|
||||||
|
url = reverse("bookmarks:bookmark-detail", args=[bookmark.id])
|
||||||
|
response = self.get(url, expected_status_code=status.HTTP_200_OK)
|
||||||
|
self.assertBookmarkListEqual([response.data], [bookmark])
|
||||||
|
|
||||||
def test_update_bookmark(self):
|
def test_update_bookmark(self):
|
||||||
self.authenticate()
|
self.authenticate()
|
||||||
bookmark = self.setup_bookmark()
|
bookmark = self.setup_bookmark()
|
||||||
|
@@ -10,11 +10,11 @@ from django.utils import timezone, formats
|
|||||||
|
|
||||||
from bookmarks.middlewares import UserProfileMiddleware
|
from bookmarks.middlewares import UserProfileMiddleware
|
||||||
from bookmarks.models import Bookmark, UserProfile, User
|
from bookmarks.models import Bookmark, UserProfile, User
|
||||||
from bookmarks.tests.helpers import BookmarkFactoryMixin, collapse_whitespace
|
from bookmarks.tests.helpers import BookmarkFactoryMixin, HtmlTestMixin
|
||||||
from bookmarks.views.partials import contexts
|
from bookmarks.views.partials import contexts
|
||||||
|
|
||||||
|
|
||||||
class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin, HtmlTestMixin):
|
||||||
|
|
||||||
def assertBookmarksLink(
|
def assertBookmarksLink(
|
||||||
self, html: str, bookmark: Bookmark, link_target: str = "_blank"
|
self, html: str, bookmark: Bookmark, link_target: str = "_blank"
|
||||||
@@ -26,10 +26,10 @@ class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
|||||||
)
|
)
|
||||||
self.assertInHTML(
|
self.assertInHTML(
|
||||||
f"""
|
f"""
|
||||||
|
{favicon_img}
|
||||||
<a href="{bookmark.url}"
|
<a href="{bookmark.url}"
|
||||||
target="{link_target}"
|
target="{link_target}"
|
||||||
rel="noopener">
|
rel="noopener">
|
||||||
{favicon_img}
|
|
||||||
<span>{bookmark.resolved_title}</span>
|
<span>{bookmark.resolved_title}</span>
|
||||||
</a>
|
</a>
|
||||||
""",
|
""",
|
||||||
@@ -40,7 +40,7 @@ class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
|||||||
self.assertInHTML(
|
self.assertInHTML(
|
||||||
f"""
|
f"""
|
||||||
<span>{label_content}</span>
|
<span>{label_content}</span>
|
||||||
<span class="separator">|</span>
|
<span>|</span>
|
||||||
""",
|
""",
|
||||||
html,
|
html,
|
||||||
)
|
)
|
||||||
@@ -54,19 +54,41 @@ class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
|||||||
title="Show snapshot on the Internet Archive Wayback Machine" target="{link_target}" rel="noopener">
|
title="Show snapshot on the Internet Archive Wayback Machine" target="{link_target}" rel="noopener">
|
||||||
{label_content} ∞
|
{label_content} ∞
|
||||||
</a>
|
</a>
|
||||||
<span class="separator">|</span>
|
<span>|</span>
|
||||||
""",
|
""",
|
||||||
html,
|
html,
|
||||||
)
|
)
|
||||||
|
|
||||||
def assertBookmarkActions(self, html: str, bookmark: Bookmark):
|
def assertViewLink(
|
||||||
self.assertBookmarkActionsCount(html, bookmark, count=1)
|
self, html: str, bookmark: Bookmark, return_url=reverse("bookmarks:index")
|
||||||
|
):
|
||||||
|
self.assertViewLinkCount(html, bookmark, return_url=return_url)
|
||||||
|
|
||||||
def assertNoBookmarkActions(self, html: str, bookmark: Bookmark):
|
def assertNoViewLink(
|
||||||
self.assertBookmarkActionsCount(html, bookmark, count=0)
|
self, html: str, bookmark: Bookmark, return_url=reverse("bookmarks:index")
|
||||||
|
):
|
||||||
|
self.assertViewLinkCount(html, bookmark, count=0, return_url=return_url)
|
||||||
|
|
||||||
def assertBookmarkActionsCount(self, html: str, bookmark: Bookmark, count=1):
|
def assertViewLinkCount(
|
||||||
# Edit link
|
self,
|
||||||
|
html: str,
|
||||||
|
bookmark: Bookmark,
|
||||||
|
count=1,
|
||||||
|
return_url=reverse("bookmarks:index"),
|
||||||
|
):
|
||||||
|
details_url = reverse("bookmarks:details", args=[bookmark.id])
|
||||||
|
details_modal_url = reverse("bookmarks:details_modal", args=[bookmark.id])
|
||||||
|
self.assertInHTML(
|
||||||
|
f"""
|
||||||
|
<a ld-fetch="{details_modal_url}?return_url={return_url}"
|
||||||
|
ld-on="click" ld-target="body|append"
|
||||||
|
href="{details_url}">View</a>
|
||||||
|
""",
|
||||||
|
html,
|
||||||
|
count=count,
|
||||||
|
)
|
||||||
|
|
||||||
|
def assertEditLinkCount(self, html: str, bookmark: Bookmark, count=1):
|
||||||
edit_url = reverse("bookmarks:edit", args=[bookmark.id])
|
edit_url = reverse("bookmarks:edit", args=[bookmark.id])
|
||||||
self.assertInHTML(
|
self.assertInHTML(
|
||||||
f"""
|
f"""
|
||||||
@@ -75,7 +97,8 @@ class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
|||||||
html,
|
html,
|
||||||
count=count,
|
count=count,
|
||||||
)
|
)
|
||||||
# Archive link
|
|
||||||
|
def assertArchiveLinkCount(self, html: str, bookmark: Bookmark, count=1):
|
||||||
self.assertInHTML(
|
self.assertInHTML(
|
||||||
f"""
|
f"""
|
||||||
<button type="submit" name="archive" value="{bookmark.id}"
|
<button type="submit" name="archive" value="{bookmark.id}"
|
||||||
@@ -84,7 +107,8 @@ class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
|||||||
html,
|
html,
|
||||||
count=count,
|
count=count,
|
||||||
)
|
)
|
||||||
# Delete link
|
|
||||||
|
def assertDeleteLinkCount(self, html: str, bookmark: Bookmark, count=1):
|
||||||
self.assertInHTML(
|
self.assertInHTML(
|
||||||
f"""
|
f"""
|
||||||
<button ld-confirm-button type="submit" name="remove" value="{bookmark.id}"
|
<button ld-confirm-button type="submit" name="remove" value="{bookmark.id}"
|
||||||
@@ -94,6 +118,17 @@ class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
|||||||
count=count,
|
count=count,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def assertBookmarkActions(self, html: str, bookmark: Bookmark):
|
||||||
|
self.assertBookmarkActionsCount(html, bookmark, count=1)
|
||||||
|
|
||||||
|
def assertNoBookmarkActions(self, html: str, bookmark: Bookmark):
|
||||||
|
self.assertBookmarkActionsCount(html, bookmark, count=0)
|
||||||
|
|
||||||
|
def assertBookmarkActionsCount(self, html: str, bookmark: Bookmark, count=1):
|
||||||
|
self.assertEditLinkCount(html, bookmark, count=count)
|
||||||
|
self.assertArchiveLinkCount(html, bookmark, count=count)
|
||||||
|
self.assertDeleteLinkCount(html, bookmark, count=count)
|
||||||
|
|
||||||
def assertShareInfo(self, html: str, bookmark: Bookmark):
|
def assertShareInfo(self, html: str, bookmark: Bookmark):
|
||||||
self.assertShareInfoCount(html, bookmark, 1)
|
self.assertShareInfoCount(html, bookmark, 1)
|
||||||
|
|
||||||
@@ -101,6 +136,7 @@ class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
|||||||
self.assertShareInfoCount(html, bookmark, 0)
|
self.assertShareInfoCount(html, bookmark, 0)
|
||||||
|
|
||||||
def assertShareInfoCount(self, html: str, bookmark: Bookmark, count=1):
|
def assertShareInfoCount(self, html: str, bookmark: Bookmark, count=1):
|
||||||
|
# Shared by link
|
||||||
self.assertInHTML(
|
self.assertInHTML(
|
||||||
f"""
|
f"""
|
||||||
<span>Shared by
|
<span>Shared by
|
||||||
@@ -133,7 +169,7 @@ class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
|||||||
f"""
|
f"""
|
||||||
<div class="url-path truncate">
|
<div class="url-path truncate">
|
||||||
<a href="{bookmark.url}" target="{link_target}" rel="noopener"
|
<a href="{bookmark.url}" target="{link_target}" rel="noopener"
|
||||||
class="url-display text-sm">
|
class="url-display">
|
||||||
{bookmark.url}
|
{bookmark.url}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
@@ -154,7 +190,7 @@ class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
|||||||
self.assertInHTML(
|
self.assertInHTML(
|
||||||
f"""
|
f"""
|
||||||
<div class="notes bg-gray text-gray-dark">
|
<div class="notes bg-gray text-gray-dark">
|
||||||
<div class="notes-content">
|
<div class="markdown">
|
||||||
{notes_html}
|
{notes_html}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -182,7 +218,7 @@ class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
|||||||
f"""
|
f"""
|
||||||
<button type="submit" name="unshare" value="{bookmark.id}"
|
<button type="submit" name="unshare" value="{bookmark.id}"
|
||||||
class="btn btn-link btn-sm btn-icon"
|
class="btn btn-link btn-sm btn-icon"
|
||||||
ld-confirm-button confirm-icon="ld-icon-unshare" confirm-question="Unshare?">
|
ld-confirm-button ld-confirm-icon="ld-icon-unshare" ld-confirm-question="Unshare?">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">
|
||||||
<use xlink:href="#ld-icon-share"></use>
|
<use xlink:href="#ld-icon-share"></use>
|
||||||
</svg>
|
</svg>
|
||||||
@@ -198,7 +234,7 @@ class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
|||||||
f"""
|
f"""
|
||||||
<button type="submit" name="mark_as_read" value="{bookmark.id}"
|
<button type="submit" name="mark_as_read" value="{bookmark.id}"
|
||||||
class="btn btn-link btn-sm btn-icon"
|
class="btn btn-link btn-sm btn-icon"
|
||||||
ld-confirm-button confirm-icon="ld-icon-read" confirm-question="Mark as read?">
|
ld-confirm-button ld-confirm-icon="ld-icon-read" ld-confirm-question="Mark as read?">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">
|
||||||
<use xlink:href="#ld-icon-unread"></use>
|
<use xlink:href="#ld-icon-unread"></use>
|
||||||
</svg>
|
</svg>
|
||||||
@@ -241,6 +277,172 @@ class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
|||||||
user.profile.save()
|
user.profile.save()
|
||||||
return bookmark
|
return bookmark
|
||||||
|
|
||||||
|
def inline_bookmark_description_test(self, bookmark):
|
||||||
|
html = self.render_template()
|
||||||
|
soup = self.make_soup(html)
|
||||||
|
|
||||||
|
has_description = bool(bookmark.description)
|
||||||
|
has_tags = len(bookmark.tags.all()) > 0
|
||||||
|
|
||||||
|
# inline description block exists
|
||||||
|
description = soup.select_one(".description.inline.truncate")
|
||||||
|
self.assertIsNotNone(description)
|
||||||
|
|
||||||
|
# separate description block does not exist
|
||||||
|
separate_description = soup.select_one(".description.separate")
|
||||||
|
self.assertIsNone(separate_description)
|
||||||
|
|
||||||
|
# one direct child element per description or tags
|
||||||
|
children = description.find_all(recursive=False)
|
||||||
|
expected_child_count = (
|
||||||
|
0 + (1 if has_description else 0) + (1 if has_tags else 0)
|
||||||
|
)
|
||||||
|
self.assertEqual(len(children), expected_child_count)
|
||||||
|
|
||||||
|
# has separator between description and tags
|
||||||
|
if has_description and has_tags:
|
||||||
|
self.assertTrue("|" in description.text)
|
||||||
|
|
||||||
|
# contains description text
|
||||||
|
if has_description:
|
||||||
|
description_text = description.find("span", text=bookmark.description)
|
||||||
|
self.assertIsNotNone(description_text)
|
||||||
|
|
||||||
|
if not has_tags:
|
||||||
|
# no tags element
|
||||||
|
tags = soup.select_one(".tags")
|
||||||
|
self.assertIsNone(tags)
|
||||||
|
else:
|
||||||
|
# tags element exists
|
||||||
|
tags = soup.select_one(".tags")
|
||||||
|
self.assertIsNotNone(tags)
|
||||||
|
|
||||||
|
# one link for each tag
|
||||||
|
tag_links = tags.find_all("a")
|
||||||
|
self.assertEqual(len(tag_links), len(bookmark.tags.all()))
|
||||||
|
|
||||||
|
for tag in bookmark.tags.all():
|
||||||
|
tag_link = tags.find("a", text=f"#{tag.name}")
|
||||||
|
self.assertIsNotNone(tag_link)
|
||||||
|
self.assertEqual(tag_link["href"], f"?q=%23{tag.name}")
|
||||||
|
|
||||||
|
def test_inline_bookmark_description(self):
|
||||||
|
profile = self.get_or_create_test_user().profile
|
||||||
|
profile.bookmark_description_display = (
|
||||||
|
UserProfile.BOOKMARK_DESCRIPTION_DISPLAY_INLINE
|
||||||
|
)
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
# no description, no tags
|
||||||
|
bookmark = self.setup_bookmark(description="")
|
||||||
|
self.inline_bookmark_description_test(bookmark)
|
||||||
|
|
||||||
|
# with description, no tags
|
||||||
|
bookmark = self.setup_bookmark(description="Test description")
|
||||||
|
self.inline_bookmark_description_test(bookmark)
|
||||||
|
|
||||||
|
# no description, with tags
|
||||||
|
Bookmark.objects.all().delete()
|
||||||
|
bookmark = self.setup_bookmark(
|
||||||
|
description="", tags=[self.setup_tag(), self.setup_tag(), self.setup_tag()]
|
||||||
|
)
|
||||||
|
self.inline_bookmark_description_test(bookmark)
|
||||||
|
|
||||||
|
# with description, with tags
|
||||||
|
Bookmark.objects.all().delete()
|
||||||
|
bookmark = self.setup_bookmark(
|
||||||
|
description="Test description",
|
||||||
|
tags=[self.setup_tag(), self.setup_tag(), self.setup_tag()],
|
||||||
|
)
|
||||||
|
self.inline_bookmark_description_test(bookmark)
|
||||||
|
|
||||||
|
def separate_bookmark_description_test(self, bookmark):
|
||||||
|
html = self.render_template()
|
||||||
|
soup = self.make_soup(html)
|
||||||
|
|
||||||
|
has_description = bool(bookmark.description)
|
||||||
|
has_tags = len(bookmark.tags.all()) > 0
|
||||||
|
|
||||||
|
# inline description block does not exist
|
||||||
|
inline_description = soup.select_one(".description.inline")
|
||||||
|
self.assertIsNone(inline_description)
|
||||||
|
|
||||||
|
if not has_description:
|
||||||
|
# no description element
|
||||||
|
description = soup.select_one(".description")
|
||||||
|
self.assertIsNone(description)
|
||||||
|
else:
|
||||||
|
# contains description text
|
||||||
|
description = soup.select_one(".description.separate")
|
||||||
|
self.assertIsNotNone(description)
|
||||||
|
self.assertEqual(description.text.strip(), bookmark.description)
|
||||||
|
|
||||||
|
if not has_tags:
|
||||||
|
# no tags element
|
||||||
|
tags = soup.select_one(".tags")
|
||||||
|
self.assertIsNone(tags)
|
||||||
|
else:
|
||||||
|
# tags element exists
|
||||||
|
tags = soup.select_one(".tags")
|
||||||
|
self.assertIsNotNone(tags)
|
||||||
|
|
||||||
|
# one link for each tag
|
||||||
|
tag_links = tags.find_all("a")
|
||||||
|
self.assertEqual(len(tag_links), len(bookmark.tags.all()))
|
||||||
|
|
||||||
|
for tag in bookmark.tags.all():
|
||||||
|
tag_link = tags.find("a", text=f"#{tag.name}")
|
||||||
|
self.assertIsNotNone(tag_link)
|
||||||
|
self.assertEqual(tag_link["href"], f"?q=%23{tag.name}")
|
||||||
|
|
||||||
|
def test_separate_bookmark_description(self):
|
||||||
|
profile = self.get_or_create_test_user().profile
|
||||||
|
profile.bookmark_description_display = (
|
||||||
|
UserProfile.BOOKMARK_DESCRIPTION_DISPLAY_SEPARATE
|
||||||
|
)
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
# no description, no tags
|
||||||
|
bookmark = self.setup_bookmark(description="")
|
||||||
|
self.separate_bookmark_description_test(bookmark)
|
||||||
|
|
||||||
|
# with description, no tags
|
||||||
|
bookmark = self.setup_bookmark(description="Test description")
|
||||||
|
self.separate_bookmark_description_test(bookmark)
|
||||||
|
|
||||||
|
# no description, with tags
|
||||||
|
Bookmark.objects.all().delete()
|
||||||
|
bookmark = self.setup_bookmark(
|
||||||
|
description="", tags=[self.setup_tag(), self.setup_tag(), self.setup_tag()]
|
||||||
|
)
|
||||||
|
self.separate_bookmark_description_test(bookmark)
|
||||||
|
|
||||||
|
# with description, with tags
|
||||||
|
Bookmark.objects.all().delete()
|
||||||
|
bookmark = self.setup_bookmark(
|
||||||
|
description="Test description",
|
||||||
|
tags=[self.setup_tag(), self.setup_tag(), self.setup_tag()],
|
||||||
|
)
|
||||||
|
self.separate_bookmark_description_test(bookmark)
|
||||||
|
|
||||||
|
def test_bookmark_description_max_lines(self):
|
||||||
|
self.setup_bookmark()
|
||||||
|
html = self.render_template()
|
||||||
|
soup = self.make_soup(html)
|
||||||
|
bookmark_list = soup.select_one("ul.bookmark-list")
|
||||||
|
style = bookmark_list["style"]
|
||||||
|
self.assertIn("--ld-bookmark-description-max-lines:1;", style)
|
||||||
|
|
||||||
|
profile = self.get_or_create_test_user().profile
|
||||||
|
profile.bookmark_description_max_lines = 3
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
html = self.render_template()
|
||||||
|
soup = self.make_soup(html)
|
||||||
|
bookmark_list = soup.select_one("ul.bookmark-list")
|
||||||
|
style = bookmark_list["style"]
|
||||||
|
self.assertIn("--ld-bookmark-description-max-lines:3;", style)
|
||||||
|
|
||||||
def test_should_respect_absolute_date_setting(self):
|
def test_should_respect_absolute_date_setting(self):
|
||||||
bookmark = self.setup_date_format_test(
|
bookmark = self.setup_date_format_test(
|
||||||
UserProfile.BOOKMARK_DATE_DISPLAY_ABSOLUTE
|
UserProfile.BOOKMARK_DATE_DISPLAY_ABSOLUTE
|
||||||
@@ -351,9 +553,58 @@ class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
|||||||
bookmark = self.setup_bookmark()
|
bookmark = self.setup_bookmark()
|
||||||
html = self.render_template()
|
html = self.render_template()
|
||||||
|
|
||||||
|
self.assertViewLink(html, bookmark)
|
||||||
self.assertBookmarkActions(html, bookmark)
|
self.assertBookmarkActions(html, bookmark)
|
||||||
self.assertNoShareInfo(html, bookmark)
|
self.assertNoShareInfo(html, bookmark)
|
||||||
|
|
||||||
|
def test_hide_view_link(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
profile = self.get_or_create_test_user().profile
|
||||||
|
profile.display_view_bookmark_action = False
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
html = self.render_template()
|
||||||
|
self.assertViewLinkCount(html, bookmark, count=0)
|
||||||
|
self.assertEditLinkCount(html, bookmark, count=1)
|
||||||
|
self.assertArchiveLinkCount(html, bookmark, count=1)
|
||||||
|
self.assertDeleteLinkCount(html, bookmark, count=1)
|
||||||
|
|
||||||
|
def test_hide_edit_link(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
profile = self.get_or_create_test_user().profile
|
||||||
|
profile.display_edit_bookmark_action = False
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
html = self.render_template()
|
||||||
|
self.assertViewLinkCount(html, bookmark, count=1)
|
||||||
|
self.assertEditLinkCount(html, bookmark, count=0)
|
||||||
|
self.assertArchiveLinkCount(html, bookmark, count=1)
|
||||||
|
self.assertDeleteLinkCount(html, bookmark, count=1)
|
||||||
|
|
||||||
|
def test_hide_archive_link(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
profile = self.get_or_create_test_user().profile
|
||||||
|
profile.display_archive_bookmark_action = False
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
html = self.render_template()
|
||||||
|
self.assertViewLinkCount(html, bookmark, count=1)
|
||||||
|
self.assertEditLinkCount(html, bookmark, count=1)
|
||||||
|
self.assertArchiveLinkCount(html, bookmark, count=0)
|
||||||
|
self.assertDeleteLinkCount(html, bookmark, count=1)
|
||||||
|
|
||||||
|
def test_hide_remove_link(self):
|
||||||
|
bookmark = self.setup_bookmark()
|
||||||
|
profile = self.get_or_create_test_user().profile
|
||||||
|
profile.display_remove_bookmark_action = False
|
||||||
|
profile.save()
|
||||||
|
|
||||||
|
html = self.render_template()
|
||||||
|
self.assertViewLinkCount(html, bookmark, count=1)
|
||||||
|
self.assertEditLinkCount(html, bookmark, count=1)
|
||||||
|
self.assertArchiveLinkCount(html, bookmark, count=1)
|
||||||
|
self.assertDeleteLinkCount(html, bookmark, count=0)
|
||||||
|
|
||||||
def test_show_share_info_for_non_owned_bookmarks(self):
|
def test_show_share_info_for_non_owned_bookmarks(self):
|
||||||
other_user = User.objects.create_user(
|
other_user = User.objects.create_user(
|
||||||
"otheruser", "otheruser@example.com", "password123"
|
"otheruser", "otheruser@example.com", "password123"
|
||||||
@@ -364,6 +615,7 @@ class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
|||||||
bookmark = self.setup_bookmark(user=other_user, shared=True)
|
bookmark = self.setup_bookmark(user=other_user, shared=True)
|
||||||
html = self.render_template(context_type=contexts.SharedBookmarkListContext)
|
html = self.render_template(context_type=contexts.SharedBookmarkListContext)
|
||||||
|
|
||||||
|
self.assertViewLink(html, bookmark, return_url=reverse("bookmarks:shared"))
|
||||||
self.assertNoBookmarkActions(html, bookmark)
|
self.assertNoBookmarkActions(html, bookmark)
|
||||||
self.assertShareInfo(html, bookmark)
|
self.assertShareInfo(html, bookmark)
|
||||||
|
|
||||||
@@ -532,16 +784,24 @@ class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
|||||||
|
|
||||||
def test_note_cleans_html(self):
|
def test_note_cleans_html(self):
|
||||||
self.setup_bookmark(notes='<script>alert("test")</script>')
|
self.setup_bookmark(notes='<script>alert("test")</script>')
|
||||||
|
self.setup_bookmark(
|
||||||
|
notes='<b ld-fetch="https://example.com" ld-on="click">bold text</b>'
|
||||||
|
)
|
||||||
html = self.render_template()
|
html = self.render_template()
|
||||||
|
|
||||||
note_html = '<script>alert("test")</script>'
|
note_html = '<script>alert("test")</script>'
|
||||||
self.assertNotes(html, note_html, 1)
|
self.assertIn(note_html, html, 1)
|
||||||
|
|
||||||
|
note_html = "<b>bold text</b>"
|
||||||
|
self.assertIn(note_html, html, 1)
|
||||||
|
|
||||||
def test_notes_are_hidden_initially_by_default(self):
|
def test_notes_are_hidden_initially_by_default(self):
|
||||||
self.setup_bookmark(notes="Test note")
|
self.setup_bookmark(notes="Test note")
|
||||||
html = collapse_whitespace(self.render_template())
|
html = self.render_template()
|
||||||
|
soup = self.make_soup(html)
|
||||||
|
bookmark_list = soup.select_one("ul.bookmark-list.show-notes")
|
||||||
|
|
||||||
self.assertIn('<ul class="bookmark-list" data-bookmarks-total="1">', html)
|
self.assertIsNone(bookmark_list)
|
||||||
|
|
||||||
def test_notes_are_hidden_initially_with_permanent_notes_disabled(self):
|
def test_notes_are_hidden_initially_with_permanent_notes_disabled(self):
|
||||||
profile = self.get_or_create_test_user().profile
|
profile = self.get_or_create_test_user().profile
|
||||||
@@ -549,9 +809,11 @@ class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
|||||||
profile.save()
|
profile.save()
|
||||||
|
|
||||||
self.setup_bookmark(notes="Test note")
|
self.setup_bookmark(notes="Test note")
|
||||||
html = collapse_whitespace(self.render_template())
|
html = self.render_template()
|
||||||
|
soup = self.make_soup(html)
|
||||||
|
bookmark_list = soup.select_one("ul.bookmark-list.show-notes")
|
||||||
|
|
||||||
self.assertIn('<ul class="bookmark-list" data-bookmarks-total="1">', html)
|
self.assertIsNone(bookmark_list)
|
||||||
|
|
||||||
def test_notes_are_visible_initially_with_permanent_notes_enabled(self):
|
def test_notes_are_visible_initially_with_permanent_notes_enabled(self):
|
||||||
profile = self.get_or_create_test_user().profile
|
profile = self.get_or_create_test_user().profile
|
||||||
@@ -559,11 +821,11 @@ class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
|||||||
profile.save()
|
profile.save()
|
||||||
|
|
||||||
self.setup_bookmark(notes="Test note")
|
self.setup_bookmark(notes="Test note")
|
||||||
html = collapse_whitespace(self.render_template())
|
html = self.render_template()
|
||||||
|
soup = self.make_soup(html)
|
||||||
|
bookmark_list = soup.select_one("ul.bookmark-list.show-notes")
|
||||||
|
|
||||||
self.assertIn(
|
self.assertIsNotNone(bookmark_list)
|
||||||
'<ul class="bookmark-list show-notes" data-bookmarks-total="1">', html
|
|
||||||
)
|
|
||||||
|
|
||||||
def test_toggle_notes_is_visible_by_default(self):
|
def test_toggle_notes_is_visible_by_default(self):
|
||||||
self.setup_bookmark(notes="Test note")
|
self.setup_bookmark(notes="Test note")
|
||||||
@@ -615,6 +877,7 @@ class BookmarkListTemplateTest(TestCase, BookmarkFactoryMixin):
|
|||||||
self.assertWebArchiveLink(
|
self.assertWebArchiveLink(
|
||||||
html, "1 week ago", bookmark.web_archive_snapshot_url, link_target="_blank"
|
html, "1 week ago", bookmark.web_archive_snapshot_url, link_target="_blank"
|
||||||
)
|
)
|
||||||
|
self.assertViewLink(html, bookmark, return_url=reverse("bookmarks:shared"))
|
||||||
self.assertNoBookmarkActions(html, bookmark)
|
self.assertNoBookmarkActions(html, bookmark)
|
||||||
self.assertShareInfo(html, bookmark)
|
self.assertShareInfo(html, bookmark)
|
||||||
self.assertMarkAsReadButton(html, bookmark, count=0)
|
self.assertMarkAsReadButton(html, bookmark, count=0)
|
||||||
|