Download the PHP package simplon/doi without Composer
On this page you can find all versions of the php package simplon/doi. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package doi
Short Description Simple double opt-in handler w/ database handling via interface
License MIT
Homepage https://github.com/fightbulc/simplon_doi
Informations about the package doi
_ _ _ _ ___(_)_ __ ___ _ __ | | ___ _ __ __| | ___ (_) / __| | '_ ` _ \| '_ \| |/ _ \| '_ \ / _` |/ _ \| | \__ \ | | | | | | |_) | | (_) | | | | | (_| | (_) | | |___/_|_| |_| |_| .__/|_|\___/|_| |_| \__,_|\___/|_| |_|
Simplon Doi
A simple double opt-in verification with injectable DB handler.
Intro
One of my projects has a process for and another one for . In both cases I am generating a token, save it to the database and send an email to the user to verify the request. Both scenarios use independent setups since one has been implemented in the very beginning and the other one a couple of months later.
has a flexible setup. It will leave it up to you how to interact with your database. The only thing it takes care of is its functionality: creation and validation of a double opt-in process.
Install
Get the package via Composer:
You will also need the following table in your database. and is up to you. The following example is based on :
Quick Example
Creating a Doi
The following steps create a and save it to the database:
Now you have all related data within . Now you need to let your user know. Probably you will send an email which includes a link which points back to your app. The app needs to handle the request and pass on the to the validation process.
Validating a Doi
If the user comes back via a callback link you could use the following code to validate the :
Validation options
Setup: Database handler
A very rough abstraction of a sample database handler.
License
Cirrus is freely distributable under the terms of the MIT license.
Copyright (c) 2015 Tino Ehrich ([email protected])
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.