Skip to content

Commit

Permalink
Step 12.32: Update creation of users stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and DAB0mB committed Feb 13, 2017
1 parent bc95e29 commit 20b368d
Showing 1 changed file with 38 additions and 8 deletions.
46 changes: 38 additions & 8 deletions server/main.ts
@@ -1,8 +1,7 @@
import { Accounts } from 'meteor/accounts-base';
import { Meteor } from 'meteor/meteor';
import * as Moment from 'moment';
import { Chats, Messages, Users } from '../imports/collections';
import { MessageType } from '../imports/models';
import { MessageType, Picture } from '../imports/models';

Meteor.startup(() => {
if (Meteor.settings) {
Expand All @@ -14,43 +13,74 @@ Meteor.startup(() => {
return;
}

let picture = importPictureFromUrl({
name: 'man1.jpg',
url: 'https://randomuser.me/api/portraits/men/1.jpg'
});

Accounts.createUserWithPhone({
phone: '+972540000001',
profile: {
name: 'Ethan Gonzalez',
picture: 'https://randomuser.me/api/portraits/men/1.jpg'
pictureId: picture._id
}
});

picture = importPictureFromUrl({
name: 'lego1.jpg',
url: 'https://randomuser.me/api/portraits/lego/1.jpg'
});

Accounts.createUserWithPhone({
phone: '+972540000002',
profile: {
name: 'Bryan Wallace',
picture: 'https://randomuser.me/api/portraits/lego/1.jpg'
pictureId: picture._id
}
});

picture = importPictureFromUrl({
name: 'woman1.jpg',
url: 'https://randomuser.me/api/portraits/women/1.jpg'
});

Accounts.createUserWithPhone({
phone: '+972540000003',
profile: {
name: 'Avery Stewart',
picture: 'https://randomuser.me/api/portraits/women/1.jpg'
pictureId: picture._id
}
});

picture = importPictureFromUrl({
name: 'woman2.jpg',
url: 'https://randomuser.me/api/portraits/women/2.jpg'
});

Accounts.createUserWithPhone({
phone: '+972540000004',
profile: {
name: 'Katie Peterson',
picture: 'https://randomuser.me/api/portraits/women/2.jpg'
pictureId: picture._id
}
});

picture = importPictureFromUrl({
name: 'man2.jpg',
url: 'https://randomuser.me/api/portraits/men/2.jpg'
});

Accounts.createUserWithPhone({
phone: '+972540000005',
profile: {
name: 'Ray Edwards',
picture: 'https://randomuser.me/api/portraits/men/2.jpg'
pictureId: picture._id
}
});
});
});

function importPictureFromUrl(options: { name: string, url: string }): Picture {
const description = { name: options.name };

return Meteor.call('ufsImportURL', options.url, description, 'pictures');
}

0 comments on commit 20b368d

Please sign in to comment.