* feat: API endpoints for email signin * fix: After testing * Initial signin flow working * move shared middleware * feat: Add guest signin toggle, obey on endpoints * feat: Basic email signin when enabled * Improve guest signin email Disable double signin with JWT * fix: Simple rate limiting * create placeholder users in db * fix: Give invited users default avatar add invited users to people settings * test * add transaction * tmp: test CI * derp * md5 * urgh * again * test: pass * test * fix: Remove usage of data values * guest signin page * Visually separator 'Invited' from other people tabs * fix: Edge case attempting SSO signin for guest email account * fix: Correctly set email auth method to cookie * Improve rate limit error display * lint: cleanup / comments * Improve invalid token error display * style tweaks * pass guest value to subdomain * Restore copy link option * feat: Allow invite revoke from people management * fix: Incorrect users email schema does not allow for user deletion * lint * fix: avatarUrl for deleted user failure * change default to off for guest invites * fix: Changing security settings wipes subdomain * fix: user delete permissioning * test: Add user.invite specs
107 lines
2.3 KiB
JavaScript
107 lines
2.3 KiB
JavaScript
// @flow
|
|
import { Share, Team, User, Event, Document, Collection } from '../models';
|
|
import uuid from 'uuid';
|
|
|
|
let count = 0;
|
|
|
|
export async function buildShare(overrides: Object = {}) {
|
|
if (!overrides.teamId) {
|
|
const team = await buildTeam();
|
|
overrides.teamId = team.id;
|
|
}
|
|
if (!overrides.userId) {
|
|
const user = await buildUser({ teamId: overrides.teamId });
|
|
overrides.userId = user.id;
|
|
}
|
|
|
|
return Share.create(overrides);
|
|
}
|
|
|
|
export function buildTeam(overrides: Object = {}) {
|
|
count++;
|
|
|
|
return Team.create({
|
|
name: `Team ${count}`,
|
|
slackId: uuid.v4(),
|
|
...overrides,
|
|
});
|
|
}
|
|
|
|
export function buildEvent(overrides: Object = {}) {
|
|
return Event.create({
|
|
name: 'documents.publish',
|
|
ip: '127.0.0.1',
|
|
...overrides,
|
|
});
|
|
}
|
|
|
|
export async function buildUser(overrides: Object = {}) {
|
|
count++;
|
|
|
|
if (!overrides.teamId) {
|
|
const team = await buildTeam();
|
|
overrides.teamId = team.id;
|
|
}
|
|
|
|
return User.create({
|
|
email: `user${count}@example.com`,
|
|
username: `user${count}`,
|
|
name: `User ${count}`,
|
|
service: 'slack',
|
|
serviceId: uuid.v4(),
|
|
createdAt: new Date('2018-01-01T00:00:00.000Z'),
|
|
lastActiveAt: new Date('2018-01-01T00:00:00.000Z'),
|
|
...overrides,
|
|
});
|
|
}
|
|
|
|
export async function buildCollection(overrides: Object = {}) {
|
|
count++;
|
|
|
|
if (!overrides.teamId) {
|
|
const team = await buildTeam();
|
|
overrides.teamId = team.id;
|
|
}
|
|
|
|
if (!overrides.userId) {
|
|
const user = await buildUser();
|
|
overrides.userId = user.id;
|
|
}
|
|
|
|
return Collection.create({
|
|
name: 'Test Collection',
|
|
description: 'Test collection description',
|
|
creatorId: overrides.userId,
|
|
type: 'atlas',
|
|
...overrides,
|
|
});
|
|
}
|
|
|
|
export async function buildDocument(overrides: Object = {}) {
|
|
count++;
|
|
|
|
if (!overrides.teamId) {
|
|
const team = await buildTeam();
|
|
overrides.teamId = team.id;
|
|
}
|
|
|
|
if (!overrides.userId) {
|
|
const user = await buildUser();
|
|
overrides.userId = user.id;
|
|
}
|
|
|
|
if (!overrides.collectionId) {
|
|
const collection = await buildCollection(overrides);
|
|
overrides.collectionId = collection.id;
|
|
}
|
|
|
|
return Document.create({
|
|
title: `Document ${count}`,
|
|
text: 'This is the text in an example document',
|
|
publishedAt: new Date(),
|
|
lastModifiedById: overrides.userId,
|
|
createdById: overrides.userId,
|
|
...overrides,
|
|
});
|
|
}
|