Last active
June 22, 2017 20:51
-
-
Save blindbox/c7476e46ef26fc309d3a6f1e4b6291d8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package modules | |
import java.io.{FileInputStream, InputStream} | |
import javax.inject.{Inject, Provider, Singleton} | |
import play.api.db.DBApi | |
import play.api.{Configuration, Environment} | |
//import play.Environment | |
import play.api.db.evolutions._ | |
import play.api.inject.{Injector, Module} | |
import play.api.libs.Collections | |
import play.core.WebCommands | |
import org.apache.commons.io.FileUtils | |
/** | |
* Default module for evolutions API. | |
*/ | |
class EvolutionsModule extends Module { | |
def bindings(environment: Environment, configuration: Configuration) = { | |
Seq( | |
bind[EvolutionsConfig].toProvider[DefaultEvolutionsConfigParser], | |
bind[EvolutionsReader].to[CustomEvolutionsReader], | |
bind[EvolutionsApi].to[DefaultEvolutionsApi], | |
bind[ApplicationEvolutions].toProvider[ApplicationEvolutionsProvider].eagerly | |
) | |
} | |
} | |
/** | |
* Based on Evolution's sources | |
* @param environment | |
*/ | |
@Singleton | |
class CustomEvolutionsReader @Inject()(environment: Environment) extends EvolutionsReader { | |
/** | |
* Read the application evolutions. | |
* | |
* @param db the database name | |
*/ | |
def evolutions(db: String): Seq[Evolution] = { | |
val upsMarker = """^#.*!Ups.*$""".r | |
val downsMarker = """^#.*!Downs.*$""".r | |
val UPS = "UPS" | |
val DOWNS = "DOWNS" | |
val UNKNOWN = "UNKNOWN" | |
val mapUpsAndDowns: PartialFunction[String, String] = { | |
case upsMarker() => UPS | |
case downsMarker() => DOWNS | |
case _ => UNKNOWN | |
} | |
val isMarker: PartialFunction[String, Boolean] = { | |
case upsMarker() => true | |
case downsMarker() => true | |
case _ => false | |
} | |
val folder = environment.getFile(Evolutions.directoryName(db)) | |
val sqlFiles = folder.listFiles() | |
.filter(file => file.getName.indexOf(".sql") > -1) | |
.sortBy(file => { | |
val fileName = file.getName | |
val nameAfterSqlNumber = fileName.split("\\.")(0).split("_").drop(1).mkString("") + ".sql" | |
val sqlNumber = fileName.split("\\.")(0).split("_")(0).toInt | |
val newPrefix = "%07d".format(sqlNumber) | |
newPrefix + nameAfterSqlNumber | |
}) | |
.toSeq | |
sqlFiles.zip(1 to sqlFiles.size) | |
.map { | |
case (file, revision) => { | |
val script = FileUtils.readFileToString(file) | |
val parsed = Collections.unfoldLeft(("", script.split('\n').toList.map(_.trim))) { | |
case (_, Nil) => None | |
case (context, lines) => { | |
val (some, next) = lines.span(l => !isMarker(l)) | |
Some((next.headOption.map(c => (mapUpsAndDowns(c), next.tail)).getOrElse("" -> Nil), | |
context -> some.mkString("\n"))) | |
} | |
}.reverse.drop(1).groupBy(i => i._1).mapValues { | |
_.map(_._2).mkString("\n").trim | |
} | |
Evolution( | |
revision, | |
parsed.getOrElse(UPS, ""), | |
parsed.getOrElse(DOWNS, "") | |
) | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment