Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

챗봇 도메인 kotlin으로 수정 #48

Merged
merged 18 commits into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 14 additions & 7 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# .editorconfig 파일의 최상위 위치를 설정하여 상위 디렉터리에서 추가적인 .editorconfig를 찾지 않도록 합니다.
# 최상위 위치에 이 파일을 설정하여 상위 디렉터리에서 추가적인 .editorconfig 파일을 찾지 않도록 합니다.
root = true

# [*] 섹션은 모든 파일에 적용되는 기본 설정을 정의합니다.
Expand All @@ -12,21 +12,28 @@ end_of_line = lf
# 파일 끝에 항상 새 줄을 추가하도록 설정합니다. POSIX 표준에 따라 파일 마지막 줄에 새 줄이 있는 것이 일반적입니다.
insert_final_newline = true

# 모든 파일에서 줄 끝의 불필요한 공백을 자동으로 제거합니다.
trim_trailing_whitespace = true

# 최대 줄 길이를 120자로 제한하여 코드의 가독성을 높입니다.
max_line_length = 120


# 특정 파일 확장자에 대한 설정 예시: Windows 배치 파일(.bat)의 줄 끝 스타일을 CRLF로 설정합니다.
[*.bat]
end_of_line = crlf

# [*.java] 섹션은 Java 파일에만 적용되는 설정을 정의합니다.
[*.java]
# [*.{java,kt,kts}] 섹션은 Java와 Kotlin(KT, KTS) 파일에만 적용되는 설정을 정의합니다.
[*.{java,kt,kts}]
# 들여쓰기를 탭(tab) 스타일로 지정하여, 탭을 사용해 들여쓰기를 합니다.
indent_style = tab

# 탭 폭과 들여쓰기 크기를 4칸으로 지정하여, 탭 한 번에 4칸의 들여쓰기를 합니다.
indent_size = 4
tab_width = 4

# 모든 파일에서 줄 끝의 불필요한 공백을 자동으로 제거합니다.
trim_trailing_whitespace = true

# 최대 줄 길이를 120자로 제한하여 코드의 가독성을 높입니다.
# 최대 줄 길이를 120자로 제한하여, Java와 Kotlin 파일에서 코드 가독성을 높입니다.
max_line_length = 120

# 가져오기 > 레이아웃 가져오기 [FIX
ij_kotlin_imports_layout = *, java.**, javax.**, kotlin.**, ^ #인텔리J 기준 기본 import
26 changes: 23 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.10'
// id 'org.springframework.boot' version '2.7.10'
id 'io.spring.dependency-management' version '1.1.6'
//gradle7부터는 jvm.convert를 사용해야한다
//rest docs 결과물 생성 플러그인
Expand All @@ -17,8 +17,16 @@ plugins {
id 'org.ec4j.editorconfig' version '0.0.3'
id 'checkstyle'

}
//코틀린
id 'org.jetbrains.kotlin.jvm' version '1.8.0' // Kotlin 플러그인
id 'org.jetbrains.kotlin.kapt' version '1.8.0' // Kotlin Annotation Processing 플러그인

id 'org.springframework.boot' version '2.7.10' apply false // Spring Boot 플러그인
id 'org.jetbrains.kotlin.plugin.spring' version '1.8.0'
id 'org.jetbrains.kotlin.plugin.jpa' version '1.8.0'
id 'org.jlleitschuh.gradle.ktlint' version '12.1.0'
}
apply plugin: 'org.springframework.boot'
//editorconfig {
// excludes = ['build']
//}
Expand Down Expand Up @@ -163,7 +171,6 @@ repositories {
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
compileOnly 'org.projectlombok:lombok'
Expand Down Expand Up @@ -196,12 +203,21 @@ dependencies {

// @mwiede의 포크 버전 jsch 추가
implementation 'com.github.mwiede:jsch:0.2.21'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"

// // 기존 foo:bar 의존성에서 com.jcraft:jsch 제외
// implementation('foo:bar') {
// exclude group: 'com.jcraft', module: 'jsch'
// }

/**
* KOTLIN
*/
// Kotlin용 Lombok 설정
kapt 'org.projectlombok:lombok'

implementation "org.jetbrains.kotlin:kotlin-reflect:1.8.0"
implementation "com.fasterxml.jackson.module:jackson-module-kotlin"

}

Expand Down Expand Up @@ -249,3 +265,7 @@ tasks.named('test') {
// test 수행 이후 리포트 생성
finalizedBy jacocoTestReport
}

kapt {
keepJavacAnnotationProcessors = true
}
3 changes: 3 additions & 0 deletions lombok.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# This file is generated by the 'io.freefair.lombok' Gradle plugin
config.stopBubbling = true
lombok.addLombokGeneratedAnnotation = true
5 changes: 5 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
pluginManagement {
plugins {
id 'org.jetbrains.kotlin.jvm' version '2.0.21'
}
}
rootProject.name = 'server'

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package com.server.computerscience.chatbot.config

import com.github.benmanes.caffeine.cache.Caffeine
import org.springframework.cache.CacheManager
import org.springframework.cache.annotation.EnableCaching
import org.springframework.cache.caffeine.CaffeineCacheManager
import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration
import java.util.concurrent.TimeUnit

@Configuration
@EnableCaching
class CacheConfig {
@Bean
fun cacheManager(): CacheManager {
val cacheManager = CaffeineCacheManager()
cacheManager.setCaffeine(
Caffeine
.newBuilder()
.expireAfterWrite(1, TimeUnit.HOURS) // 1시간 후 만료
.maximumSize(1000),
) // 최대 1000개의 항목 유지
return cacheManager
}
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
package com.server.computerscience.chatbot.config

import lombok.RequiredArgsConstructor
import org.springframework.http.HttpEntity
import org.springframework.http.HttpHeaders
import org.springframework.http.HttpMethod
import org.springframework.http.MediaType
import org.springframework.http.ResponseEntity
import org.springframework.stereotype.Service
import org.springframework.web.client.RestTemplate

@Service
@RequiredArgsConstructor
class RestTemplateService(
private val restTemplate: RestTemplate,
) {
// 공통화된 sendPostRequest 메서드
fun <T> sendPostRequest(
url: String,
bearerToken: String,
contentType: MediaType?,
body: Any,
responseType: Class<T>,
): ResponseEntity<T> {
val headers = HttpHeaders()
headers["Authorization"] = "Bearer $bearerToken"
headers.contentType = contentType
val requestEntity = HttpEntity(body, headers)
return restTemplate.exchange(url, HttpMethod.POST, requestEntity, responseType)
}
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
package com.server.computerscience.chatbot.controller

import com.server.computerscience.chatbot.dto.request.ChatBotRequestDto
import com.server.computerscience.chatbot.dto.response.ChatBotResponseDto
import com.server.computerscience.chatbot.dto.response.ChatBotResponseDto.Companion.from
import com.server.computerscience.chatbot.service.ChatbotService
import io.swagger.annotations.Api
import lombok.RequiredArgsConstructor
import org.springframework.http.ResponseEntity
import org.springframework.security.core.annotation.AuthenticationPrincipal
import org.springframework.security.oauth2.core.user.OAuth2User
import org.springframework.web.bind.annotation.PostMapping
import org.springframework.web.bind.annotation.RequestBody
import org.springframework.web.bind.annotation.RestController

@RestController
@Api(tags = ["챗봇"])
@RequiredArgsConstructor
class ChatbotController(
private val chatbotService: ChatbotService,
) {
@PostMapping("/chat/text")
fun chat(
@RequestBody chatBotRequestDto: ChatBotRequestDto,
@AuthenticationPrincipal user: OAuth2User?,
): ResponseEntity<ChatBotResponseDto> =
ResponseEntity.ok(from(chatbotService.talkToAssistant(chatBotRequestDto, user)))
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
package com.server.computerscience.chatbot.controller

import com.server.computerscience.chatbot.dto.request.ChatGptBatchRequestDto
import com.server.computerscience.chatbot.dto.response.ChatGptBatchResponseDto
import com.server.computerscience.chatbot.dto.response.ChatGptFileUploadResponseDto
import com.server.computerscience.chatbot.service.implement.ChatGptService
import com.server.computerscience.question.common.dto.request.RequestQuestionCommandDto
import com.server.computerscience.question.common.service.ExternalQuestionService
import io.swagger.annotations.Api
import lombok.RequiredArgsConstructor
import org.springframework.http.ResponseEntity
import org.springframework.stereotype.Controller
import org.springframework.web.bind.annotation.PostMapping
import org.springframework.web.bind.annotation.RequestBody
import org.springframework.web.bind.annotation.RequestMapping

@Controller
@Api(tags = ["AI 문제 수정 - ADMIN"])
@RequestMapping("/admin")
@RequiredArgsConstructor
class ExternalQuestionController(
private val externalQuestionService: ExternalQuestionService,
private val chatGptService: ChatGptService,
) {
@PostMapping("/chat-gpt/file/question")
fun updateQuestionToChatGpt(
@RequestBody requestQuestionCommandDto: RequestQuestionCommandDto,
): ResponseEntity<ChatGptFileUploadResponseDto> =
ResponseEntity.ok(externalQuestionService.sendQuestionToExternal(requestQuestionCommandDto))

@PostMapping("/chat-gpt/batch")
fun createBatchToChatGpt(
@RequestBody requestBatchDto: ChatGptBatchRequestDto,
): ResponseEntity<ChatGptBatchResponseDto> = ResponseEntity.ok(chatGptService.sendBatchMessage(requestBatchDto))
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.server.computerscience.chatbot.domain

enum class ChatContentType(
val lower: String,
) {
TEXT("text"),
}
Loading
Loading