mirror of
https://github.com/SomboChea/ui
synced 2024-11-05 14:14:26 +07:00
9d7be476ad
add new json snapshot serializer
26 lines
743 B
JavaScript
26 lines
743 B
JavaScript
/**
|
|
* Token Utility
|
|
*/
|
|
|
|
import { Base64 } from 'js-base64';
|
|
import addHours from 'date-fns/add_hours';
|
|
|
|
export function generateTokenWithTimeRange (limit = 0) {
|
|
const payload = {
|
|
username: 'verdaccio',
|
|
exp: Number.parseInt(addHours(new Date(), limit).getTime() / 1000, 10)
|
|
};
|
|
return `xxxxxx.${Base64.encode(JSON.stringify(payload))}.xxxxxx`;
|
|
}
|
|
|
|
export function generateTokenWithExpirationAsString () {
|
|
const payload = { username: 'verdaccio', exp: 'I am not a number' };
|
|
return `xxxxxx.${Base64.encode(payload)}.xxxxxx`;
|
|
}
|
|
|
|
export function generateTokenWithOutExpiration (){
|
|
const payload = {
|
|
username: 'verdaccio'
|
|
};
|
|
return `xxxxxx.${Base64.encode(JSON.stringify(payload))}.xxxxxx`;
|
|
} |