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

[1주차 세미나] 선택 구현 과제 #4

Merged
merged 4 commits into from
Oct 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions src/main/java/org/sopt/week1/DiaryController.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ final void patch(final String id, final String body) {
diaryService.patchDiary(id, body);
}

final void restore(final String id){
diaryService.restoreDiary(id);
}

enum Status {
READY,
RUNNING,
Expand Down
46 changes: 41 additions & 5 deletions src/main/java/org/sopt/week1/DiaryRepository.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
package org.sopt.week1;

import java.time.LocalDate;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.atomic.AtomicLong;
import org.sopt.week1.Main.UI.LimitEditException;

public class DiaryRepository {
private final Map<Long, String> storage = new ConcurrentHashMap<>();
private final Map<Long, String> deletedStorage = new ConcurrentHashMap<>();
private final Map<Long, Integer> patchCount = new ConcurrentHashMap<>(); //수정 횟수
private final Map<Long, LocalDate> patchDate = new ConcurrentHashMap<>(); // 마지막으로 수정한 날짜
private final AtomicLong numbering = new AtomicLong();

void save(final Diary diary){
Expand All @@ -17,6 +22,8 @@ void save(final Diary diary){

// 저장 과정
storage.put(id, diary.getBody());
patchCount.put(id, 0);
patchDate.put(id, LocalDate.now());
}

List<Diary> findAll() {
Expand All @@ -38,18 +45,47 @@ List<Diary> findAll() {
}

void delete(final Long id) {
storage.remove(id);
String removedDiary = storage.remove(id);
if(removedDiary != null){
deletedStorage.put(id, removedDiary);
patchCount.remove(id); // 삭제 시 수정 횟수 제거
patchDate.remove(id); // 삭제 시 날짜 제거
}
}

void patch(final Long id, final String body) {
/*
replace() : key 가 존재할 때에만 값을 변경
put() : key 가 존재하지 않으면 새로운 key-value 쌍을 추가
*/
LocalDate today = LocalDate.now();
LocalDate last = patchDate.getOrDefault(id, today);

if(!today.equals(last)){
patchCount.put(id, 0);
patchDate.put(id, today);
}

int count = patchCount.getOrDefault(id, 0);

if(count >= 2){
throw new LimitEditException();
}
storage.replace(id, body);
patchCount.put(id, count + 1);
patchDate.put(id, today);
}

void restore(final Long id) {
String beRestore = deletedStorage.remove(id);
if (beRestore != null) {
storage.put(id, beRestore);
patchCount.put(id, 0);
patchDate.put(id, LocalDate.now());
}
}

boolean existById(final Long id){
return storage.containsKey(id);
}

boolean existByDeletedId(final Long id){
return deletedStorage.containsKey(id);
}
}
9 changes: 9 additions & 0 deletions src/main/java/org/sopt/week1/DiaryService.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,13 @@ void patchDiary(final String id, final String body) {
throw new IdNotExistException();
}
}

void restoreDiary(final String id) {
final Long diaryId = Long.parseLong(id);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

id 에 숫자가 아닌 값이 들어오는 경우에 대한 검증이 필요해보여요

if (diaryRepository.existByDeletedId(diaryId)) {
diaryRepository.restore(diaryId);
} else {
throw new IdNotExistException();
}
}
}
15 changes: 15 additions & 0 deletions src/main/java/org/sopt/week1/DiaryValidator.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
import org.sopt.week1.Main.UI.InvalidInputException;
import org.sopt.week1.Main.UI.DiaryBodyLengthException;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class DiaryValidator {
public static void validate(final String body){
if(body.trim().isEmpty()){
Expand All @@ -12,4 +15,16 @@ public static void validate(final String body){
throw new DiaryBodyLengthException();
}
}

public static int countGraphemeClusters(String body) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이거 어디서 호출해요?

String regex = "\\X";
Pattern pattern = Pattern.compile(regex);
Matcher matcher = pattern.matcher(body);

int count = 0;
while (matcher.find()) {
count++;
}
return count;
}
}
12 changes: 12 additions & 0 deletions src/main/java/org/sopt/week1/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ class DiaryBodyLengthException extends UIException{

class IdNotExistException extends UIException{
}

class LimitEditException extends RuntimeException{
}
}

static class DiaryUI implements UI {
Expand Down Expand Up @@ -58,6 +61,8 @@ public void runRepeatedly() throws IOException {
ConsoleIO.printLine("일기의 본문은 30자 이내여야 합니다.");
} catch (IdNotExistException e) {
ConsoleIO.printLine("해당 Id 값이 존재하지 않습니다.");
} catch (LimitEditException e) {
ConsoleIO.printLine("일기는 하루에 2번만 수정 가능합니다.");
}

if (isFinished()) {
Expand Down Expand Up @@ -104,6 +109,12 @@ private void run() throws IOException {

server.patch(inputId, inputBody);
}
case "RESTORE" -> {
ConsoleIO.printLine("복구할 일기의 id 를 입력하세요!");
final String inputId = ConsoleIO.readLine();

server.restore(inputId);
}
case "FINISH" -> {
server.finish();
}
Expand Down Expand Up @@ -135,6 +146,7 @@ private String getMenu() {
- POST : 일기 작성하기
- DELETE : 일기 제거하기
- PATCH : 일기 수정하기
- RESTORE : 일기 복구하기
""";

}
Expand Down