Mirror of MarceauKa/shaark@github.com
Go to file
MarceauKa 603eec7fe8 Non-admin users can't access settings section 2019-10-10 14:25:56 +02:00
app Non-admin users can't access settings section 2019-10-10 14:25:56 +02:00
bootstrap 🎉 2019-08-22 20:12:37 +02:00
config 🔖 1.2.12 Demo mode 2019-10-04 17:12:44 +02:00
database 🚧 Multi-users 2019-10-10 13:34:30 +02:00
public 🔧 Improvements on api http and form errors 2019-10-10 14:18:52 +02:00
resources Non-admin users can't access settings section 2019-10-10 14:25:56 +02:00
routes Non-admin users can't access settings section 2019-10-10 14:25:56 +02:00
storage 🚧 Locale settings 2019-08-29 16:33:17 +02:00
tests 📦 Laravel 6 ♻️ Simplified Hashid 📦 TNTSearch 💩 Feeds 2019-09-03 16:48:39 +02:00
.editorconfig 🎉 2019-08-22 20:12:37 +02:00
.env.example 📝 Documentation for configuration, php and js dependencies 2019-10-04 14:49:31 +02:00
.env.testing 👌 E2E tests 🔧 Env and config 2019-08-24 01:30:40 +02:00
.gitattributes 🎉 2019-08-22 20:12:37 +02:00
.gitignore 🍱 Assets are now staged preventing new compilation on each deployment 🐛 Save button on LinkForm doesn't redirect to archiving 2019-09-05 15:59:51 +02:00
.styleci.yml 🎉 2019-08-22 20:12:37 +02:00
artisan 🎉 2019-08-22 20:12:37 +02:00
changelog.md Non-admin users can't access settings section 2019-10-10 14:25:56 +02:00
composer.json 📦 Moved to 2019-09-30 21:40:30 +02:00
composer.lock 📦 Moved to 2019-09-30 21:40:30 +02:00
package-lock.json Archiving 2019-09-02 18:15:52 +02:00
package.json 🚧 Link archiving 2019-09-02 13:55:24 +02:00
phpunit.xml 👌 E2E tests 🔧 Env and config 2019-08-24 01:30:40 +02:00
readme.md 🔖 1.2.12 Demo mode 2019-10-04 17:12:44 +02:00
server.php 🎉 2019-08-22 20:12:37 +02:00
webpack.mix.js 🍱 Assets 🔧 Assets versionning 2019-09-27 17:37:49 +02:00
yarn.lock 🎉 2019-08-22 20:12:37 +02:00

readme.md

Laravel Shaarli

It's a free and open source platform to host by yourself. Shaarli allows you to save your web links (websites, youtube videos, ...), to share your stories and manage your web accounts.

All of your content can be private or public and can be browsed by tags or all-in-one search.

It's ready to use for production. Laravel Shaarli is inspired by Shaarli but built with Laravel and Vue.js.

Summary

Requirements

  • Linux or macOS env
  • PHP >= 7.2
  • MySQL >= 5.7 (or SQLite >= 3)
  • Node.js >= 6
  • (Optional) Redis
  • (Optional) youtube-dl

Features

  • Links : to save a web content such a website or a youtube video
  • Stories : posts with markdown content
  • Chests : to save your web accounts
  • Rapid sharing through bookmark extension
  • Tagging system, search and RSS feeds
  • Private content or entirely private
  • Original Shaarli import
  • Export
  • Dark mode
  • i18n (english and french)
  • NEW Archiving
  • NEW 2-FA with email
  • RSS feed

Demo

Homepage

A public demo is available at https://shaarli.mka.ovh. Credentials are admin@example.com and secret. This demo is resetted hourly.

Installation

git clone https://github.com/MarceauKa/laravel-shaarli && cd laravel-shaarli
cp .env.example .env # Then edit it
composer install

Then run php artisan shaarli:install (for interactive installation) or php artisan migrate --seed (with default data). Default user is admin@example.com with password secret.

Additional configuration

Laravel Shaarli is built with Laravel 6. There's many ways to configuration database, session, mail and queue:

Archiving

Each link you share can be archived the way you want:

  • youtube-dl when available on your system, will be used to download media from youtube, soundcloud, vimeo and few more sites.

  • Puppeteer will be used by default to save the webpage as a PDF.

You can adjust archiving configuration in the settings section.

Security

Global privacy

If you don't want your content being publicy accessible, you can update this preference once application is installed from settings section.

2-FA

You're able to active 2-FA (2 factors authentication). By default 2-FA is disabled but you can update it from your app settings. Code length and code expiration are also configurable. Test if you application can send emails before enabling this feature.

Auth monitoring

Shaarli logs all successful and failed auths with their associated devices.

Chests encryption

Since 1.2.9, all chests data are encrypted in your database using AES-256-CBC and your app key.

Update

Update the application by running:

php artisan down
git reset --hard
git pull origin master
composer install --no-dev -o
php artisan migrate --force -n
php artisan optimize
php artisan view:clear
php artisan queue:restart # if you're using queues
php artisan up

Going live

Check these options before going live.

Composer flags composer install --no-dev -o

.env options

APP_ENV=production
APP_DEBUG=false
APP_URL=https://{your_url}
CACHE_DRIVER=file # or redis
SESSION_DRIVER=file # or redis
QUEUE_CONNECTION=sync # or redis, database
MAIL_DRIVER=smtp
MAIL_FROM_NAME={your_name}
MAIL_FROM_ADDRESS={your_email}

Artisan routines

php artisan optimize
php artisan view:clear

Artisan commands

Install command

php artisan shaarli:install

This command will install default data (seeder) or ask you for the default user.

Encrypt and decrypt

Encryption is made on the fly for your chests, but you can manually encrypt or decrypt them by running php artisan shaarli:chests:encrypt or php artisan shaarli:chests:decrypt.

Dependencies

Our dependencies with link to their documentation and why we use it.

PHP

  • laravel-auth-checker is used to keep a trace of auth attempts
  • scout is used for full-text search in database
  • excel is used to generate exports as xlsx or csv
  • valuestore is used for application settings
  • puphpeteer is used to save your links as PDF using a chrome browser
  • youtube-dl-php is a bridge to youtube-dl to save you links (youtube, soundcloud, ...) as a local copy

JS

Contribute

All contribution are welcome! Please use the dev branch for you pull requests.
If you make changes to JS, don't compile assets in production, I'll manually compile them when merging for security reasons.

Tests

  1. Be sure to have a testing database with touch database/testing.sqlite and have composer require-dev dependencies installer.
  2. Run testing server php artisan serve --env=testing.
  3. Run tests php artisan dusk --env=testing

Licence

MIT