You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.6 KiB
46 lines
1.6 KiB
"use strict";
|
|
|
|
//const https = require('https');
|
|
const realFs = require('fs');
|
|
const fs = require('graceful-fs');
|
|
fs.gracefulify(realFs);
|
|
|
|
const express = require('express');
|
|
const routes = require('./routes');
|
|
const http = require('http');
|
|
const path = require('path');
|
|
|
|
const app = express();
|
|
|
|
// all environments
|
|
app.set('port', process.env.PORT || 3000);
|
|
app.set('views', path.join(__dirname, 'views'));
|
|
app.set('view engine', 'jade');
|
|
app.set('gitpath', 'M:/g');
|
|
app.set('tmpcodepath', 'M:/c');
|
|
app.set('releasepath', 'M:/r');
|
|
app.use(express.favicon());
|
|
app.use(express.logger('dev'));
|
|
app.use(express.json({limit: '10mb'}));
|
|
app.use(express.urlencoded());
|
|
app.use(express.methodOverride());
|
|
app.use(app.router);
|
|
app.use(express.static(path.join(__dirname, 'public')));
|
|
|
|
// development only
|
|
if ('development' === app.get('env')) {
|
|
app.use(express.errorHandler());
|
|
}
|
|
|
|
app.get('/', routes.index);
|
|
app.post('/github/postreceive', routes.postreceive);
|
|
app.get('/github/postreceive', (req, res) => res.send("Only automated POST requests are allowed for postreceive route"));
|
|
app.get('/manual', routes.manual.get);
|
|
app.post('/manual', routes.manual.post);
|
|
app.get('/status/:owner/:reponame/:branch/:rev?', routes.status.page);
|
|
app.get('/pos-github.payonline.ru/*', routes.status.pageFromGithub);
|
|
app.get('/status.svg', routes.status.image);
|
|
app.get('/release/:owner/:reponame/:branch/:rev', routes.release);
|
|
app.get('/artifact/:owner/:reponame/:branch/:rev/*', routes.artifact);
|
|
|
|
http.createServer(app).listen(app.get('port'), () => console.log('Express server listening on port ' + app.get('port')));
|
|
|