46 lines
1.8 KiB
Kotlin
46 lines
1.8 KiB
Kotlin
package com.project.movienight.adapters.web
|
|
|
|
import com.project.movienight.adapters.web.dto.request.UpsertUserPreferencesRequest
|
|
import com.project.movienight.adapters.web.dto.response.UserPreferencesResponse
|
|
import com.project.movienight.application.ports.input.UpsertUserPreferencesCommand
|
|
import com.project.movienight.application.ports.input.UserPreferencesUseCase
|
|
import jakarta.validation.Valid
|
|
import org.springframework.web.bind.annotation.GetMapping
|
|
import org.springframework.web.bind.annotation.PathVariable
|
|
import org.springframework.web.bind.annotation.PutMapping
|
|
import org.springframework.web.bind.annotation.RequestBody
|
|
import org.springframework.web.bind.annotation.RequestMapping
|
|
import org.springframework.web.bind.annotation.RestController
|
|
import java.util.UUID
|
|
|
|
@RestController
|
|
@RequestMapping("/api/users/{userId}/preferences")
|
|
class UserPreferencesController(
|
|
private val userPreferencesUseCase: UserPreferencesUseCase,
|
|
) {
|
|
@PutMapping
|
|
fun upsert(
|
|
@PathVariable userId: UUID,
|
|
@Valid @RequestBody request: UpsertUserPreferencesRequest,
|
|
): UserPreferencesResponse =
|
|
UserPreferencesResponse.fromDomain(
|
|
userPreferencesUseCase.upsert(
|
|
UpsertUserPreferencesCommand(
|
|
userId = userId,
|
|
weightedGenres = request.weightedGenres,
|
|
plotTypes = request.plotTypes,
|
|
eras = request.eras,
|
|
castAndDirectors = request.castAndDirectors,
|
|
moods = request.moods,
|
|
contentTypes =
|
|
request.contentTypes.map { parseContentType(it) },
|
|
),
|
|
),
|
|
)
|
|
|
|
@GetMapping
|
|
fun get(
|
|
@PathVariable userId: UUID,
|
|
): UserPreferencesResponse? = userPreferencesUseCase.get(userId)?.let { UserPreferencesResponse.fromDomain(it) }
|
|
}
|