-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsession.js
73 lines (52 loc) · 1.28 KB
/
session.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/**
* `Session` Resource module
*
* @module Session
*
*/
'use strict';
var
defaults = require("101/defaults")
, utils = require("./lib/_utils.js")
, Agent = require("./lib/_agent.js")
, debug = require("debug")("Session")
;
/* Session constructor
*
*/
var Session = function(opt){
if( opt === null || typeof opt !== "object" ){
debug("No gitlab url and token specified");
throw new Error("Please specify gitlab url and token") ;
}
//Create new agent
this.agent = new Agent( opt );
return this;
}
/** login to get private token
*
* @param {Object} credObj: Credentails object with "login", "email" and "password" keys
* @param { requestCallback } callback: Callback
*
*/
Session.prototype.create = function ( credObj, callback){
var optionF = {
"method" : "POST",
"path" : "session"
}
if( arguments.length < 2 ||
typeof credObj.login === "undefined" ||
typeof credObj.password === "undefined"){
throw new Error("Invalid arguments");
}
debug("retrieving priviate token:---------------- ");
this.agent.dial(optionF, credObj, callback);
}
/** Callback
*
* @callback requestCallback
* @param {Object} error : Error
* @param {Object} response: Reponse object
* @param { ( Object | Object[] ) } result: Result(s)
*/
module.exports = Session;