Skip to content

private & e2ee social media protocol using bitcoin native keys.

License

Notifications You must be signed in to change notification settings

StackmateNetwork/cypherpost

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cypherpost

A centralized, encrypted data store, enabling client-side applications that require end-to-end encryption, selective visibility of content and building a network of trust.

  • Your identity on the platform is a username:pubkey
  • All your posts are encrypted custom json strings.
  • Posts can be decrypted only by the identities you give visibility to.
  • You give identities visibility by sharing decryption keys with them.
  • ECDSA Shared Secrets are used per identity, to encrypt decryption keys in transit.
  • Badges form a reputation system and help build a trusted network.
  • Value of badges are subjective and based on who the givers are.
  • Issuance of badges can be verified by all clients

cypherpost can be run either as a PUBLIC or PRIVATE server.

Running a public cypherpost instance requires attachment to cyphernodeappsnet to access payment facilities via cyphernode.

Public servers have no other means of protecting from spam, since neither email or phone number is required to register an account. Users are permitted to use the service for 30 days with 0 conf payment; holding a PARTIAL verification status, after which they willl have to either bump the fee on their transaction or wait until their payment if confirmed to continue using the service.

Private servers generate an invite code during server setup. This code is required during client registration to maintain a closed network. Private servers can be run stand-alone without the need of payment facilites.

Private Server UNDER CONSTRUCTION at https://cypherpost.io/api/v2

cypherpost

Manual Development Environment

You must have npm installed. To get the latest version of npm visit: https://nodejs.org/en/

Install typescript

sudo npm i -g typescript

Clone repo

git clone git@github.com:StackmateNetwork/cypherpost.git

Install server dependencies and compile TS code

cd cypherpost/app
npm i
tsc

# If changes are made to any .ts file, run tsc again and restart container

NOTE: SETUP DEV ENVIRONMENT AS PRIVATE SERVER (PUBLIC SERVER WILL FAIL TESTS WITH 402:Payment Required). Tests for public server with payment is still under development.

Development Scripts

SETUP:

# setup dev compose environment
cd ../../../../../compose
./setup.sh
# Follow the instructions.

START & TEST

./start.sh
./test.sh

STOP

./stop.sh

Docker Helpers

# to stop all containers
docker-compose -f dev-compose.yaml down
# if changes made to Dockerfiles - rebuild all containers
docker-compose -f dev-compose.yaml up -d --build --force-recreate
# rebuild single container : eg. node
docker-compose -f dev-compose.yaml up -d --build --force-recreate --no-deps node
# for errors related to volumes
./delete_volumes.sh
# log node
docker logs -f application
# log nginx
docker logs -f server
# log mongo
docker logs -f database
# restart a container
docker restart application

Run tests

# Integration test
docker exec -it application sh -c "npm test"

# Unit tests
docker exec -it application sh -c "bash units.bash"

ALWAYS LET TESTS COMPLETE. STOPPING A TEST HALF WAY CAN LEAD TO PERSISTENCE OF UNWANTED ARTIFACTS.

If you end up in such a place where tests are breaking because of left over artifacts, use

pier delvols

To delete all persistent data. DO NOT RUN ON PROD!

Inspect Database

docker exec -it database mongo

use cypherpost
db.auth('cp','secret')
db.identities.find().pretty()
db.badges.find().pretty()
db.posts.find().pretty()
db.post_keys.find().pretty()
# Checkout infra/mongo/scripts for more.

Pier Environment

Pier tries to make sure you never have to cd between folders while working to setup test and update the environment.

Always stay in the root directory with pier.toml, for pier to work. If you move to another folder, pier will not work.

Install pier

cargo install pier

In the root folder run pier list to view all possible commands.

To use a command run pier run <command> <args> eg: pier run dev-start

Extra Notes:

Optional Reference Field

Clients can use an optional reference field, when making a post. References require the following:

  • reference must be an existing post_id
  • reference posts must be encrypted with the same key as the post it is referencing
  • reference posts do not have keys of their own

References allow users to create group chats.

Note that when the parent post is deleted, all references are also removed.

TODO

Iron out production compose scripts

Sort out volume permissions in prod

Lock .env file with password

Update pier for prod tasks

About

private & e2ee social media protocol using bitcoin native keys.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •