generated from yandex-praktikum/java-shareit
-
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
106 changed files
with
12,523 additions
and
135 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="ShareItGateway" type="Application" factoryName="Application" nameIsGenerated="true"> | ||
<option name="MAIN_CLASS_NAME" value="ru.practicum.shareit.ShareItGateway" /> | ||
<module name="shareit-gateway" /> | ||
<extension name="coverage"> | ||
<pattern> | ||
<option name="PATTERN" value="ru.practicum.shareit.*" /> | ||
<option name="ENABLED" value="true" /> | ||
</pattern> | ||
</extension> | ||
<method v="2"> | ||
<option name="Make" enabled="true" /> | ||
</method> | ||
</configuration> | ||
</component> |
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 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="ShareItServer" type="Application" factoryName="Application" nameIsGenerated="true"> | ||
<option name="MAIN_CLASS_NAME" value="ru.practicum.shareit.ShareItServer" /> | ||
<module name="shareit-server" /> | ||
<extension name="coverage"> | ||
<pattern> | ||
<option name="PATTERN" value="ru.practicum.shareit.*" /> | ||
<option name="ENABLED" value="true" /> | ||
</pattern> | ||
</extension> | ||
<method v="2"> | ||
<option name="Make" enabled="true" /> | ||
</method> | ||
</configuration> | ||
</component> |
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,28 @@ | ||
version: '3.8' | ||
services: | ||
gateway: | ||
build: | ||
image: | ||
container_name: | ||
ports: | ||
- "8080:8080" | ||
depends_on: | ||
environment: | ||
- SHAREIT_SERVER_URL=http://server:9090 | ||
|
||
server: | ||
build: | ||
image: | ||
container_name: | ||
ports: | ||
- "9090:9090" | ||
depends_on: | ||
environment: | ||
- SPRING_DATASOURCE_URL=jdbc:postgresql://db:5432/shareit | ||
|
||
db: | ||
image: | ||
container_name: | ||
ports: | ||
- "6541:5432" | ||
environment: |
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 @@ | ||
FROM amazoncorretto:11 |
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,65 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>ru.practicum</groupId> | ||
<artifactId>shareit</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>shareit-gateway</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
|
||
<name>ShareIt Gateway</name> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-web</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-validation</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-actuator</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.httpcomponents</groupId> | ||
<artifactId>httpclient</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-configuration-processor</artifactId> | ||
<optional>true</optional> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
<optional>true</optional> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-test</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-maven-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
12 changes: 12 additions & 0 deletions
12
gateway/src/main/java/ru/practicum/shareit/ShareItGateway.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 ru.practicum.shareit; | ||
|
||
import org.springframework.boot.SpringApplication; | ||
import org.springframework.boot.autoconfigure.SpringBootApplication; | ||
|
||
@SpringBootApplication | ||
public class ShareItGateway { | ||
public static void main(String[] args) { | ||
SpringApplication.run(ShareItGateway.class, args); | ||
} | ||
|
||
} |
File renamed without changes.
47 changes: 47 additions & 0 deletions
47
gateway/src/main/java/ru/practicum/shareit/booking/BookingClient.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,47 @@ | ||
package ru.practicum.shareit.booking; | ||
|
||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.boot.web.client.RestTemplateBuilder; | ||
import org.springframework.http.ResponseEntity; | ||
import org.springframework.http.client.HttpComponentsClientHttpRequestFactory; | ||
import org.springframework.stereotype.Service; | ||
import org.springframework.web.util.DefaultUriBuilderFactory; | ||
import ru.practicum.shareit.booking.dto.BookItemRequestDto; | ||
import ru.practicum.shareit.booking.dto.BookingState; | ||
import ru.practicum.shareit.client.BaseClient; | ||
|
||
import java.util.Map; | ||
|
||
@Service | ||
public class BookingClient extends BaseClient { | ||
private static final String API_PREFIX = "/bookings"; | ||
|
||
@Autowired | ||
public BookingClient(@Value("${shareit-server.url}") String serverUrl, RestTemplateBuilder builder) { | ||
super( | ||
builder | ||
.uriTemplateHandler(new DefaultUriBuilderFactory(serverUrl + API_PREFIX)) | ||
.requestFactory(HttpComponentsClientHttpRequestFactory::new) | ||
.build() | ||
); | ||
} | ||
|
||
public ResponseEntity<Object> getBookings(long userId, BookingState state, Integer from, Integer size) { | ||
Map<String, Object> parameters = Map.of( | ||
"state", state.name(), | ||
"from", from, | ||
"size", size | ||
); | ||
return get("?state={state}&from={from}&size={size}", userId, parameters); | ||
} | ||
|
||
|
||
public ResponseEntity<Object> bookItem(long userId, BookItemRequestDto requestDto) { | ||
return post("", userId, requestDto); | ||
} | ||
|
||
public ResponseEntity<Object> getBooking(long userId, Long bookingId) { | ||
return get("/" + bookingId, userId); | ||
} | ||
} |
48 changes: 48 additions & 0 deletions
48
gateway/src/main/java/ru/practicum/shareit/booking/BookingController.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,48 @@ | ||
package ru.practicum.shareit.booking; | ||
|
||
import lombok.RequiredArgsConstructor; | ||
import lombok.extern.slf4j.Slf4j; | ||
|
||
import org.springframework.http.ResponseEntity; | ||
import org.springframework.stereotype.Controller; | ||
import org.springframework.validation.annotation.Validated; | ||
import org.springframework.web.bind.annotation.*; | ||
import ru.practicum.shareit.booking.dto.BookItemRequestDto; | ||
import ru.practicum.shareit.booking.dto.BookingState; | ||
|
||
import javax.validation.Valid; | ||
import javax.validation.constraints.Positive; | ||
import javax.validation.constraints.PositiveOrZero; | ||
|
||
@Controller | ||
@RequestMapping(path = "/bookings") | ||
@RequiredArgsConstructor | ||
@Slf4j | ||
@Validated | ||
public class BookingController { | ||
private final BookingClient bookingClient; | ||
|
||
@GetMapping | ||
public ResponseEntity<Object> getBookings(@RequestHeader("X-Sharer-User-Id") long userId, | ||
@RequestParam(name = "state", defaultValue = "all") String stateParam, | ||
@PositiveOrZero @RequestParam(name = "from", defaultValue = "0") Integer from, | ||
@Positive @RequestParam(name = "size", defaultValue = "10") Integer size) { | ||
BookingState state = BookingState.from(stateParam) | ||
.orElseThrow(() -> new IllegalArgumentException("Unknown state: " + stateParam)); | ||
log.info("Get booking with state {}, userId={}, from={}, size={}", stateParam, userId, from, size); | ||
return bookingClient.getBookings(userId, state, from, size); | ||
} | ||
|
||
@PostMapping | ||
public ResponseEntity<Object> bookItem(@RequestHeader("X-Sharer-User-Id") long userId, | ||
@RequestBody @Valid BookItemRequestDto requestDto) { | ||
log.info("Creating booking {}, userId={}", requestDto, userId); | ||
return bookingClient.bookItem(userId, requestDto); | ||
} | ||
|
||
@GetMapping("/{bookingId}") | ||
public ResponseEntity<Object> getBooking(@RequestHeader("X-Sharer-User-Id") long userId, | ||
@PathVariable Long bookingId) { | ||
log.info("Get booking {}, userId={}", bookingId, userId); | ||
return bookingClient.getBooking(userId, bookingId); | ||
}} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
21 changes: 21 additions & 0 deletions
21
gateway/src/main/java/ru/practicum/shareit/booking/dto/BookItemRequestDto.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,21 @@ | ||
package ru.practicum.shareit.booking.dto; | ||
|
||
import java.time.LocalDateTime; | ||
|
||
import javax.validation.constraints.Future; | ||
import javax.validation.constraints.FutureOrPresent; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Getter | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
public class BookItemRequestDto { | ||
private long itemId; | ||
@FutureOrPresent | ||
private LocalDateTime start; | ||
@Future | ||
private LocalDateTime end; | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
27 changes: 27 additions & 0 deletions
27
gateway/src/main/java/ru/practicum/shareit/booking/dto/BookingState.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 ru.practicum.shareit.booking.dto; | ||
|
||
import java.util.Optional; | ||
|
||
public enum BookingState { | ||
// Все | ||
ALL, | ||
// Текущие | ||
CURRENT, | ||
// Будущие | ||
FUTURE, | ||
// Завершенные | ||
PAST, | ||
// Отклоненные | ||
REJECTED, | ||
// Ожидающие подтверждения | ||
WAITING; | ||
|
||
public static Optional<BookingState> from(String stringState) { | ||
for (BookingState state : values()) { | ||
if (state.name().equalsIgnoreCase(stringState)) { | ||
return Optional.of(state); | ||
} | ||
} | ||
return Optional.empty(); | ||
} | ||
} |
Oops, something went wrong.