An error occurred while loading the file. Please try again.
-
Harishkumar Gangula authoredfa86eddf
var express = require('express')
var bodyParser = require('body-parser')
var methodOverride = require('method-override')
var http = require('http')
var path = require('path')
var cp = require('child_process')
var TelemetryUtil = require('sb_telemetry_util')
var telemetry = new TelemetryUtil()
var fs = require('fs')
var configUtil = require('sb-config-util')
const contentProvider = require('sb_content_provider_util')
var contentMetaProvider = require('./contentMetaFilter')
// TODO below configuration should to be refactored in a seperate file
const contentProviderConfigPath = path.join(__dirname, '/config/contentProviderApiConfig.json')
var contentProviderApiConfig = JSON.parse(fs.readFileSync(contentProviderConfigPath))
const telemtryEventConfig = JSON.parse(fs.readFileSync(path.join(__dirname, 'config/telemetryEventConfig.json')))
var reqDataLimitOfContentUpload = '50mb'
const port = process.env.sunbird_content_service_port ? process.env.sunbird_content_service_port : 5000
const defaultChannel = process.env.sunbird_default_channel || 'sunbird'
const telemetryBaseUrl = process.env.sunbird_telemetry_service_local_url ? process.env.sunbird_telemetry_service_local_url : 'http://telemetry-service:9001/'
globalEkstepProxyBaseUrl = process.env.sunbird_content_plugin_base_url ? process.env.sunbird_content_plugin_base_url : 'https://qa.ekstep.in'
const contentRepoBaseUrl = process.env.sunbird_content_repo_api_base_url || 'https://dev.ekstep.in/api'
const contentRepoApiKey = process.env.sunbird_content_repo_api_key
const learnerServiceLocalBaseUrl = process.env.sunbird_learner_service_local_base_url
? process.env.sunbird_learner_service_local_base_url
: 'http://learner-service:9000'
const searchServiceBaseUrl = process.env.sunbird_search_service_api_base_url || 'https://dev.ekstep.in/api/search'
const dialRepoBaseUrl = process.env.sunbird_dial_repo_api_base_url || 'https://qa.ekstep.in/api'
const pluginRepoBaseUrl = process.env.sunbird_plugin_repo_api_base_url || 'https://dev.ekstep.in/api'
const dataServiceBaseUrl = process.env.sunbird_data_service_api_base_url || 'https://qa.ekstep.in/api'
const searchServiceApiKey = process.env.sunbird_search_service_api_key
const dialRepoApiKey = process.env.sunbird_dial_repo_api_key
const pluginRepoApiKey = process.env.sunbird_plugin_repo_api_key
const dataServiceApiKey = process.env.sunbird_data_service_api_key
const whiteListedChannelList = process.env.sunbird_content_service_whitelisted_channels
const blackListedChannelList = process.env.sunbird_content_service_blacklisted_channels
const producerId = process.env.sunbird_environment + '.' + process.env.sunbird_instance + '.content-service'
configUtil.setContentProviderApi(contentProviderApiConfig.API)
configUtil.setConfig('CONTENT_REPO_BASE_URL', contentRepoBaseUrl)
configUtil.setConfig('TELEMETRY_BASE_URL', telemetryBaseUrl)
configUtil.setConfig('CONTENT_REPO_AUTHORIZATION_TOKEN', 'Bearer ' + contentRepoApiKey)
configUtil.setConfig('LEARNER_SERVICE_LOCAL_BASE_URL', learnerServiceLocalBaseUrl)
configUtil.setConfig('DIALCODE_GENERATE_MAX_COUNT', 20000)
configUtil.setConfig('CONTENT_UPLOAD_REQ_LIMIT', reqDataLimitOfContentUpload)
configUtil.setConfig('SEARCH_SERVICE_BASE_URL', searchServiceBaseUrl)
configUtil.setConfig('DIAL_REPO_BASE_URL', dialRepoBaseUrl)
configUtil.setConfig('PLUGIN_REPO_BASE_URL', pluginRepoBaseUrl)
configUtil.setConfig('DATA_SERVICE_BASE_URL', dataServiceBaseUrl)
configUtil.setConfig('SEARCH_SERVICE_AUTHORIZATION_TOKEN', 'Bearer ' + searchServiceApiKey)
configUtil.setConfig('DIAL_REPO_AUTHORIZATION_TOKEN', 'Bearer ' + dialRepoApiKey)
configUtil.setConfig('PLUGIN_REPO_AUTHORIZATION_TOKEN', 'Bearer ' + pluginRepoApiKey)
configUtil.setConfig('DATA_SERVICE_AUTHORIZATION_TOKEN', 'Bearer ' + dataServiceApiKey)
process.env.sunbird_cassandra_ips = process.env.sunbird_cassandra_ips || '127.0.0.1'
process.env.sunbird_cassandra_port = process.env.sunbird_cassandra_port || 9042
process.env.dial_code_image_temp_folder = 'temp'
var app = express()
const isEkStepProxyRequest = function (req) {
7172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
let url = req.url
const uploadAPI = configUtil.getConfig('UPLOAD_CONTENT_URI')
const uploadUrlAPI = configUtil.getConfig('CONTENT_UPLOAD_URL_URI')
return url && ((url.indexOf(uploadAPI) > -1 && !(url.indexOf(uploadUrlAPI) > -1)) || url.indexOf('/telemetry') > -1)
}
const bodyParserJsonMiddleware = function () {
return function (req, res, next) {
if (isEkStepProxyRequest(req)) {
return next()
} else {
return bodyParser.json({
limit: reqDataLimitOfContentUpload
})(req, res, next)
}
}
}
app.use(bodyParserJsonMiddleware())
app.use(methodOverride())
// Cache-Control, X-Requested-With these two headers required for upload file through fine-upload library
app.use(function (req, res, next) {
res.header('Access-Control-Allow-Origin', '*')
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,PATCH,DELETE,OPTIONS')
res.header('Access-Control-Allow-Headers', 'Content-Type, Authorization,' +
'cid, user-id, x-auth, Cache-Control, X-Requested-With, *')
if (req.method === 'OPTIONS') {
res.sendStatus(200)
} else {
next()
};
})
app.use(function (req, res, next) {
res.setHeader('Connection', 'close')
next()
})
require('./routes/healthCheckRoutes')(app)
require('./routes/courseRoutes')(app)
require('./routes/contentRoutes')(app)
require('./routes/conceptRoutes')(app)
require('./routes/searchRoutes')(app)
require('./routes/dialCodeRoutes')(app)
require('./routes/channelRoutes')(app)
require('./routes/frameworkRoutes')(app)
require('./routes/frameworkTermRoutes')(app)
require('./routes/frameworkCategoryInstanceRoutes')(app)
require('./routes/dataExhaustRoutes')(app)
require('./routes/formRoutes')(app)
require('./routes/externalUrlMetaRoute')(app)
require('./routes/pluginsRoutes')(app)
// this middleware route add after all the routes
require('./middlewares/proxy.middleware')(app)
// Create server
if (defaultChannel) {
contentProvider.getChannel(defaultChannel, (err, res) => {
if (res && res.result.response.count > 0 && res.result.response.content[0].hashTagId) {
configUtil.setConfig('DEFAULT_CHANNEL', res.result.response.content[0].hashTagId)
console.log('DEFAULT_CHANNEL', configUtil.getConfig('DEFAULT_CHANNEL'))
this.server = http.createServer(app).listen(port, function () {
console.log('server running at PORT [%d]', port)
if (!process.env.sunbird_environment || !process.env.sunbird_instance) {
console.error('please set environment variable sunbird_environment, sunbird_instance' +
'start service Eg: sunbird_environment = dev, sunbird_instance = sunbird')
process.exit(1)
141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
}
contentMetaProvider.getMetaFilterConfig().then((configStr) => {
configUtil.setConfig('META_FILTER_REQUEST_JSON', configStr)
}).catch((err) => {
console.log('error in getting meta filters', err)
process.exit(1)
})
})
} else {
console.log('error in fetching default channel', defaultChannel, err, res)
process.exit(1)
}
})
} else {
console.error('please set environment variable sunbird_default_channel ' +
'start service Eg: sunbird_default_channel = sunbird')
process.exit(1)
}
// Close server, when we start for test cases
exports.close = function () {
this.server.close()
}
// schedular to run the failed and queued dialcode items in batch
require('./service/dialCode/scheduledBatchProcessor')
global.imageBatchProcess = cp.fork(path.join('service', 'dialCode', 'batchImageProcessor.js'))
global.imageBatchProcess.on('exit', function () {
global.imageBatchProcess = cp.fork(path.join('service', 'dialCode', 'batchImageProcessor.js'))
})
// Telemetry initialization
const telemetryBatchSize = parseInt(process.env.sunbird_telemetry_sync_batch_size, 10) || 20
telemtryEventConfig.pdata.id = producerId
const telemetryConfig = {
pdata: telemtryEventConfig.pdata,
method: 'POST',
batchsize: telemetryBatchSize,
endpoint: configUtil.getConfig('TELEMETRY'),
host: configUtil.getConfig('TELEMETRY_BASE_URL'),
authtoken: configUtil.getConfig('CONTENT_REPO_AUTHORIZATION_TOKEN')
}
telemetry.init(telemetryConfig)
// function to update the config
function updateConfig (configString) {
configUtil.setConfig('CHANNEL_FILTER_QUERY_STRING', configString)
}
// function to generate the search string
// function getFilterConfig () {
// LOG.info(utilsService.getLoggerData({}, 'INFO',
// filename, 'getFilterConfig', 'environment info', process.env))
// var allowedChannels = whiteListedChannelList ? whiteListedChannelList.split(',') : []
// var blackListedChannels = blackListedChannelList ? blackListedChannelList.split(',') : []
// var configString = {}
// if ((allowedChannels && allowedChannels.length > 0) && (blackListedChannels && blackListedChannels.length > 0)) {
// configString = _.difference(allowedChannels, blackListedChannels)
// } else if (allowedChannels && allowedChannels.length > 0) {
// configString = allowedChannels
// } else if (blackListedChannels && blackListedChannels.length > 0) {
// configString = { 'ne': blackListedChannels }
// }
// LOG.info(utilsService.getLoggerData({}, '',
// 'app.js', 'getFilterConfig', 'config string', configString))
// return configString
// }
211