GithubHelp home page GithubHelp logo

m8e / syphon Goto Github PK

View Code? Open in Web Editor NEW

This project forked from syphon-org/syphon

0.0 0.0 0.0 51.85 MB

⚗️ a privacy centric matrix client

Home Page: https://syphon.org

License: GNU Affero General Public License v3.0

Kotlin 0.01% Swift 0.14% Objective-C 0.01% Dart 96.10% Ruby 0.17% Shell 0.53% CMake 1.17% C++ 1.38% C 0.09% HTML 0.04% Java 0.38%

syphon's Introduction


a privacy centric matrix client - now in open alpha*

Get it on Google Play Download on the App Store


Translation status

Syphon is still in alpha and we do not recommend
using it where proven and independently verified security is required.


🤔 Why

Syphon aims to be built on the foundations of privacy, branding, and user experience
in an effort to pull others away from proprietary chat platforms to the matrix protocol.

Matrix has the potential to be a standardized peer-to-peer chat protocol, and in a way already is, that allows people to communicate and control their conversation data. Email has been standardized in this way for a long time. For example, someone using Outlook can still email someone using Gmail. Most popular proprietary chat platforms do not adhere to a federated or decentralized protocol, and as a result have too much control over users data.

If the goal for Matrix is adoption, a network effect is required for this paradigm shift. Syphon makes the bet that the best way to attract new users is through strong branding and user experience. I hope that contributing and maintaining Syphon will help kick start this process and help those in need.

Syphon will always be a not for profit, community driven application.

✨ Features

  • no analytics. period.
  • no proprietary third party services
    • iOS will have APNS support, but will be made clear to the user
  • all data is AES-256 encrypted at rest
  • E2EE for direct chats using Olm/Megolm
  • all indicators of presence are opt-in only (typing indicators, read receipts, etc)
  • customize themes and colors throughout the app

🚀 Goals

  • desktop clients meet parity with mobile
  • screen lock and pin protected cache features
  • P2P messaging through a locally run server on the client
  • allow transfering user data from one homeserver to another, or from local to remote servers
  • cli client using ncurses and the same redux store contained here (common)

🌙 Nightlies

  • Nightly dev builds - and feature branch builds - can be found under our Gitea Releases
  • Unofficial "community" Windows x64 releases can be found under @EdGeraghty's fork

📝 Contributing

  • Instructions can be found under our contributing.md. Please fully read the document before beginning to write code or produce any material contribution for Syphon.
  • Donations are always welcome! The best way to donate is through the Syphon creator's Patreon.
  • Coming soon, we'll have a merch store! If you'd like to support the project but want a little something in return, this is the way to do it!

🏗️ Building

You may notice Syphon does not look very dart-y (for example, no _private variable declarations, or using redux instead of provider) in an effort to reduce the learning curve from other languages or platforms. The faster one can get people contributing, the easier it will be for others to maintain or oversee a tool that does not exploit the user.

general

  • you'll to do several things to setup the environment for Syphon
    • install flutter (stable channel for all platforms)
    • install necessary third party sdks and tooling
      • ios -> xcode
      • android -> android studio
    • install cmake version for workstation platform (for olm/megolm)
    • install libs needed for cmake
      • macos -> brew install ninja
      • linux -> sudo apt install ninja-build
      • windows -> choco install ninja
    • clone repo and init submodules
      • git submodule update --init --recursive
    • run the following prebuild commands
      • flutter pub get
      • flutter pub run build_runner build

ios/android

  1. pull dependencies needed
    • flutter pub get
  2. generate json conversion for models
    • flutter pub run build_runner build --delete-conflicting-outputs
  3. generate json conversion for models
    • flutter run

macos

  1. flutter config --enable-macos-desktop
  2. brew install libolm to install native olm dependencies
  3. follow instructions for linking the dylib generated from brew to the Syphon project
  1. flutter build macos to build the .app bundle

linux

  1. flutter config --enable-linux-desktop
  2. apt install libolm3 libsqlite3-dev or pacman -S libolm or platform equivalent for libolm
  3. flutter build linux && flutter build bundle
  4. navigate to release at $SYPHON_ROOT/build/linux/release/bundle
  5. Confirm build works with running $SYPHON_ROOT/build/linux/release/bundle/syphon

windows

  1. flutter doctor should give you warnings for anything missing
  2. flutter config --enable-windows-desktop
  3. Compile olm & move olm.dll to libolm.dll in the executable directory
  4. Fetch sqlite's Precompiled Binaries for Windows dll from the website

📐 Architecture

store

  • views (flutter + MVVM)
  • state management (redux)
  • cache (redux_persist + json_serializable + sembast + codec cipher)
  • storage (drift + sqflite + sqlcipher)

assets

  • Looking for branding or design files? They can all be found here, in the top level assets folder.

integrations

  • Notifications
    • utitlizes android_alarm_manager on Android to run the matrix /sync requests in a background thread and display notifications with flutter_local_notifications
    • no third party notification provider will ever be used outside Apples APNS for iOS only
  • Equatable
    • This library allows comparisons of objects within Flutter to tell if they have changed.
  • JsonSerializable
    • Unfortunately, Json is not integrated directly in Dart/Flutter for your own objects. Code generation is required, for now, and will convert Syphon's custom objects to a 'Map' of respective json fields
  • Freezed (future)
    • Because every object in Syphon is immutable, freezed will help create objects doing the same thing all the 'copyWith' helper functions do today, with the improvement of allowing 'null' values to overwrite non-null values
  • Fastline Directory
    • fastline is not used as tool, but is there to provide a schema of metadata to FDroid

references

decoration: BoxDecoration(
   border: Border.all(width: 1, color: Colors.white),
),
  • understanding why olm chose the world 'pickle' for serialization, its from python

from those who made it possible

lub youu

syphon's People

Contributors

0x1a8510f2 avatar d0t1x avatar danialbehzadi avatar ereio avatar florian-sabonchi avatar gjpower avatar laralem avatar librehacker avatar linerly avatar marmonto avatar martijndeb avatar menturion avatar nathanbnm avatar nitn3lav avatar notramo avatar nourkagha avatar rex07 avatar santossi avatar sertinel avatar softace42 avatar tiptoptom avatar tr-slimey avatar weblate avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.