hyvor / helper-laravel
Internal Package for HYVOR Applications
Requires
- php: ^8.1|^8.2|^8.3
- ext-intl: *
- guzzlehttp/guzzle: ^7.8
Requires (Dev)
- orchestra/testbench: ^8.0
- pestphp/pest: ^2.25
- phpstan/phpstan: ^1.10
This package is auto-updated.
Last update: 2024-11-05 13:03:05 UTC
README
This package provides the following features for HYVOR applications in Laravel:
- Authentication (with fake provider)
- HTTP helpers
- Media route
- Internationalization
- Component API
Installation
composer require hyvor/internal
Auth
This library provides a unified authentication system for the following providers:
- HYVOR
- OpenID Connect
- Fake (for testing)
Configuration
The following environment variables are supported. See config.php
for configuration options. Environment variables should be set in the .env
file.
User Data
The AuthUser
class is used to represent the user. It has the following properties:
int $id
- the user IDstring $name
- the user's namestring $email
- the user's email?string $username
- the user's username (only HYVOR)?string $picture_url
- the user's picture URL?string $location
- the user's location?string $bio
- the user's bio?string $website_url
- the user's website URL?string $sub
- the user's sub (only OpenID Connect)
<?php use Hyvor\Internal\Auth\AuthUser; // new instance new AuthUser( id: $id, name: $name, ... ); // from array AuthUser::fromArray([ 'id' => $id, 'name' => $name ])
Fetching Data
Fetching user data should always be done using API calls rather than using SQL joins in application-level queries, even if OpenID Connect is used. This is because HYVOR user data is always stored in an external database.
Use the following methods to fetch data by user ID, email, or username:
<?php use Hyvor\Internal\Auth\AuthUser; AuthUser::fromId($id); AuthUser::fromIds($ids); AuthUser::fromEmail($email); AuthUser::fromEmails($emails); AuthUser::fromUsername($username); AuthUser::fromUsernames($usernames);
Auth check
To check if the user is logged in:
use Hyvor\Internal\Auth\Auth; // AuthUser|null $user = Auth::check(); if ($user) { // user is logged in }
Redirects
Programmatic Redirects
Use the following methods to get redirects to login, signup, and logout pages:
use Hyvor\Internal\Auth\Auth; $loginUrl = Auth::login(); $signupUrl = Auth::signup(); $logoutUrl = Auth::logout();
By default, the user will be redirected to the current page after login or logout. You may also set the redirect
parameter to redirect the user to a specific page after login or logout:
use Hyvor\Internal\Auth\Auth; $loginUrl = Auth::login('/console'); // or full URL $loginUrl = Auth::login('https://talk.hyvor.com/console');
HTTP Redirects
The following routes are added to the application for HTTP redirects:
/api/auth/login
/api/auth/signup
/api/auth/logout
All endpoints support a redirect
parameter to redirect the user to a specific page/URL after login or logout.
Testing
In testing, the provider is always set to fake
. The FakeProvider
always generate dummy data for all requested ids, emails, and usernames. This is useful for testing. You may also set a database of users for the FakeProvider
to return specific data for specific users as follows:
use Hyvor\Internal\Auth\Providers\Fake\FakeProvider; it('adds names to the email', function() { // set the database of users FakeProvider::databaseSet([ [ 'id' => 1, 'name' => 'John Doe', ] ]); // send email to user ID 1 // then assert expect($email->body)->toContain('John Doe'); });
FakeProvider::databaseSet($database)
- sets the database (collection) of users.FakeProvider::databaseAdd($user)
- adds a user to the database.FakeProvider::databaseClear()
- clears the database. This should be called after each test case (tearDown).
When a database is set, the FakeProvider
will return the user data from that database only. This is useful for testing the following scenarios:
- When a user is not found (set an empty database).
- When a user's specific details are needed (e.g. name, email, etc.) as in the above example.
In most other cases, you should be able to use the Fake provider without setting a database. Because it automatically generates dummy data for all users, you do not need to seed a database before each test case. However, note that user's data will be different for each test case.
HTTP
This library provides a few helpers for handling HTTP requests.
Exceptions
HttpException
Use Hyvor\Internal\Http\Exceptions\HttpException
to throw an HTTP exception. This is, in most cases, this error will be sent to the client in the JSON response. Therefore, only use this in middleware and controllers (never in domains). Never share sensitive information in the message.
use Hyvor\Internal\Http\Exceptions\HttpException; throw new HttpException('User not found', 404);
Middleware
Auth Middleware
Use Hyvor\Internal\Http\Middleware\AuthMiddleware
to require authentication for a route.
use Hyvor\Internal\Http\Middleware\AuthMiddleware; Route::get()->middleware(AuthMiddleware::class);
If the user is not logged in, an HttpException
is thrown with status code 401. If the user is logged in, an AccessAuthUser
object (extends AuthUser
) is added to the service container, which can be used as follows:
use Hyvor\Internal\Http\Middleware\AccessAuthUser; class MyController { public function index(AccessAuthUser $user) { // $user is an instance of AccessAuthUser (extends AuthUser) } } function myFunction() { $user = app(AccessAuthUser::class); }
Routes
Here's a list of routes added by this library:
POST /api/auth/check
- returns the logged-in user or null.GET /api/auth/login
- redirects to the login page.GET /api/auth/signup
- redirects to the signup page.GET /api/auth/logout
- redirects to the logout page.
Models
HasUser Trait
You may add the Hyvor\Internal\Auth\HasUser
trait to any model to add a user()
method to it. This method returns the AuthUser
object, using the user_id
column of the model.
class Post extends Model { use HasUser; }
Internationalization
This library provides some helpers to handle internationalization. Most of the time, strings are used in the front-end in HYVOR apps, but for some cases like emails, you may need to translate strings in the back-end. Similar to our Design System, we use the ICU message format. Therefore, you can share the same translations between the front-end and back-end.
All JSON translation files should be places in a directory, which is set in the config file. The default directory is resources/lang
. The file name should be the language code (e.g. en-US.json
). The file should be a JSON object with keys as the message IDs and values as the translations. Nested keys are also supported. The locales are loaded from the files in the directory.
{ "welcome": "Welcome to HYVOR", "email": "Your email is {email}.", "signup": { "title": "Sign Up" } }
Usage
use Hyvor\Internal\Internationalization\Strings; $strings = new Strings('en-US'); $welcome = $strings->get('welcome'); $email = $strings->get('email', ['email' => 'me@hyvor.com']); $signupTitle = $strings->get('signup.title');
The locale is matched to the closest available locale. For example, if you have the following locales:
en-US
fr-FR
es
new Strings('en');; // locale -> `en-US` new Strings('en-GB'); // locale -> `en-US` new Strings('fr-FR'); // locale -> `fr-FR` new Strings('fr'); // locale -> `fr-FR` new Strings('es-ES'); // locale -> `es`
You can also use the ClosestLocale
class to get the closest locale to a given locale.
use Hyvor\Internal\Internationalization\ClosestLocale; ClosestLocale::get('en', ['en-US', 'fr-FR', 'es']); // returns `en-US`
The I18n
singleton class is the base class that manages the locales in the app.
use Hyvor\Internal\Internationalization\I18n; $i18n = app(I18n::class); $i18n->getAvailableLocales(); // ['en-US', 'fr-FR', 'es', ...] $i18n->getLocaleStrings('en-US'); // returns the strings from the JSON file as an array $i18n->getDefaultLocaleStrings(); // strings of the default locale
Media
This library adds the /api/media/{path}
route to your app. This route will serve/stream files from the default storage disk. This makes it easy to serve the files from the same domain.