2018年2月10日土曜日

node.jsのURL追加をクラスで実装してみる。

ブログには大きい記事しか載せるべきではないかと思ってはいたのですが、
備忘録などに使えるしどうせ見る人もそんなにいないであろう(笑)と思ったので、
これからは小さいネタも載せて更新頻度の向上も目指したいと思ってます(^_^;)

さて、今回はひょんなことからWebアプリを作らないといけなくなったわけなのですが、
その際にnode.jsを使わせて頂いているわけです。

そこでまぁnpmを使って他のパッケージを利用するのもいいのですが、
今回はJsのクラスで勉強がてら(というか興味)に実装しようと考えたわけです。

まぁこのwebアプリ自体公にするものではなさそうなので大丈夫かなと(おい)

  1. var http = require('http');
  2. var fs = require('fs');
  3.  
  4. var server = http.createServer();
  5. server.on('request', getJs);
  6. console.log('Server running ...');
  7.  
  8. var Link_creator = function(source,linkname,type){
  9. this.source = source;
  10. this.linkname = linkname;
  11. this.type = type;
  12. }
  13.  
  14. Link_creator.prototype.add = function(url,Res){
  15. console.log("function in");
  16. console.log(url);
  17. console.log("type is "+this.type);
  18. if(this.type == 'html'){
  19.  
  20. if (this.linkname == url) {
  21. fs.readFile(this.source, 'UTF-8', function (err, data) {
  22. Res.writeHead(200, {'Content-Type': 'text/html'});
  23. Res.write(data);
  24. Res.end();
  25. });
  26. }
  27. return Res;
  28. }else if(this.type == 'js'){
  29. if (this.linkname == url) {
  30. fs.readFile(this.source, 'UTF-8', function (err, data) {
  31. Res.writeHead(200, {'Content-Type': 'application/javascript'});
  32. Res.write(data);
  33. Res.end();
  34. });
  35. }
  36. return Res;
  37. }else if(this.type == 'jpg'){
  38. if (this.linkname == url) {
  39. Res.writeHead(200, {'Content-Type': 'image/jpeg'});
  40. Res.end(fs.readFileSync(this.source, 'binary' ),'binary');
  41. }
  42. return Res;
  43. }else if(this.type == 'gif'){
  44. if (this.linkname == url) {
  45. Res.writeHead(200, {'Content-Type': 'image/gif'});
  46. Res.end(fs.readFileSync(this.source, 'binary' ),'binary');
  47. }
  48. return Res;
  49. }else if(this.type == 'css'){
  50. if (this.linkname == url) {
  51. fs.readFile(this.source, 'UTF-8', function (err, data) {
  52. Res.writeHead(200, {'Content-Type': 'text/css'});
  53. Res.write(data);
  54. Res.end();
  55. });
  56. }
  57. return Res;
  58. }
  59. }
  60. // new Link_creator('ローカルファイルの指定','URIの指定','タイプの指定')
  61. var sites = [new Link_creator('./main.html','/index.html','html')
  62. ,new Link_creator('./home.html','/','html')];
  63.  
  64.  
  65.  
  66. function getJs(req, res) {
  67. var url = req.url;
  68. console.log(url);
  69. sites.forEach(function(site){
  70. if(site.linkname == url){
  71. console.log(site.source);
  72. res = site.add(url,res);
  73. }
  74. });
  75. }
  76.  
  77.  
  78. server.listen(8080);
  79.  

とまぁこんな感じになります。
ミソは
new Link_creator('ローカルファイルの指定','URIの指定','タイプの指定')
ですね。
タイプの指定はクラス内のadd関数をゴニョゴニョしてオリジナルのものを
追加すればいいです。

やっぱりオブジェクト指向便利だなぁ…(しみじみ)

0 件のコメント:

コメントを投稿