Skip to main content

Adds a current_actor() function to SQLite that show's the current actor's ID.

Project description

datasette-current-actor

PyPI Changelog Tests License

Adds a current_actor() function to SQLite that show's the current actor's ID.

Installation

Install this plugin in the same environment as Datasette.

datasette install datasette-current-actor

Usage

  • current_actor() returns the current actor's ID, or NULL if no actor.
  • current_actor('attrs', 'name') navigates the actor object, returning the value of the name key stored in the attrs key, or NULL if any of the intermediate values are absent.
  • current_actor_ip() returns the current actor's IP address
  • current_actor_user_agent() returns the current actor's HTTP user agent

Default values, views and triggers

SQLite is flexible. It turns out you can refer to functions that don't exist when issuing DDL statements. As long as they exist when they're needed, it all works out.

Auditing

Track who added a row:

CREATE TABLE notes(
  created_by text not null default (current_actor()),
  created_by_ip text not null default (current_actor_ip()),
  note text not null
);

Or create an UPDATE trigger on a table that sets the last_edited_by column to current_actor().

Row-level security

Restrict the rows that users see:

CREATE VIEW rls AS
SELECT * FROM sensitive_data WHERE owner = current_actor()

You can see a live example at https://dux.fly.dev/cooking/my_questions, which should show you 0 rows.

That instance permits "logging in" by passing a _whoami query parameter. If you visit https://dux.fly.dev/cooking/my_questions?_whoami=15, you'll see all of user 15's questions.

Development

To set up this plugin locally, first checkout the code. Then create a new virtual environment:

cd datasette-current-actor
python3 -m venv venv
source venv/bin/activate

Now install the dependencies and test dependencies:

pip install -e '.[test]'

To run the tests:

pytest

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

datasette-current-actor-0.3.tar.gz (7.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

datasette_current_actor-0.3-py3-none-any.whl (8.0 kB view details)

Uploaded Python 3

File details

Details for the file datasette-current-actor-0.3.tar.gz.

File metadata

  • Download URL: datasette-current-actor-0.3.tar.gz
  • Upload date:
  • Size: 7.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for datasette-current-actor-0.3.tar.gz
Algorithm Hash digest
SHA256 b8063c1b04079420ae35bb9fd04a6914b44a45d3305db6ec9497298d12efb5ad
MD5 51c57494452811a15417c94a44be5676
BLAKE2b-256 d724e8fe96695060fc2fc6a3d0f8bc5f820932d80bba8c277072fa39efc69c02

See more details on using hashes here.

File details

Details for the file datasette_current_actor-0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for datasette_current_actor-0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 8b23f56ff674420ce97176a775b11a1ff52e33874d10713bd2768efda5adec9a
MD5 34fc6ed55624e1f6c31bf812cb46a1f8
BLAKE2b-256 82895d1b614aaa04cf31374d539726ba3df5fca2dffa9e09ca70eafa58424471

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page