Unverified Commit 5e6e69bd authored by Anil Gupta's avatar Anil Gupta Committed by GitHub
Browse files

Issue #SB-29494 merge: Merge pull request #820 from sunbird-cb/4.9.0-indexFileValidation

SB-29494 - Configuration param to check index file in Zip content
Showing with 8 additions and 2 deletions
+8 -2
......@@ -738,4 +738,7 @@ collection {
}
#Request timeout
actor.timeoutMillisec = 30000
\ No newline at end of file
actor.timeoutMillisec = 30000
#Index file validation
isIndexHtmlValidationRequired=true
......@@ -9,6 +9,7 @@ import org.sunbird.graph.OntologyEngineContext
import org.sunbird.graph.dac.model.Node
import org.sunbird.mimetype.mgr.{BaseMimeTypeManager, MimeTypeManager}
import org.sunbird.telemetry.logger.TelemetryManager
import org.sunbird.common.Platform
import scala.concurrent.{ExecutionContext, Future}
......@@ -16,7 +17,9 @@ class HtmlMimeTypeMgrImpl(implicit ss: StorageService) extends BaseMimeTypeManag
override def upload(objectId: String, node: Node, uploadFile: File, filePath: Option[String], params: UploadParams)(implicit ec: ExecutionContext): Future[Map[String, AnyRef]] = {
validateUploadRequest(objectId, node, uploadFile)
if (isValidPackageStructure(uploadFile, List[String]("index.html"))) {
val isIndexHtmlValidationRequired: Boolean = if (Platform.config.hasPath("isIndexHtmlValidationRequired")) Platform.config.getBoolean("isIndexHtmlValidationRequired") else true
val isValidateSuccess: Boolean = if (isIndexHtmlValidationRequired) isValidPackageStructure(uploadFile, List[String]("index.html")) else true
if (isValidateSuccess) {
val urls = uploadArtifactToCloud(uploadFile, objectId, filePath)
node.getMetadata.put("s3Key", urls(IDX_S3_KEY))
node.getMetadata.put("artifactUrl", urls(IDX_S3_URL))
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment