Compare commits

...

3 Commits
v2.8 ... main

Author SHA1 Message Date
Jonathan Bernard
a02abd3394 Fix relative path issue in the build script. 2017-02-24 15:07:48 -06:00
Jonathan Bernard
ea817b2520 Update media S3 URL to include the year in the path. 2017-02-24 15:03:46 -06:00
Jonathan Bernard
d954557000 Re-organized into two submodules: service and uploader.
Moved all the existing service code into the `service` submodule.

Stubbed out project and GUI frame for the uploader. Idea is to have a GUI that
infers all the correct meta-data from media tag values and creates service,
songs, and performance records appropriately based on the tagged mp3/ogg files
of the performances.
2017-02-24 15:03:46 -06:00
4 changed files with 6 additions and 3 deletions

View File

@ -11,4 +11,4 @@ global:
repository: null
sc: git
deploy:
artifact: build/ROOT.war
artifact: service/build/ROOT.war

View File

@ -12,6 +12,8 @@ buildscript {
}
}
import static com.jdbernard.gradle.ExecUtil.*
dependencies {
compile localGroovy()
compile 'ch.qos.logback:logback-classic:1.1.8'

View File

@ -11,7 +11,8 @@ public class NLSongsContext {
public static String mediaBaseUrl
public static String makeUrl(Service service, Song song) {
return mediaBaseUrl + '/' + service.localDate.toString('yyyy-MM-dd') + '_' +
return mediaBaseUrl + '/' + service.localDate.toString('yyyy') + "/" +
service.localDate.toString('yyyy-MM-dd') + '_' +
service.serviceType.name().toLowerCase() + '_' +
song.name.replaceAll(/[\s'"\\\/\?!]/, '') + '.mp3' }
}

View File

@ -18,7 +18,7 @@ task writeVersionFile(
group: 'build',
description: 'Write the version to VERSION.txt') { doLast {
(new File('build/classes/main/VERSION.txt')).text = version
(new File("${buildDir}/classes/main/VERSION.txt")).text = version
} }
build.dependsOn writeVersionFile