teamgantt / user-sync
Sync user data with external stores
Installs: 30 226
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 5
Forks: 1
Open Issues: 0
Requires
- php: >=8.0
- psr/log: ^3.0.2
Requires (Dev)
- aws/aws-sdk-php: ^3.217
- kahlan/kahlan: ^5.0
This package is not auto-updated.
Last update: 2024-11-19 19:42:57 UTC
README
Sync user data with external stores.
Currently includes support for the following remote stores:
usage
Currently deals in syncing passwords and email addresses. This is for use cases that may require it, though the typical use case does not involve syncing passwords. The case for syncing a password may make sense during a period of migration or phasing out local storage of passwords.
Users can be deleted by constructing a SyncRequestInterface
whose getAction
method returns the string literal 'delete'
.
Supported actions are 'update'
and 'delete
'.
SyncInterface
exposes a contract for PHP invokable classes, and looks like this:
public function __invoke(SyncableUserInterface $user, SyncRequestInterface $request);
There is a default implementation of SyncRequestInterface
included as SyncRequest
.
use TeamGantt\UserSync\SyncRequest; use TeamGantt\UserSync\CognitoSync; $args = []; // see CognitoSync for required arguments - note: requires aws/aws-sdk-php $sync = new CognitoSync(...$args); // note that all params to SyncRequest are optional. Syncing will or will not happen depending on what is given $request = SyncRequest::fromArray(['password' => 'newcleartextpassword', 'email_address' => 'newemail@email.com', 'action' => 'update']); $user = ExampleUserRepository::fetch($userId); // $user can be any object that implements the included SyncableUserInterface $sync($user, $request); // tada!
testing
$ composer test