Skip to content

Commit 87d8f3c

Browse files
committed
Merge remote-tracking branch 'origin/common' into auth/dev
2 parents ef79026 + e067b1f commit 87d8f3c

File tree

6 files changed

+25
-31
lines changed

6 files changed

+25
-31
lines changed

src/common-module/src/main/java/org/palette/dto/event/LikedPaintEvent.java

+4
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,8 @@ public record LikedPaintEvent(
1111
public String getTopic() {
1212
return TopicConstant.LIKED_PAINT.value;
1313
}
14+
15+
public LikedPaintEvent(final Long likingUserId, final Long paintId) {
16+
this(likingUserId, paintId, -1L);
17+
}
1418
}

src/common-module/src/main/java/org/palette/dto/event/PaintCreatedEvent.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
@Builder(access = AccessLevel.PRIVATE)
1212
public record PaintCreatedEvent(
1313
Long id,
14-
Boolean isReply,
14+
Long inReplyToPaintId,
1515
Long authorId,
1616
String authorUsername,
1717
String authorNickname,

src/common-module/src/main/java/org/palette/dto/event/ReplyCreatedEvent.java

-10
This file was deleted.

src/common-module/src/main/java/org/palette/dto/event/TopicConstant.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@ public enum TopicConstant {
1212
FOLLOWED("followed"),
1313
USER_CREATED("user_created"),
1414
UPDATE_USER("update_user"),
15-
REPLY_CREATED("reply_created"),
1615
TEMPORARY_USER_DELETION("temporary_user_deletion"),
17-
;
16+
UNLIKED_PAINT("unliked_paint");
1817
final String value;
1918

2019
public String value() {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
package org.palette.dto.event;
2+
3+
import org.palette.dto.EaselEvent;
4+
5+
public record UnlikedPaintEvent(
6+
Long unlikingUserId,
7+
Long paintId,
8+
Long likedPaintUserId
9+
) implements EaselEvent {
10+
@Override
11+
public String getTopic() {
12+
return TopicConstant.UNLIKED_PAINT.value;
13+
}
14+
15+
public UnlikedPaintEvent(final Long unlikingUserId, final Long paintId) {
16+
this(unlikingUserId, paintId, -1L);
17+
}
18+
}

src/common-module/src/main/proto/social_service.proto

+1-18
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ message GPaintResponse {
5656
string authorNickname = 5;
5757
string authorImagePath = 6;
5858
string authorStatus = 7;
59-
GQuotePaintResponse quote = 8;
59+
GPaintResponse quote = 8;
6060
string createdAt = 9;
6161
string text = 10;
6262
repeated GHashtagResponse hashtags = 11;
@@ -66,23 +66,6 @@ message GPaintResponse {
6666
repeated GLinkResponse links = 15;
6767
}
6868

69-
message GQuotePaintResponse {
70-
int64 pid = 1;
71-
bool isReply = 2;
72-
int64 authorId = 3;
73-
string authorUsername = 4;
74-
string authorNickname = 5;
75-
string authorImagePath = 6;
76-
string authorStatus = 7;
77-
string createdAt = 8;
78-
string text = 9;
79-
repeated GHashtagResponse hashtags = 10;
80-
repeated GMentionResponse mentions = 11;
81-
repeated GUserResponse taggedUsers = 12;
82-
repeated GMediaResponse medias = 13;
83-
repeated GLinkResponse links = 14;
84-
}
85-
8669
message GHashtagResponse {
8770
int32 start = 1;
8871
int32 end = 2;

0 commit comments

Comments
 (0)