-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
313 additions
and
0 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
src/main/java/com/gongjakso/server/domain/apply/controller/ApplyController.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,26 @@ | ||
package com.gongjakso.server.domain.apply.controller; | ||
|
||
import com.gongjakso.server.domain.apply.dto.AddApplyReq; | ||
import com.gongjakso.server.domain.apply.entity.Apply; | ||
import com.gongjakso.server.domain.apply.service.ApplyService; | ||
import io.swagger.v3.oas.annotations.tags.Tag; | ||
import lombok.RequiredArgsConstructor; | ||
import org.springframework.http.HttpStatus; | ||
import org.springframework.http.ResponseEntity; | ||
import org.springframework.web.bind.annotation.PostMapping; | ||
import org.springframework.web.bind.annotation.RequestBody; | ||
import org.springframework.web.bind.annotation.RequestMapping; | ||
import org.springframework.web.bind.annotation.RestController; | ||
|
||
@RequiredArgsConstructor | ||
@RestController | ||
@RequestMapping("/api/v1/apply") | ||
@Tag(name = "Apply", description = "팀 빌딩 관련 API") | ||
public class ApplyController { | ||
private final ApplyService applyService; | ||
@PostMapping("/1") | ||
public ResponseEntity<Apply> addApply(@RequestBody AddApplyReq req){ | ||
Apply savedApply = applyService.save(req); | ||
return ResponseEntity.status(HttpStatus.CREATED).body(savedApply); | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
src/main/java/com/gongjakso/server/domain/apply/dto/AddApplyReq.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,25 @@ | ||
package com.gongjakso.server.domain.apply.dto; | ||
|
||
import com.gongjakso.server.domain.apply.entity.Apply; | ||
import com.gongjakso.server.domain.apply.enumerate.PostType; | ||
import com.gongjakso.server.domain.member.entity.Member; | ||
|
||
public record AddApplyReq( | ||
Member memberId, | ||
String application, | ||
String recruit_part, | ||
PostType type, | ||
Boolean is_pass, | ||
Boolean is_open | ||
) { | ||
public Apply toEntity(){ | ||
return Apply.builder() | ||
.member(memberId) | ||
.application(application) | ||
.recruit_part(recruit_part) | ||
.type(type) | ||
.is_pass(false) | ||
.is_open(false) | ||
.build(); | ||
} | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/com/gongjakso/server/domain/apply/dto/ApplyRes.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,4 @@ | ||
package com.gongjakso.server.domain.apply.dto; | ||
|
||
public record ApplyRes() { | ||
} |
51 changes: 51 additions & 0 deletions
51
src/main/java/com/gongjakso/server/domain/apply/entity/Apply.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,51 @@ | ||
package com.gongjakso.server.domain.apply.entity; | ||
|
||
import com.gongjakso.server.domain.apply.enumerate.PostType; | ||
import com.gongjakso.server.domain.member.entity.Member; | ||
import com.gongjakso.server.global.common.BaseTimeEntity; | ||
import jakarta.persistence.*; | ||
import lombok.AccessLevel; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Getter | ||
@Entity | ||
@Table(name = "apply") | ||
@NoArgsConstructor(access = AccessLevel.PROTECTED) | ||
public class Apply extends BaseTimeEntity { | ||
@Id | ||
@GeneratedValue(strategy = GenerationType.IDENTITY) | ||
@Column(name = "list_id",nullable = false,columnDefinition = "bigint") | ||
private Long listID; | ||
|
||
@ManyToOne(targetEntity = Member.class, fetch = FetchType.LAZY) | ||
@JoinColumn(name = "member_id") | ||
private Member member; | ||
|
||
@Column(name = "application",nullable = false,columnDefinition = "varchar(500)") | ||
private String application; | ||
|
||
@Column(name = "recruit_part",nullable = false,columnDefinition = "varchar(50)") | ||
private String recruit_part; | ||
|
||
@Enumerated(EnumType.STRING) | ||
private PostType type; | ||
|
||
@Column(name = "is_pass", columnDefinition = "boolean" ) | ||
private Boolean is_pass; | ||
|
||
@Column(name = "is_open", columnDefinition = "boolean" ) | ||
private Boolean is_open; | ||
|
||
@Builder | ||
public Apply(Long listID, Member member, String application,String recruit_part,PostType type, Boolean is_pass,Boolean is_open){ | ||
this.listID=listID; | ||
this.member=member; | ||
this.application=application; | ||
this.recruit_part=recruit_part; | ||
this.type=type; | ||
this.is_pass=is_pass; | ||
this.is_open=is_open; | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
src/main/java/com/gongjakso/server/domain/apply/enumerate/PostType.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,5 @@ | ||
package com.gongjakso.server.domain.apply.enumerate; | ||
|
||
public enum PostType { | ||
PROJECT,CONTEST; | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/java/com/gongjakso/server/domain/apply/repository/ApplyRepository.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,7 @@ | ||
package com.gongjakso.server.domain.apply.repository; | ||
|
||
import com.gongjakso.server.domain.apply.entity.Apply; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
|
||
public interface ApplyRepository extends JpaRepository<Apply,Long> { | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/java/com/gongjakso/server/domain/apply/service/ApplyService.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,18 @@ | ||
package com.gongjakso.server.domain.apply.service; | ||
|
||
import com.gongjakso.server.domain.apply.dto.AddApplyReq; | ||
import com.gongjakso.server.domain.apply.entity.Apply; | ||
import com.gongjakso.server.domain.apply.repository.ApplyRepository; | ||
import lombok.RequiredArgsConstructor; | ||
import org.springframework.transaction.annotation.Transactional; | ||
import org.springframework.stereotype.Service; | ||
|
||
@Service | ||
@Transactional | ||
@RequiredArgsConstructor | ||
public class ApplyService { | ||
private final ApplyRepository applyRepository; | ||
public Apply save(AddApplyReq req){ | ||
return applyRepository.save(req.toEntity()); | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
src/main/java/com/gongjakso/server/domain/post/controller/PostController.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,40 @@ | ||
package com.gongjakso.server.domain.post.controller; | ||
|
||
import com.gongjakso.server.domain.post.service.PostService; | ||
import io.swagger.v3.oas.annotations.tags.Tag; | ||
import lombok.RequiredArgsConstructor; | ||
import org.springframework.http.ResponseEntity; | ||
import org.springframework.web.bind.annotation.PostMapping; | ||
import org.springframework.web.bind.annotation.RequestMapping; | ||
import org.springframework.web.bind.annotation.RestController; | ||
|
||
@RestController | ||
@RequiredArgsConstructor | ||
@RequestMapping("/api/v1/post") | ||
@Tag(name = "Post", description = "공고 관련 API") | ||
public class PostController { | ||
private final PostService postService; | ||
|
||
// @PostMapping | ||
// public ResponseEntity<> createPost() { | ||
// | ||
// } | ||
|
||
/** 모집글 게시(CREATE) */ | ||
// @PostMapping("/posts") | ||
// public ResponseEntity<PostCreationResponse> createPost( | ||
// @RequestBody @Validated PostCreationRequest request, | ||
// @AuthenticationPrincipal OAuth2User user) { | ||
// | ||
// String email = user.getName(); | ||
// Post post = postService.createPost(request, email); | ||
// keywordService.addKeywords(post, request); | ||
// | ||
// return ResponseEntity.ok( | ||
// PostCreationResponse.builder() | ||
// .id(post.getId()) | ||
// .title(post.getThumbnail().getTitle()) | ||
// .createdDate(post.getCreatedDate()) | ||
// .build()); | ||
// } | ||
} |
27 changes: 27 additions & 0 deletions
27
src/main/java/com/gongjakso/server/domain/post/dto/PostReq.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,27 @@ | ||
package com.gongjakso.server.domain.post.dto; | ||
|
||
import com.gongjakso.server.domain.post.enumerate.PostType; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
import java.time.LocalDateTime; | ||
import org.springframework.cglib.core.Local; | ||
|
||
@Data | ||
@Getter | ||
@NoArgsConstructor | ||
public class PostReq { | ||
private String title; | ||
private String contents; | ||
private PostType status; | ||
private LocalDateTime startDate; | ||
private LocalDateTime endDate; | ||
private Long maxPerson; | ||
private PostType meetingMethod; | ||
private String meetingArea; | ||
private boolean questionMethod; | ||
private String questionLink; | ||
private boolean isProject; | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/com/gongjakso/server/domain/post/dto/PostRes.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,4 @@ | ||
package com.gongjakso.server.domain.post.dto; | ||
|
||
public class PostRes { | ||
} |
80 changes: 80 additions & 0 deletions
80
src/main/java/com/gongjakso/server/domain/post/entity/Post.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,80 @@ | ||
package com.gongjakso.server.domain.post.entity; | ||
|
||
import com.gongjakso.server.domain.post.enumerate.PostType; | ||
import com.gongjakso.server.global.common.BaseTimeEntity; | ||
import jakarta.persistence.Column; | ||
import jakarta.persistence.Entity; | ||
import jakarta.persistence.EnumType; | ||
import jakarta.persistence.Enumerated; | ||
import jakarta.persistence.GeneratedValue; | ||
import jakarta.persistence.GenerationType; | ||
import jakarta.persistence.Id; | ||
import jakarta.persistence.Table; | ||
import java.time.LocalDateTime; | ||
import lombok.AccessLevel; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Getter | ||
@Entity | ||
@Table(name = "post") | ||
@NoArgsConstructor(access = AccessLevel.PROTECTED) | ||
public class Post extends BaseTimeEntity { | ||
|
||
@Id | ||
@GeneratedValue(strategy = GenerationType.IDENTITY) | ||
@Column(name = "post_id", nullable = false, columnDefinition = "bigint") | ||
private Long postId; | ||
|
||
@Column(name = "title", nullable = false, columnDefinition = "varchar(20)") | ||
private String title; | ||
|
||
@Column(name = "contents", nullable = false, columnDefinition = "varchar(500)") | ||
private String contents; | ||
|
||
@Column(name = "status", columnDefinition = "varchar(255)") | ||
@Enumerated(EnumType.STRING) | ||
private PostType status; | ||
|
||
@Column(name = "start_date", nullable = false, columnDefinition = "timestamp") | ||
private LocalDateTime startDate; | ||
|
||
@Column(name = "end_date", nullable = false, columnDefinition = "timestamp") | ||
private LocalDateTime endDate; | ||
|
||
@Column(name = "max_person", nullable = false, columnDefinition = "bigint") | ||
private Long maxPerson; | ||
|
||
@Column(name = "meeting_method", columnDefinition = "varchar(10)") | ||
@Enumerated(EnumType.STRING) | ||
private PostType meetingMethod; | ||
|
||
@Column(name = "meeting_area", columnDefinition = "varchar(100)") | ||
private String meetingArea; | ||
|
||
@Column(name = "question_method", nullable = false, columnDefinition = "tinyint") | ||
private boolean questionMethod; | ||
|
||
@Column(name = "question_link", nullable = false, columnDefinition = "text") | ||
private String questionLink; | ||
|
||
@Column(name = "is_project", nullable = false, columnDefinition = "tinyint") | ||
private boolean isProject; | ||
|
||
@Builder | ||
public Post(Long postId, String title, String contents, PostType status, LocalDateTime startDate, LocalDateTime endDate, Long maxPerson, PostType meetingMethod, String meetingArea, boolean questionMethod, String questionLink, boolean isProject) { | ||
this.postId = postId; | ||
this.title = title; | ||
this.contents = contents; | ||
this.status = status; | ||
this.startDate = startDate; | ||
this.endDate = endDate; | ||
this.maxPerson = maxPerson; | ||
this.meetingMethod = meetingMethod; | ||
this.meetingArea = meetingArea; | ||
this.questionMethod = questionMethod; | ||
this.questionLink = questionLink; | ||
this.isProject = isProject; | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
src/main/java/com/gongjakso/server/domain/post/enumerate/PostType.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,5 @@ | ||
package com.gongjakso.server.domain.post.enumerate; | ||
|
||
public enum PostType { | ||
STATUS, MEETING_METHOD | ||
} |
8 changes: 8 additions & 0 deletions
8
src/main/java/com/gongjakso/server/domain/post/repository/PostRepository.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,8 @@ | ||
package com.gongjakso.server.domain.post.repository; | ||
|
||
import com.gongjakso.server.domain.post.entity.Post; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
|
||
public interface PostRepository extends JpaRepository<Post, Long> { | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
src/main/java/com/gongjakso/server/domain/post/service/PostService.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.gongjakso.server.domain.post.service; | ||
|
||
import com.gongjakso.server.domain.post.repository.PostRepository; | ||
import lombok.RequiredArgsConstructor; | ||
import org.springframework.stereotype.Service; | ||
import org.springframework.transaction.annotation.Transactional; | ||
|
||
@Service | ||
@Transactional(readOnly = true) | ||
@RequiredArgsConstructor | ||
public class PostService { | ||
private final PostRepository postRepository; | ||
} |