Skip to content

Commit

Permalink
Step 12.33: 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 6920c98 commit 8069e3e
Showing 1 changed file with 37 additions and 6 deletions.
43 changes: 37 additions & 6 deletions api/server/main.ts
Expand Up @@ -2,7 +2,7 @@ import { Meteor } from 'meteor/meteor';
import { Chats } from './collections/chats';
import { Messages } from './collections/messages';
import * as moment from 'moment';
import { MessageType } from './models';
import { MessageType, Picture } from './models';
import { Accounts } from 'meteor/accounts-base';
import { Users } from './collections/users';

Expand All @@ -16,43 +16,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 8069e3e

Please sign in to comment.