2019-09-03 06:07:03 +03:00
|
|
|
# Magic Link
|
|
|
|
|
|
|
|
## Install
|
|
|
|
|
|
|
|
`npm install @tryghost/magic-link --save`
|
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
`yarn add @tryghost/magic-link`
|
|
|
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
```js
|
|
|
|
const crypto = require('crypto');
|
|
|
|
const nodemailer = require('nodemailer');
|
|
|
|
const MagicLink = require('@tryghost/magic-link');
|
2020-09-17 18:01:33 +03:00
|
|
|
const JWTTokenProvider = require('@tryghost/magic-link/JWTTokenProvider');
|
2019-09-03 06:07:03 +03:00
|
|
|
|
|
|
|
async function main() {
|
2020-09-17 18:01:33 +03:00
|
|
|
const jwtSecret = crypto.randomBytes(16).toString('hex');
|
2019-09-03 06:07:03 +03:00
|
|
|
|
|
|
|
// https://nodemailer.com/about/#example
|
|
|
|
const testAccount = await nodemailer.createTestAccount();
|
|
|
|
|
|
|
|
const transporter = nodemailer.createTransport({
|
|
|
|
host: 'smtp.ethereal.email',
|
|
|
|
port: 587,
|
|
|
|
secure: false, // true for 465, false for other ports
|
|
|
|
auth: {
|
|
|
|
user: testAccount.user, // generated ethereal user
|
|
|
|
pass: testAccount.pass // generated ethereal password
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
from: '"Your App" <signin@example.com>',
|
|
|
|
subject: 'Whatever'
|
|
|
|
});
|
|
|
|
|
|
|
|
const service = MagicLink({
|
2020-09-17 18:01:33 +03:00
|
|
|
tokenProvider: new JWTTokenProvider(jwtSecret),
|
2019-09-03 06:07:03 +03:00
|
|
|
transporter,
|
|
|
|
getSigninURL(token) {
|
|
|
|
return `http://example.com/signin?token=${token}`
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* POST /signin
|
|
|
|
*/
|
2020-09-17 17:42:01 +03:00
|
|
|
const {url, info} = await service.sendMagicLink({
|
2019-09-03 06:07:03 +03:00
|
|
|
email: 'test@example.com',
|
2020-09-17 17:42:01 +03:00
|
|
|
tokenData: {
|
2019-09-03 06:07:03 +03:00
|
|
|
id: 'some-id'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// https://nodemailer.com/about/#example
|
|
|
|
// Preview only available when sending through an Ethereal account
|
|
|
|
console.log('Preview URL: %s', nodemailer.getTestMessageUrl(info));
|
|
|
|
// Preview URL: https://ethereal.email/message/WaQKMgKddxQDoou...
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GET /signin
|
|
|
|
*/
|
2020-09-17 17:42:01 +03:00
|
|
|
const data = await service.getDataFromToken(token);
|
2019-09-03 06:07:03 +03:00
|
|
|
// createSomeKindOfSession(user);
|
|
|
|
}
|
|
|
|
|
|
|
|
main();
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## Develop
|
|
|
|
|
|
|
|
This is a mono repository, managed with [lerna](https://lernajs.io/).
|
|
|
|
|
|
|
|
Follow the instructions for the top-level repo.
|
|
|
|
1. `git clone` this repo & `cd` into it as usual
|
|
|
|
2. Run `yarn` to install top-level dependencies.
|
|
|
|
|
|
|
|
|
|
|
|
## Run
|
|
|
|
|
|
|
|
- `yarn dev`
|
|
|
|
|
|
|
|
|
|
|
|
## Test
|
|
|
|
|
|
|
|
- `yarn lint` run just eslint
|
|
|
|
- `yarn test` run lint and tests
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Copyright & License
|
|
|
|
|
2020-01-07 22:06:08 +03:00
|
|
|
Copyright (c) 2013-2020 Ghost Foundation - Released under the [MIT license](LICENSE).
|