src/main/kotlin/de/uapcore/lightpit/servlet/ProjectServlet.kt

Thu, 13 May 2021 19:31:09 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 13 May 2021 19:31:09 +0200
changeset 198
94f174d591ab
parent 193
1e4044d29b1c
child 200
a5ddfaf6b469
permissions
-rw-r--r--

fixes wrong handling of feeds - only one channel per feed is allowed

universe@184 1 /*
universe@184 2 * Copyright 2021 Mike Becker. All rights reserved.
universe@184 3 *
universe@184 4 * Redistribution and use in source and binary forms, with or without
universe@184 5 * modification, are permitted provided that the following conditions are met:
universe@184 6 *
universe@184 7 * 1. Redistributions of source code must retain the above copyright
universe@184 8 * notice, this list of conditions and the following disclaimer.
universe@184 9 *
universe@184 10 * 2. Redistributions in binary form must reproduce the above copyright
universe@184 11 * notice, this list of conditions and the following disclaimer in the
universe@184 12 * documentation and/or other materials provided with the distribution.
universe@184 13 *
universe@184 14 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@184 15 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@184 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
universe@184 17 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
universe@184 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
universe@184 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
universe@184 20 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
universe@184 21 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
universe@184 22 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
universe@184 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
universe@184 24 */
universe@184 25
universe@184 26 package de.uapcore.lightpit.servlet
universe@184 27
universe@184 28 import de.uapcore.lightpit.AbstractServlet
universe@184 29 import de.uapcore.lightpit.HttpRequest
universe@184 30 import de.uapcore.lightpit.dao.DataAccessObject
universe@184 31 import de.uapcore.lightpit.entities.*
universe@184 32 import de.uapcore.lightpit.types.IssueCategory
universe@184 33 import de.uapcore.lightpit.types.IssueStatus
universe@184 34 import de.uapcore.lightpit.types.VersionStatus
universe@184 35 import de.uapcore.lightpit.types.WebColor
universe@184 36 import de.uapcore.lightpit.util.AllFilter
universe@184 37 import de.uapcore.lightpit.util.IssueFilter
universe@193 38 import de.uapcore.lightpit.util.IssueSorter.Companion.DEFAULT_ISSUE_SORTER
universe@184 39 import de.uapcore.lightpit.util.SpecificFilter
universe@184 40 import de.uapcore.lightpit.viewmodel.*
universe@184 41 import java.sql.Date
universe@184 42 import javax.servlet.annotation.WebServlet
universe@184 43
universe@184 44 @WebServlet(urlPatterns = ["/projects/*"])
universe@184 45 class ProjectServlet : AbstractServlet() {
universe@184 46
universe@184 47 init {
universe@184 48 get("/", this::projects)
universe@184 49 get("/%project", this::project)
universe@184 50 get("/%project/issues/%version/%component/", this::project)
universe@184 51 get("/%project/edit", this::projectForm)
universe@184 52 get("/-/create", this::projectForm)
universe@184 53 post("/-/commit", this::projectCommit)
universe@184 54
universe@184 55 get("/%project/versions/", this::versions)
universe@184 56 get("/%project/versions/%version/edit", this::versionForm)
universe@184 57 get("/%project/versions/-/create", this::versionForm)
universe@184 58 post("/%project/versions/-/commit", this::versionCommit)
universe@184 59
universe@184 60 get("/%project/components/", this::components)
universe@184 61 get("/%project/components/%component/edit", this::componentForm)
universe@184 62 get("/%project/components/-/create", this::componentForm)
universe@184 63 post("/%project/components/-/commit", this::componentCommit)
universe@184 64
universe@184 65 get("/%project/issues/%version/%component/%issue", this::issue)
universe@184 66 get("/%project/issues/%version/%component/%issue/edit", this::issueForm)
universe@186 67 post("/%project/issues/%version/%component/%issue/comment", this::issueComment)
universe@184 68 get("/%project/issues/%version/%component/-/create", this::issueForm)
universe@186 69 post("/%project/issues/%version/%component/-/commit", this::issueCommit)
universe@184 70 }
universe@184 71
universe@193 72 private fun projects(http: HttpRequest, dao: DataAccessObject) {
universe@184 73 val projects = dao.listProjects()
universe@184 74 val projectInfos = projects.map {
universe@184 75 ProjectInfo(
universe@184 76 project = it,
universe@184 77 versions = dao.listVersions(it),
universe@184 78 components = emptyList(), // not required in this view
universe@184 79 issueSummary = dao.collectIssueSummary(it)
universe@184 80 )
universe@184 81 }
universe@184 82
universe@184 83 with(http) {
universe@184 84 view = ProjectsView(projectInfos)
universe@184 85 navigationMenu = projectNavMenu(projects)
universe@184 86 styleSheets = listOf("projects")
universe@184 87 render("projects")
universe@184 88 }
universe@184 89 }
universe@184 90
universe@184 91 private fun activeProjectNavMenu(
universe@184 92 projects: List<Project>,
universe@184 93 projectInfo: ProjectInfo,
universe@184 94 selectedVersion: Version? = null,
universe@184 95 selectedComponent: Component? = null
universe@184 96 ) =
universe@184 97 projectNavMenu(
universe@184 98 projects,
universe@184 99 projectInfo.versions,
universe@184 100 projectInfo.components,
universe@184 101 projectInfo.project,
universe@184 102 selectedVersion,
universe@184 103 selectedComponent
universe@184 104 )
universe@184 105
universe@184 106 sealed class LookupResult<T> {
universe@184 107 class NotFound<T> : LookupResult<T>()
universe@184 108 data class Found<T>(val elem: T?) : LookupResult<T>()
universe@184 109 }
universe@184 110
universe@184 111 private fun <T : HasNode> HttpRequest.lookupPathParam(paramName: String, list: List<T>): LookupResult<T> {
universe@184 112 val node = pathParams[paramName]
universe@184 113 return if (node == null || node == "-") {
universe@184 114 LookupResult.Found(null)
universe@184 115 } else {
universe@184 116 val result = list.find { it.node == node }
universe@184 117 if (result == null) {
universe@184 118 LookupResult.NotFound()
universe@184 119 } else {
universe@184 120 LookupResult.Found(result)
universe@184 121 }
universe@184 122 }
universe@184 123 }
universe@184 124
universe@184 125 private fun obtainProjectInfo(http: HttpRequest, dao: DataAccessObject): ProjectInfo? {
universe@184 126 val project = dao.findProjectByNode(http.pathParams["project"] ?: "") ?: return null
universe@184 127
universe@184 128 val versions: List<Version> = dao.listVersions(project)
universe@184 129 val components: List<Component> = dao.listComponents(project)
universe@184 130
universe@184 131 return ProjectInfo(
universe@184 132 project,
universe@184 133 versions,
universe@184 134 components,
universe@184 135 dao.collectIssueSummary(project)
universe@184 136 )
universe@184 137 }
universe@184 138
universe@184 139 private fun sanitizeNode(name: String): String {
universe@184 140 val san = name.replace(Regex("[/\\\\]"), "-")
universe@184 141 return if (san.startsWith(".")) {
universe@184 142 "v$san"
universe@184 143 } else {
universe@184 144 san
universe@184 145 }
universe@184 146 }
universe@184 147
universe@198 148 private fun feedPath(project: Project) = "feed/${project.node}/issues.rss"
universe@198 149
universe@184 150 data class PathInfos(
universe@184 151 val projectInfo: ProjectInfo,
universe@184 152 val version: Version?,
universe@184 153 val component: Component?
universe@184 154 ) {
universe@198 155 val project = projectInfo.project
universe@198 156 val issuesHref by lazyOf("projects/${project.node}/issues/${version?.node ?: "-"}/${component?.node ?: "-"}/")
universe@184 157 }
universe@184 158
universe@184 159 private fun withPathInfo(http: HttpRequest, dao: DataAccessObject): PathInfos? {
universe@184 160 val projectInfo = obtainProjectInfo(http, dao)
universe@184 161 if (projectInfo == null) {
universe@184 162 http.response.sendError(404)
universe@184 163 return null
universe@184 164 }
universe@184 165
universe@184 166 val version = when (val result = http.lookupPathParam("version", projectInfo.versions)) {
universe@184 167 is LookupResult.NotFound -> {
universe@184 168 http.response.sendError(404)
universe@184 169 return null
universe@184 170 }
universe@184 171 is LookupResult.Found -> {
universe@184 172 result.elem
universe@184 173 }
universe@184 174 }
universe@184 175 val component = when (val result = http.lookupPathParam("component", projectInfo.components)) {
universe@184 176 is LookupResult.NotFound -> {
universe@184 177 http.response.sendError(404)
universe@184 178 return null
universe@184 179 }
universe@184 180 is LookupResult.Found -> {
universe@184 181 result.elem
universe@184 182 }
universe@184 183 }
universe@184 184
universe@184 185 return PathInfos(projectInfo, version, component)
universe@184 186 }
universe@184 187
universe@193 188 private fun project(http: HttpRequest, dao: DataAccessObject) {
universe@184 189 withPathInfo(http, dao)?.run {
universe@193 190
universe@184 191 val issues = dao.listIssues(IssueFilter(
universe@198 192 project = SpecificFilter(project),
universe@184 193 version = version?.let { SpecificFilter(it) } ?: AllFilter(),
universe@184 194 component = component?.let { SpecificFilter(it) } ?: AllFilter()
universe@193 195 )).sortedWith(DEFAULT_ISSUE_SORTER)
universe@184 196
universe@184 197 with(http) {
universe@184 198 view = ProjectDetails(projectInfo, issues, version, component)
universe@198 199 feedPath = feedPath(project)
universe@184 200 navigationMenu = activeProjectNavMenu(
universe@184 201 dao.listProjects(),
universe@184 202 projectInfo,
universe@184 203 version,
universe@184 204 component
universe@184 205 )
universe@184 206 styleSheets = listOf("projects")
universe@184 207 render("project-details")
universe@184 208 }
universe@184 209 }
universe@184 210 }
universe@184 211
universe@193 212 private fun projectForm(http: HttpRequest, dao: DataAccessObject) {
universe@184 213 val projectInfo = obtainProjectInfo(http, dao)
universe@184 214 if (projectInfo == null) {
universe@184 215 http.response.sendError(404)
universe@184 216 return
universe@184 217 }
universe@184 218
universe@184 219 with(http) {
universe@184 220 view = ProjectEditView(projectInfo.project, dao.listUsers())
universe@184 221 navigationMenu = activeProjectNavMenu(
universe@184 222 dao.listProjects(),
universe@184 223 projectInfo
universe@184 224 )
universe@184 225 styleSheets = listOf("projects")
universe@184 226 render("project-form")
universe@184 227 }
universe@184 228 }
universe@184 229
universe@193 230 private fun projectCommit(http: HttpRequest, dao: DataAccessObject) {
universe@184 231 // TODO: replace defaults with throwing validator exceptions
universe@184 232 val project = Project(http.param("id")?.toIntOrNull() ?: -1).apply {
universe@184 233 name = http.param("name") ?: ""
universe@184 234 node = http.param("node") ?: ""
universe@184 235 description = http.param("description") ?: ""
universe@184 236 ordinal = http.param("ordinal")?.toIntOrNull() ?: 0
universe@184 237 repoUrl = http.param("repoUrl") ?: ""
universe@184 238 owner = (http.param("owner")?.toIntOrNull() ?: -1).let {
universe@184 239 if (it < 0) null else dao.findUser(it)
universe@184 240 }
universe@184 241 // intentional defaults
universe@184 242 if (node.isBlank()) node = name
universe@184 243 // sanitizing
universe@184 244 node = sanitizeNode(node)
universe@184 245 }
universe@184 246
universe@184 247 if (project.id < 0) {
universe@184 248 dao.insertProject(project)
universe@184 249 } else {
universe@184 250 dao.updateProject(project)
universe@184 251 }
universe@184 252
universe@184 253 http.renderCommit("projects/${project.node}")
universe@184 254 }
universe@184 255
universe@193 256 private fun versions(http: HttpRequest, dao: DataAccessObject) {
universe@184 257 val projectInfo = obtainProjectInfo(http, dao)
universe@184 258 if (projectInfo == null) {
universe@184 259 http.response.sendError(404)
universe@184 260 return
universe@184 261 }
universe@184 262
universe@184 263 with(http) {
universe@184 264 view = VersionsView(
universe@184 265 projectInfo,
universe@184 266 dao.listVersionSummaries(projectInfo.project)
universe@184 267 )
universe@198 268 feedPath = feedPath(projectInfo.project)
universe@184 269 navigationMenu = activeProjectNavMenu(
universe@184 270 dao.listProjects(),
universe@184 271 projectInfo
universe@184 272 )
universe@184 273 styleSheets = listOf("projects")
universe@184 274 render("versions")
universe@184 275 }
universe@184 276 }
universe@184 277
universe@193 278 private fun versionForm(http: HttpRequest, dao: DataAccessObject) {
universe@184 279 val projectInfo = obtainProjectInfo(http, dao)
universe@184 280 if (projectInfo == null) {
universe@184 281 http.response.sendError(404)
universe@184 282 return
universe@184 283 }
universe@184 284
universe@184 285 val version: Version
universe@184 286 when (val result = http.lookupPathParam("version", projectInfo.versions)) {
universe@184 287 is LookupResult.NotFound -> {
universe@184 288 http.response.sendError(404)
universe@184 289 return
universe@184 290 }
universe@184 291 is LookupResult.Found -> {
universe@184 292 version = result.elem ?: Version(-1, projectInfo.project.id)
universe@184 293 }
universe@184 294 }
universe@184 295
universe@184 296 with(http) {
universe@184 297 view = VersionEditView(projectInfo, version)
universe@198 298 feedPath = feedPath(projectInfo.project)
universe@184 299 navigationMenu = activeProjectNavMenu(
universe@184 300 dao.listProjects(),
universe@184 301 projectInfo,
universe@184 302 selectedVersion = version
universe@184 303 )
universe@184 304 styleSheets = listOf("projects")
universe@184 305 render("version-form")
universe@184 306 }
universe@184 307 }
universe@184 308
universe@193 309 private fun versionCommit(http: HttpRequest, dao: DataAccessObject) {
universe@184 310 val id = http.param("id")?.toIntOrNull()
universe@184 311 val projectid = http.param("projectid")?.toIntOrNull() ?: -1
universe@184 312 val project = dao.findProject(projectid)
universe@184 313 if (id == null || project == null) {
universe@184 314 http.response.sendError(400)
universe@184 315 return
universe@184 316 }
universe@184 317
universe@184 318 // TODO: replace defaults with throwing validator exceptions
universe@184 319 val version = Version(id, projectid).apply {
universe@184 320 name = http.param("name") ?: ""
universe@184 321 node = http.param("node") ?: ""
universe@184 322 ordinal = http.param("ordinal")?.toIntOrNull() ?: 0
universe@184 323 status = http.param("status")?.let(VersionStatus::valueOf) ?: VersionStatus.Future
universe@184 324 // intentional defaults
universe@184 325 if (node.isBlank()) node = name
universe@184 326 // sanitizing
universe@184 327 node = sanitizeNode(node)
universe@184 328 }
universe@184 329
universe@184 330 if (id < 0) {
universe@184 331 dao.insertVersion(version)
universe@184 332 } else {
universe@184 333 dao.updateVersion(version)
universe@184 334 }
universe@184 335
universe@184 336 http.renderCommit("projects/${project.node}/versions/")
universe@184 337 }
universe@184 338
universe@193 339 private fun components(http: HttpRequest, dao: DataAccessObject) {
universe@184 340 val projectInfo = obtainProjectInfo(http, dao)
universe@184 341 if (projectInfo == null) {
universe@184 342 http.response.sendError(404)
universe@184 343 return
universe@184 344 }
universe@184 345
universe@184 346 with(http) {
universe@184 347 view = ComponentsView(
universe@184 348 projectInfo,
universe@184 349 dao.listComponentSummaries(projectInfo.project)
universe@184 350 )
universe@198 351 feedPath = feedPath(projectInfo.project)
universe@184 352 navigationMenu = activeProjectNavMenu(
universe@184 353 dao.listProjects(),
universe@184 354 projectInfo
universe@184 355 )
universe@184 356 styleSheets = listOf("projects")
universe@184 357 render("components")
universe@184 358 }
universe@184 359 }
universe@184 360
universe@193 361 private fun componentForm(http: HttpRequest, dao: DataAccessObject) {
universe@184 362 val projectInfo = obtainProjectInfo(http, dao)
universe@184 363 if (projectInfo == null) {
universe@184 364 http.response.sendError(404)
universe@184 365 return
universe@184 366 }
universe@184 367
universe@184 368 val component: Component
universe@184 369 when (val result = http.lookupPathParam("component", projectInfo.components)) {
universe@184 370 is LookupResult.NotFound -> {
universe@184 371 http.response.sendError(404)
universe@184 372 return
universe@184 373 }
universe@184 374 is LookupResult.Found -> {
universe@184 375 component = result.elem ?: Component(-1, projectInfo.project.id)
universe@184 376 }
universe@184 377 }
universe@184 378
universe@184 379 with(http) {
universe@184 380 view = ComponentEditView(projectInfo, component, dao.listUsers())
universe@198 381 feedPath = feedPath(projectInfo.project)
universe@184 382 navigationMenu = activeProjectNavMenu(
universe@184 383 dao.listProjects(),
universe@184 384 projectInfo,
universe@184 385 selectedComponent = component
universe@184 386 )
universe@184 387 styleSheets = listOf("projects")
universe@184 388 render("component-form")
universe@184 389 }
universe@184 390 }
universe@184 391
universe@193 392 private fun componentCommit(http: HttpRequest, dao: DataAccessObject) {
universe@184 393 val id = http.param("id")?.toIntOrNull()
universe@184 394 val projectid = http.param("projectid")?.toIntOrNull() ?: -1
universe@184 395 val project = dao.findProject(projectid)
universe@184 396 if (id == null || project == null) {
universe@184 397 http.response.sendError(400)
universe@184 398 return
universe@184 399 }
universe@184 400
universe@184 401 // TODO: replace defaults with throwing validator exceptions
universe@184 402 val component = Component(id, projectid).apply {
universe@184 403 name = http.param("name") ?: ""
universe@184 404 node = http.param("node") ?: ""
universe@184 405 ordinal = http.param("ordinal")?.toIntOrNull() ?: 0
universe@184 406 color = WebColor(http.param("color") ?: "#000000")
universe@184 407 description = http.param("description")
universe@184 408 lead = (http.param("lead")?.toIntOrNull() ?: -1).let {
universe@184 409 if (it < 0) null else dao.findUser(it)
universe@184 410 }
universe@184 411 // intentional defaults
universe@184 412 if (node.isBlank()) node = name
universe@184 413 // sanitizing
universe@184 414 node = sanitizeNode(node)
universe@184 415 }
universe@184 416
universe@184 417 if (id < 0) {
universe@184 418 dao.insertComponent(component)
universe@184 419 } else {
universe@184 420 dao.updateComponent(component)
universe@184 421 }
universe@184 422
universe@184 423 http.renderCommit("projects/${project.node}/components/")
universe@184 424 }
universe@184 425
universe@193 426 private fun issue(http: HttpRequest, dao: DataAccessObject) {
universe@184 427 withPathInfo(http, dao)?.run {
universe@184 428 val issue = dao.findIssue(http.pathParams["issue"]?.toIntOrNull() ?: -1)
universe@184 429 if (issue == null) {
universe@184 430 http.response.sendError(404)
universe@184 431 return
universe@184 432 }
universe@184 433
universe@184 434 val comments = dao.listComments(issue)
universe@184 435
universe@184 436 with(http) {
universe@198 437 view = IssueDetailView(issue, comments, project, version, component)
universe@198 438 // TODO: feed path for this particular issue
universe@198 439 feedPath = feedPath(projectInfo.project)
universe@184 440 navigationMenu = activeProjectNavMenu(
universe@184 441 dao.listProjects(),
universe@184 442 projectInfo,
universe@184 443 version,
universe@184 444 component
universe@184 445 )
universe@184 446 styleSheets = listOf("projects")
universe@184 447 render("issue-view")
universe@184 448 }
universe@184 449 }
universe@184 450 }
universe@184 451
universe@193 452 private fun issueForm(http: HttpRequest, dao: DataAccessObject) {
universe@184 453 withPathInfo(http, dao)?.run {
universe@184 454 val issue = dao.findIssue(http.pathParams["issue"]?.toIntOrNull() ?: -1) ?: Issue(
universe@184 455 -1,
universe@198 456 project,
universe@184 457 )
universe@184 458
universe@184 459 // pre-select component, if available in the path info
universe@184 460 issue.component = component
universe@184 461
universe@191 462 // pre-select version, if available in the path info
universe@191 463 if (version != null) {
universe@191 464 if (version.status.isReleased) {
universe@191 465 issue.affectedVersions = listOf(version)
universe@191 466 } else {
universe@191 467 issue.resolvedVersions = listOf(version)
universe@191 468 }
universe@191 469 }
universe@191 470
universe@184 471 with(http) {
universe@184 472 view = IssueEditView(
universe@184 473 issue,
universe@184 474 projectInfo.versions,
universe@184 475 projectInfo.components,
universe@184 476 dao.listUsers(),
universe@198 477 project,
universe@184 478 version,
universe@184 479 component
universe@184 480 )
universe@198 481 feedPath = feedPath(projectInfo.project)
universe@184 482 navigationMenu = activeProjectNavMenu(
universe@184 483 dao.listProjects(),
universe@184 484 projectInfo,
universe@184 485 version,
universe@184 486 component
universe@184 487 )
universe@184 488 styleSheets = listOf("projects")
universe@184 489 render("issue-form")
universe@184 490 }
universe@184 491 }
universe@184 492 }
universe@184 493
universe@193 494 private fun issueComment(http: HttpRequest, dao: DataAccessObject) {
universe@184 495 withPathInfo(http, dao)?.run {
universe@184 496 val issue = dao.findIssue(http.pathParams["issue"]?.toIntOrNull() ?: -1)
universe@184 497 if (issue == null) {
universe@184 498 http.response.sendError(404)
universe@184 499 return
universe@184 500 }
universe@184 501
universe@184 502 // TODO: throw validator exception instead of using a default
universe@184 503 val comment = IssueComment(-1, issue.id).apply {
universe@184 504 author = http.remoteUser?.let { dao.findUserByName(it) }
universe@184 505 comment = http.param("comment") ?: ""
universe@184 506 }
universe@184 507
universe@184 508 dao.insertComment(comment)
universe@184 509
universe@184 510 http.renderCommit("${issuesHref}${issue.id}")
universe@184 511 }
universe@184 512 }
universe@184 513
universe@193 514 private fun issueCommit(http: HttpRequest, dao: DataAccessObject) {
universe@184 515 withPathInfo(http, dao)?.run {
universe@184 516 // TODO: throw validator exception instead of using defaults
universe@184 517 val issue = Issue(
universe@184 518 http.param("id")?.toIntOrNull() ?: -1,
universe@198 519 project
universe@184 520 ).apply {
universe@184 521 component = dao.findComponent(http.param("component")?.toIntOrNull() ?: -1)
universe@184 522 category = IssueCategory.valueOf(http.param("category") ?: "")
universe@184 523 status = IssueStatus.valueOf(http.param("status") ?: "")
universe@184 524 subject = http.param("subject") ?: ""
universe@184 525 description = http.param("description") ?: ""
universe@184 526 assignee = http.param("assignee")?.toIntOrNull()?.let {
universe@184 527 when (it) {
universe@184 528 -1 -> null
universe@184 529 -2 -> component?.lead
universe@184 530 else -> dao.findUser(it)
universe@184 531 }
universe@184 532 }
universe@186 533 eta = http.param("eta")?.let { if (it.isBlank()) null else Date.valueOf(it) }
universe@184 534
universe@184 535 affectedVersions = http.paramArray("affected")
universe@198 536 .mapNotNull { param -> param.toIntOrNull()?.let { Version(it, project.id) } }
universe@184 537 resolvedVersions = http.paramArray("resolved")
universe@198 538 .mapNotNull { param -> param.toIntOrNull()?.let { Version(it, project.id) } }
universe@184 539 }
universe@184 540
universe@186 541 val openId = if (issue.id < 0) {
universe@186 542 dao.insertIssue(issue)
universe@186 543 } else {
universe@186 544 dao.updateIssue(issue)
universe@186 545 issue.id
universe@186 546 }
universe@186 547
universe@186 548 if (http.param("more") != null) {
universe@185 549 http.renderCommit("${issuesHref}-/create")
universe@185 550 } else {
universe@186 551 http.renderCommit("${issuesHref}${openId}")
universe@185 552 }
universe@184 553 }
universe@184 554 }
universe@184 555 }

mercurial