service.@date -> service.getLocalDate because direct field accessor isn't working properly anymore.
This commit is contained in:
parent
a132f6540c
commit
4d89e45c7b
@ -16,7 +16,7 @@ public class Service implements Serializable {
|
|||||||
Service that = (Service) thatObj
|
Service that = (Service) thatObj
|
||||||
|
|
||||||
return (this.id == that.id &&
|
return (this.id == that.id &&
|
||||||
this.date == (that.rawDate) &&
|
this.date == (that.locaDate) &&
|
||||||
this.serviceType == that.serviceType) }
|
this.serviceType == that.serviceType) }
|
||||||
|
|
||||||
public void setDate(Date date) { this.date = LocalDate.fromDateFields(date) }
|
public void setDate(Date date) { this.date = LocalDate.fromDateFields(date) }
|
||||||
@ -29,5 +29,5 @@ public class Service implements Serializable {
|
|||||||
|
|
||||||
// Needed only because the @directFieldAccesor syntax stopped working in
|
// Needed only because the @directFieldAccesor syntax stopped working in
|
||||||
// Groovy 2.4.7
|
// Groovy 2.4.7
|
||||||
private LocalDate getRawDate() { return this.date }
|
private LocalDate getLocalDate() { return this.date }
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ public class NLSongsContext {
|
|||||||
public static String mediaBaseUrl
|
public static String mediaBaseUrl
|
||||||
|
|
||||||
public static String makeUrl(Service service, Song song) {
|
public static String makeUrl(Service service, Song song) {
|
||||||
return mediaBaseUrl + '/' + service.@date.toString('yyyy-MM-dd') + '_' +
|
return mediaBaseUrl + '/' + service.localDate.toString('yyyy-MM-dd') + '_' +
|
||||||
service.serviceType.name().toLowerCase() + '_' +
|
service.serviceType.name().toLowerCase() + '_' +
|
||||||
song.name.replaceAll(/[\s'"\\\/\?!]/, '') + '.mp3' }
|
song.name.replaceAll(/[\s'"\\\/\?!]/, '') + '.mp3' }
|
||||||
}
|
}
|
||||||
|
@ -21,23 +21,28 @@ public final class NLSongsContextListener implements ServletContextListener {
|
|||||||
|
|
||||||
Properties props = new Properties()
|
Properties props = new Properties()
|
||||||
|
|
||||||
// Load database details from the context configuration.
|
// Load configuration details from the context configuration.
|
||||||
String contextConfigFile = context.getInitParameter('context.config.file')
|
NLSongsContextListener.getResourceAsStream(
|
||||||
if (contextConfigFile) {
|
context.getInitParameter('context.config.file'))
|
||||||
NLSongsContextListener.getResourceAsStream(contextConfigFile)
|
.withStream { is -> props.load(is) }
|
||||||
.withStream { is -> props.load(is) } }
|
|
||||||
|
// Load database configuration
|
||||||
|
Properties dataSourceProps = new Properties()
|
||||||
|
String dbConfigFile = context.getInitParameter('datasource.config.file')
|
||||||
|
|
||||||
|
if (dbConfigFile) {
|
||||||
|
NLSongsContextListener.getResourceAsStream(dbConfigFile)
|
||||||
|
.withStream { is -> dataSourceProps.load(is) } }
|
||||||
|
|
||||||
// Load database configuration from environment variables (may
|
// Load database configuration from environment variables (may
|
||||||
// override settings in file).
|
// override settings in file).
|
||||||
def env = System.getenv()
|
System.properties.keySet().findAll { it.startsWith('DB_') }.each { key ->
|
||||||
env.keySet().findAll { it.startsWith('DB_') }.each { key ->
|
dataSourceProps["dataSource.${key.substring(3)}"] = System.properties[key] }
|
||||||
props[key.substring(3)] = env[key] }
|
|
||||||
|
|
||||||
log.debug("Database configuration: {}", props)
|
log.debug("Database configuration: {}", dataSourceProps)
|
||||||
|
|
||||||
// Create the pooled data source
|
// Create the pooled data source
|
||||||
HikariConfig hcfg = new HikariConfig(
|
HikariConfig hcfg = new HikariConfig(dataSourceProps)
|
||||||
context.getInitParameter('datasource.config.file'))
|
|
||||||
|
|
||||||
HikariDataSource hds = new HikariDataSource(hcfg)
|
HikariDataSource hds = new HikariDataSource(hcfg)
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ if (!service) { response.sendError(response.SC_NOT_FOUND); return }
|
|||||||
<meta name="referrer" content="origin">
|
<meta name="referrer" content="origin">
|
||||||
<link rel="shortcut icon" href="../images/favicon.ico">
|
<link rel="shortcut icon" href="../images/favicon.ico">
|
||||||
|
|
||||||
<title><%= service.@date.toString("yyyy-MM-dd")
|
<title><%= service.localDate.toString("yyyy-MM-dd")
|
||||||
%> (<%= service.serviceType.displayName %>) - New Life Songs Database</title>
|
%> (<%= service.serviceType.displayName %>) - New Life Songs Database</title>
|
||||||
<script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
|
<script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
|
||||||
<!--<script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js"></script>-->
|
<!--<script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js"></script>-->
|
||||||
@ -38,7 +38,7 @@ if (!service) { response.sendError(response.SC_NOT_FOUND); return }
|
|||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<h1><a href="../">New Life Songs</a></h1>
|
<h1><a href="../">New Life Songs</a></h1>
|
||||||
<h2 class=service-desc><%= service.@date.toString("yyyy-MM-dd") %>: (<%=
|
<h2 class=service-desc><%= service.localDate.toString("yyyy-MM-dd") %>: (<%=
|
||||||
service.description ?: service.serviceType.displayName %>)</h2>
|
service.description ?: service.serviceType.displayName %>)</h2>
|
||||||
|
|
||||||
<nav><ul>
|
<nav><ul>
|
||||||
|
@ -44,7 +44,7 @@ songsDB = NLSongsContext.songsDB
|
|||||||
<tbody>
|
<tbody>
|
||||||
<% songsDB.findAllServices().sort { it.date }.reverse().each { service -> %>
|
<% songsDB.findAllServices().sort { it.date }.reverse().each { service -> %>
|
||||||
<tr><td class=date><a href="../service/<%= service.id %>"><%=
|
<tr><td class=date><a href="../service/<%= service.id %>"><%=
|
||||||
service.@date.toString("yyyy-MM-dd") %></a></td>
|
service.localDate.toString("yyyy-MM-dd") %></a></td>
|
||||||
<td class=service-type><%= service.description ?:
|
<td class=service-type><%= service.description ?:
|
||||||
service.serviceType.displayName %></td></tr><% } %>
|
service.serviceType.displayName %></td></tr><% } %>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
@ -67,7 +67,7 @@ if (!song) { response.sendError(response.SC_NOT_FOUND); return }
|
|||||||
sort { it.svc.date }.each { row -> %>
|
sort { it.svc.date }.each { row -> %>
|
||||||
<tr><td class=actions><a href='<%= NLSongsContext.makeUrl(row.svc, song) %>'><i class="fa fa-download"></i></a></td>
|
<tr><td class=actions><a href='<%= NLSongsContext.makeUrl(row.svc, song) %>'><i class="fa fa-download"></i></a></td>
|
||||||
<td class=performance-date><a href='../service/<%= row.svc.id %>'><%=
|
<td class=performance-date><a href='../service/<%= row.svc.id %>'><%=
|
||||||
row.svc.@date.toString("yyyy-MM-dd") %></a></td>
|
row.svc.localDate.toString("yyyy-MM-dd") %></a></td>
|
||||||
<td class=service-type><%= row.svc.serviceType.displayName %></td>
|
<td class=service-type><%= row.svc.serviceType.displayName %></td>
|
||||||
<td class=not-small><%= row.perf.leader ?: "" %></td>
|
<td class=not-small><%= row.perf.leader ?: "" %></td>
|
||||||
<td class=not-small><%= row.perf.pianist ?: "" %></td>
|
<td class=not-small><%= row.perf.pianist ?: "" %></td>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user