-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. update springboot version 2. support websocket 3. redo interactive action handlers
- Loading branch information
Showing
75 changed files
with
984 additions
and
549 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/com/jerry/pilipala/application/dto/CommentDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 3 additions & 5 deletions
8
src/main/java/com/jerry/pilipala/application/dto/DanmakuDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/com/jerry/pilipala/application/dto/EmailLoginDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/main/java/com/jerry/pilipala/application/dto/RoleSaveDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
src/main/java/com/jerry/pilipala/application/dto/UserUpdateDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/main/java/com/jerry/pilipala/application/dto/VideoPostDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
src/main/java/com/jerry/pilipala/domain/interactive/entity/BarrageInteractiveParam.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.jerry.pilipala.domain.interactive.entity; | ||
|
||
import com.jerry.pilipala.application.dto.DanmakuDTO; | ||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
import lombok.experimental.Accessors; | ||
|
||
@Data | ||
@Accessors(chain = true) | ||
@EqualsAndHashCode(callSuper = true) | ||
public class BarrageInteractiveParam extends BaseInteractiveParam { | ||
private Long cid; | ||
private DanmakuDTO danmaku; | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/java/com/jerry/pilipala/domain/interactive/entity/BaseInteractiveParam.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.jerry.pilipala.domain.interactive.entity; | ||
|
||
|
||
import lombok.Data; | ||
import lombok.experimental.Accessors; | ||
|
||
@Data | ||
@Accessors(chain = true) | ||
public class BaseInteractiveParam { | ||
protected String selfUid = "unknown"; | ||
} |
14 changes: 14 additions & 0 deletions
14
src/main/java/com/jerry/pilipala/domain/interactive/entity/CommentInteractiveParam.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.jerry.pilipala.domain.interactive.entity; | ||
|
||
import com.jerry.pilipala.application.dto.CommentDTO; | ||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
import lombok.experimental.Accessors; | ||
|
||
@Data | ||
@EqualsAndHashCode(callSuper = true) | ||
@Accessors(chain = true) | ||
public class CommentInteractiveParam extends BaseInteractiveParam { | ||
private Long cid; | ||
private CommentDTO comment; | ||
} |
13 changes: 13 additions & 0 deletions
13
...main/java/com/jerry/pilipala/domain/interactive/entity/DeleteCommentInteractiveParam.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.jerry.pilipala.domain.interactive.entity; | ||
|
||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
import lombok.experimental.Accessors; | ||
|
||
@Data | ||
@Accessors(chain = true) | ||
@EqualsAndHashCode(callSuper = true) | ||
public class DeleteCommentInteractiveParam extends BaseInteractiveParam { | ||
private Long cid; | ||
private String commentId; | ||
} |
12 changes: 12 additions & 0 deletions
12
src/main/java/com/jerry/pilipala/domain/interactive/entity/FollowInteractiveParam.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.jerry.pilipala.domain.interactive.entity; | ||
|
||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
import lombok.experimental.Accessors; | ||
|
||
@Data | ||
@Accessors(chain = true) | ||
@EqualsAndHashCode(callSuper = true) | ||
public class FollowInteractiveParam extends BaseInteractiveParam { | ||
private String upUid; | ||
} |
14 changes: 14 additions & 0 deletions
14
src/main/java/com/jerry/pilipala/domain/interactive/entity/PlayInteractiveParam.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.jerry.pilipala.domain.interactive.entity; | ||
|
||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
import lombok.experimental.Accessors; | ||
|
||
@Data | ||
@Accessors(chain = true) | ||
@EqualsAndHashCode(callSuper = true) | ||
public class PlayInteractiveParam extends BaseInteractiveParam { | ||
private Long cid; | ||
private String authorUid; | ||
private Boolean valid; | ||
} |
15 changes: 15 additions & 0 deletions
15
src/main/java/com/jerry/pilipala/domain/interactive/entity/UpdateTimeInteractiveParam.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package com.jerry.pilipala.domain.interactive.entity; | ||
|
||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
import lombok.experimental.Accessors; | ||
|
||
@Data | ||
@Accessors(chain = true) | ||
@EqualsAndHashCode(callSuper = true) | ||
public class UpdateTimeInteractiveParam extends BaseInteractiveParam { | ||
private String bvId; | ||
private Long cid; | ||
private Integer time; | ||
private String playActionId; | ||
} |
12 changes: 12 additions & 0 deletions
12
src/main/java/com/jerry/pilipala/domain/interactive/entity/VodInteractiveParam.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.jerry.pilipala.domain.interactive.entity; | ||
|
||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
import lombok.experimental.Accessors; | ||
|
||
@Data | ||
@Accessors(chain = true) | ||
@EqualsAndHashCode(callSuper = true) | ||
public class VodInteractiveParam extends BaseInteractiveParam { | ||
private Long cid; | ||
} |
32 changes: 0 additions & 32 deletions
32
...n/java/com/jerry/pilipala/domain/interactive/handler/BarrageInteractiveActionHandler.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.