Paŭlo Ebermann 31f29be2a0 Use deterministic randomness in ExampleGenerator. (#5068)
* Update samples for nodejs + nodejs-google-cloud-functions.

* Fix example generator to use deterministic randomness.

This avoids changing results after each generation, and makes diff reviews easier.

* Update NodeJS samples.

This is the last "randomness" update. From now on the samples should only change if either the generator, the input or parameters change.
2017-03-15 17:15:13 +08:00

115 lines
2.5 KiB
JavaScript

'use strict';
exports.createUser = function(args, res, next) {
/**
* Create user
* This can only be done by the logged in user.
*
* body User Created user object
* no response value expected for this operation
**/
res.end();
}
exports.createUsersWithArrayInput = function(args, res, next) {
/**
* Creates list of users with given input array
*
*
* body List List of user object
* no response value expected for this operation
**/
res.end();
}
exports.createUsersWithListInput = function(args, res, next) {
/**
* Creates list of users with given input array
*
*
* body List List of user object
* no response value expected for this operation
**/
res.end();
}
exports.deleteUser = function(args, res, next) {
/**
* Delete user
* This can only be done by the logged in user.
*
* username String The name that needs to be deleted
* no response value expected for this operation
**/
res.end();
}
exports.getUserByName = function(args, res, next) {
/**
* Get user by user name
*
*
* username String The name that needs to be fetched. Use user1 for testing.
* returns User
**/
var examples = {};
examples['application/json'] = {
"firstName" : "aeiou",
"lastName" : "aeiou",
"password" : "aeiou",
"userStatus" : 6,
"phone" : "aeiou",
"id" : 0,
"email" : "aeiou",
"username" : "aeiou"
};
if (Object.keys(examples).length > 0) {
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
} else {
res.end();
}
}
exports.loginUser = function(args, res, next) {
/**
* Logs user into the system
*
*
* username String The user name for login
* password String The password for login in clear text
* returns String
**/
var examples = {};
examples['application/json'] = "aeiou";
if (Object.keys(examples).length > 0) {
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
} else {
res.end();
}
}
exports.logoutUser = function(args, res, next) {
/**
* Logs out current logged in user session
*
*
* no response value expected for this operation
**/
res.end();
}
exports.updateUser = function(args, res, next) {
/**
* Updated user
* This can only be done by the logged in user.
*
* username String name that need to be deleted
* body User Updated user object
* no response value expected for this operation
**/
res.end();
}