All Projects โ†’ parksb โ†’ darim

parksb / darim

Licence: AGPL-3.0 License
๐Ÿ• A private journal service that supports client-side encryption

Programming Languages

rust
11053 projects
typescript
32286 projects

Projects that are alternatives of or similar to darim

Diary
Android personal diary - forked from http://git.savannah.gnu.org/cgit/diary.git
Stars: โœญ 158 (+378.79%)
Mutual labels:  calendar, diary
Journee Diary
A lightweight, simplified, RedNotebook-inspired journal/diary app. Built with Electron. Makes dated text files.
Stars: โœญ 27 (-18.18%)
Mutual labels:  calendar, diary
Geeks Diary
TIL writing tool for programmer
Stars: โœญ 616 (+1766.67%)
Mutual labels:  diary, note
Aaf Easydiary
๐Ÿ“˜ A diary application optimized for user experience.
Stars: โœญ 216 (+554.55%)
Mutual labels:  calendar, diary
webcalendar
WebCalendar is a PHP application used to maintain a calendar for a single user or an intranet group of users. It can also be configured as an event calendar.
Stars: โœญ 113 (+242.42%)
Mutual labels:  calendar
scalendar
Drag and Drop your tasks and reminders based on a weekly calendar with a clean, minimal interface and zero clutter ๐Ÿ—“ ๐Ÿ’ฏ Built with React DnD ๐Ÿ’ป
Stars: โœญ 42 (+27.27%)
Mutual labels:  calendar
summit-app-ios
The official app for the OpenStack Summit
Stars: โœญ 35 (+6.06%)
Mutual labels:  calendar
react-native-slideable-calendar-strip
A react native calendar strip that support swipe!
Stars: โœญ 86 (+160.61%)
Mutual labels:  calendar
ioBroker.trashschedule
Calculates trash pickup dates by using an ical calendar
Stars: โœญ 20 (-39.39%)
Mutual labels:  calendar
CalendarView
ๆ—ฅๅŽ†ๆŽงไปถ
Stars: โœญ 14 (-57.58%)
Mutual labels:  calendar
modoboa-radicale
The Radicale frontend of Modoboa
Stars: โœญ 18 (-45.45%)
Mutual labels:  calendar
blog
ๆˆ‘็š„ไธญๆ–‡ๅšๅฎขใ€‚
Stars: โœญ 27 (-18.18%)
Mutual labels:  note
vscode-note
a simple note-taking extension for vscode.
Stars: โœญ 29 (-12.12%)
Mutual labels:  note
Calendar
A calendar picker component, based on jQuery.
Stars: โœญ 49 (+48.48%)
Mutual labels:  calendar
calendar
R interface to iCal (.ics files)
Stars: โœญ 30 (-9.09%)
Mutual labels:  calendar
nepali-datetime
Python's core datetime inspired nepali datetime (BS date & NPT) package ๐Ÿ‡ณ๐Ÿ‡ต
Stars: โœญ 36 (+9.09%)
Mutual labels:  calendar
react-activity-calendar
A React component to display activity data in a calendar (heatmap)
Stars: โœญ 69 (+109.09%)
Mutual labels:  calendar
remarkable-calendar-creator
Create calendars to display on a reMarkable device as the suspend screen or to write notes on, including events from your own online iCal calendar
Stars: โœญ 28 (-15.15%)
Mutual labels:  calendar
Rocket-Notes
The World's Fastest Note Taking App. Fast. Simple. Create a note in one tap! Create image and text notes directly from your home screen!
Stars: โœญ 20 (-39.39%)
Mutual labels:  note
groupoffice
Group Office groupware and CRM
Stars: โœญ 80 (+142.42%)
Mutual labels:  calendar

๐Ÿ• Darim

Client CI API Gateway CI Server CI

  • Darim: Diary Improved
  • Darim is a personal diary service that supports encryption, calendar view, and markdown syntax.
  • You can keep your diary a secret even from the developer through client-side encryption.

Preview

Architecture

  • Darim is following the layered architecture.
  • Each layer cannot be cross-referenced. All references between layers can flow in a higher direction. In other words, only the upper layer can invoke the lower layer members.

main transaction flow

Client

  • index.html - An entry point of the application. It is built by parcel.
  • Pages - Pages represented by URL. Each page can use general components, API fetchers, and models.
  • Components - Reusable components used on multiple pages.

API Gateway & Server

  • main.rs - An entry point of the application. It runs a http server.
  • Routes - A presentation layer that makes API public and passes request/response data to other layers.
  • Services - A business layer that processes the transaction.
  • Models - A data layer that can access the database and define data structures.

Client-side Encryption

  • Darim supports client-side encryption to protect the user's secrect from others including server.

Generate keys

key generation flow

  1. When a user finishes the sign-up process, the secret key and public key are generated on the client-side.
  2. The client encrypts the secret key by public key and saevs the encrypted secret key in local storage.
  3. The public key is sent to the server, and the server stores it.

Read & Write

read and write flow

  1. When a user creates the plaintext post, the client requests the public key to the server.
  2. The client decrypts the encrypted secret key in the local storage using the public key from the server.
  3. The plaintext post is encrypted by the secret key decrypted by the public key.
  4. The encrypted post is sent to the server, and the server stores it.
  • At this point, the server can only know encrypted post.
  • When the client requests the server to read the post, whole flows are reversed.

License

This project is distributed under the AGPL-3.0 License - see the LICENSE file for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].