ActivityPub translation layer/bridge for Versia Server
Find a file
April John 6b6d36b30b
feat: basic AP <-> lysand conversion (#4)
* feat: Update API domain variable name

* save changes, fake commit

* feat: function to receive lysand note

* [feat]: lysand to ap for posts and users

* feat: Add .env file to gitignore and update dependencies

The commit adds the `.env` file to the `.gitignore` and updates the dependencies in the `Cargo.toml` and `Cargo.lock` files. This change ensures that sensitive environment variables are not committed to the repository and keeps the dependencies up to date.

* feat: Add db_post_from_url function

The commit adds the `db_post_from_url` function to the `conversion.rs` file. This function retrieves a post from the database based on a given URL. If the post is not found in the database, it fetches the post from the URL, saves it to the database, and returns the post. This change enhances the functionality of the codebase by providing a convenient way to retrieve and store posts.

* feat: Update dependencies and add async-recursion crate

* fix: Refactor lysand note handling in conversion.rs

The commit refactors the lysand note handling in the `conversion.rs` file. It updates the `receive_lysand_note` function to properly handle quoting and replying to notes. This change improves the functionality and readability of the codebase.

* fix: use example as default user

* me oopid

* fix: Refactor lysand note handling in conversion.rs

* fix: fix post printing

* fix: Refactor lysand note handling in conversion.rs

* fix: Refactor lysand note handling in conversion.rs

* fix: make nix-bootstrap executable

* fix: remove unused linux only import

* fix: make person stop screaming at me :(

* feat: remove test code

* fix: update deps

* fix: rm build.rs fully

* feat: standard user to apservice

* fix: format files
2024-06-18 01:56:25 +00:00
.devcontainer [fix]: rm nix from devc 2024-04-16 17:39:43 +00:00
.github/workflows fix: docker build 2024-05-17 11:06:16 +02:00
migration feat: basic AP <-> lysand conversion (#4) 2024-06-18 01:56:25 +00:00
src feat: basic AP <-> lysand conversion (#4) 2024-06-18 01:56:25 +00:00
.env.example feat: basic AP <-> lysand conversion (#4) 2024-06-18 01:56:25 +00:00
.envrc [feat]: basic nix dev enviroment 2024-03-21 12:41:02 +01:00
.gitattributes [feat]: basic nix dev enviroment 2024-03-21 12:41:02 +01:00
.gitignore feat: basic AP <-> lysand conversion (#4) 2024-06-18 01:56:25 +00:00
Cargo.lock feat: basic AP <-> lysand conversion (#4) 2024-06-18 01:56:25 +00:00
Cargo.toml feat: basic AP <-> lysand conversion (#4) 2024-06-18 01:56:25 +00:00
Changelog.md make markdown changelog 2024-04-15 00:06:13 +02:00
CODE_OF_CONDUCT.md feat! AGPL3 + Contributor Covenant 2024-04-14 23:52:42 +02:00
docker-compose.yml feat: Update API domain variable name 2024-05-17 11:30:10 +02:00
flake.lock unfinished nix module setup 2024-05-03 00:22:08 +02:00
flake.nix fix: docker build 2024-05-17 11:06:16 +02:00
Jenkinsfile [feat]: basic nix dev enviroment 2024-03-21 12:41:02 +01:00
justfile [feat]: basic nix dev enviroment 2024-03-21 12:41:02 +01:00
LICENSE feat! AGPL3 + Contributor Covenant 2024-04-14 23:52:42 +02:00
module.nix feat: oci image 2024-05-09 23:09:56 +02:00
nix-bootstrap.sh feat: basic AP <-> lysand conversion (#4) 2024-06-18 01:56:25 +00:00
README.MD docs: 📝 Update README and Docker instructions 2024-05-06 09:01:21 -10:00
shell.nix unfinished nix module setup 2024-05-03 00:22:08 +02:00

Lysand Logo

Lysand ActivityPub Bridge

Nix Flake actions

ActivityPub/ActivityStreams compatibility layer for Lysand Server.

Designed as a microservice, runs as its own process and communicates with the main server via HTTP.

Development (Flakes)

This repo uses Flakes from the get-go.

# Dev shell
nix develop

# or run via cargo
nix develop -c cargo run

# build
nix build

We also provide a justfile for Makefile'esque commands.

Building

Docker/Podman

To build the Docker image, run the following command:

docker build -t activitypub:latest .

To run the docker image, use the docker-compose.yml file:

wget https://raw.githubusercontent.com/lysand-org/activitypub/main/docker-compose.yml

docker-compose up -d

If you are building from source, make sure to replace the image name in the docker-compose.yml file.