controller.ts 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /**
  2. * @Author HonorLee (dev@honorlee.me)
  3. * @Version 1.0 (2018-05-04)
  4. * @License MIT
  5. */
  6. export default class Controller{
  7. private _requestData:RequestData;
  8. private _Request:any;
  9. private _Response:any;
  10. public REFERER:string;
  11. public COOKIE:any;
  12. public GET:any;
  13. public POST:any;
  14. public UPLOAD:any;
  15. public SESSION:any;
  16. public DATA:AnyKeyString;
  17. constructor(requestData:RequestData) {
  18. this._requestData = requestData;
  19. this._Request = requestData.req;
  20. this._Response = requestData.res;
  21. this.REFERER = this._Request.headers.referer;
  22. this.COOKIE = requestData.COOKIE;
  23. this.GET = requestData.GET;
  24. this.POST = requestData.POST;
  25. this.UPLOAD = requestData.UPLOAD;
  26. this.SESSION = requestData.SESSION;
  27. this.DATA = {};
  28. if(this.GET._time) delete this.GET._time;
  29. if(this.POST._time) delete this.POST._time;
  30. // console.log(this._constructor)
  31. }
  32. /**
  33. * [response description]
  34. * @return {[type]} [description]
  35. */
  36. end(data:any,status?:number,mime?:string):void{
  37. let endContent = data,statusCode = 200,mimeType = 'text/plain';
  38. if(!endContent) endContent = '';
  39. if(typeof endContent == 'number') endContent = `${endContent}`;
  40. if(status) statusCode = status;
  41. if(mime) mimeType = mime;
  42. if(status) this._Response.statusCode = status;
  43. if(mimeType) this._Response.setHeader('Content-Type', `${mimeType}; charset=UTF-8`);
  44. try{
  45. this._Response.write(endContent);
  46. this._Response.end();
  47. }catch(e:any){
  48. LOGGER.error(e.stack)
  49. }
  50. }
  51. endRedirect(location:string,permanently?:boolean){
  52. const status = permanently?301:302;
  53. this._Response.writeHead(status,{'Location':location});
  54. this._Response.end();
  55. }
  56. /**
  57. * [responseInJSON description]
  58. * @param {[type]} somthing [String,Number,Object]
  59. */
  60. endJSON(somthing:any){
  61. let endContent;
  62. if(typeof somthing == 'string' || typeof somthing == 'number'){
  63. endContent = {data:somthing};
  64. }else if(typeof somthing == 'object'){
  65. endContent = somthing;
  66. }else{
  67. return this._error(new Error('Function endInJSON argument type must be string,number or object'));
  68. }
  69. this.end(JSON.stringify(endContent),200,'text/json');
  70. }
  71. /**
  72. * [responseAPI description]
  73. * @param {[type]} errorCode [description]
  74. * @param {[type]} somthing [description]
  75. */
  76. endAPI(errorCode:number,somthing:any){
  77. const endContent = {error:errorCode,data:null};
  78. if(typeof somthing == 'string' || typeof somthing == 'number' || typeof somthing == 'object'){
  79. endContent.data = somthing;
  80. this.end(JSON.stringify(endContent),200,'text/json');
  81. }else{
  82. this._error(new Error('Function endAPI argument type must be string,number or object'));
  83. }
  84. }
  85. /**
  86. * [responseAPI description]
  87. * @param {[type]} errorCode [description]
  88. * @param {[type]} somthing [description]
  89. */
  90. endView(viewname:string,data:any,option?:any){
  91. const viewFilePath = `${SYSTEM.MVC.PATH.VIEW}/${viewname}`;
  92. let tpl;
  93. try{
  94. tpl = FILE.readFileSync(`${viewFilePath}.html`,'utf-8');
  95. }catch(e){
  96. try{
  97. tpl = FILE.readFileSync(`${viewFilePath}.tpl`,'utf-8');
  98. }catch(e){
  99. }
  100. }
  101. if(!tpl) return this.end(`View template [${viewname}] not exist!`);
  102. const render = SYSTEM.MVC.EJS.compile(tpl,option);
  103. const renderedTpl = render(data);
  104. this.end(200,renderedTpl,'text/html');
  105. }
  106. /**
  107. * [responseView description]
  108. * @param {[type]} viewName [description]
  109. * @param {[type]} data [description]
  110. * @return {[type]} [description]
  111. */
  112. // endView(viewName,data){
  113. // let view = new VIEW(viewName,data);
  114. // if(view && view.html){
  115. // this.end(200,view.html,'text/html');
  116. // }else{
  117. // this.end(502,`View [${viewName}] not found`,'text/plain');
  118. // }
  119. // }
  120. setCookie(key:string,value:any,expireHour?:number|'forever',path?:string,httpOnly?:boolean){
  121. let cookie,originCookie;
  122. if(this._Response.hasHeader('Set-Cookie')){
  123. originCookie = this._Response.getHeader('Set-Cookie');
  124. }
  125. if(!originCookie) originCookie = [];
  126. if(typeof originCookie == 'string') originCookie = [originCookie];
  127. cookie = `${key}=${value}`;
  128. cookie += ';path=' + (path||'/');
  129. expireHour = expireHour!=undefined&&expireHour>=0?expireHour:'forever';
  130. let expireTime;
  131. if(expireHour=='forever'){
  132. expireTime = new Date('9999/01/01 00:00:00').toUTCString();
  133. }else if(expireHour==0){
  134. expireTime = new Date(0).toUTCString();
  135. }else{
  136. expireTime = new Date(new Date().getTime()+Number(expireHour)*1000*60).toUTCString();
  137. }
  138. cookie += ';expires=' + expireTime;
  139. if(httpOnly) cookie += ';httpOnly=true';
  140. originCookie.push(cookie);
  141. this._Response.setHeader('Set-Cookie',cookie);
  142. }
  143. renewCookie(key:string,expire:number|'forever',path?:string){
  144. const originCookieValue = this.COOKIE[key];
  145. if(!originCookieValue) return false;
  146. this.setCookie(key,originCookieValue,expire,path);
  147. }
  148. _error(err:any){
  149. LOGGER.error(err.stack);
  150. this.end(`<center style="font-size:24px">- 403 -</center>`,403,'text/html');
  151. }
  152. }