Bart Kummel 30c2b6f262 Improved ExampleGenerator (#4797)
* Improved ExampleGenerator:

- Now takes into account enum and uri/url formats for strings.
- Uses example for referenced objects if available.
- Proper examples get generated for specific numeric formats, because more specific formats now get checked before generic format.
- Honors min and max values for numerical properties, if set.

* Ran script `bin/nodejs-petstore-server.sh`.

* Renamed log to logger to conform to coding standard.
2017-03-03 18:38:19 +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" : 4,
"phone" : "aeiou",
"id" : 5,
"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();
}