-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into feature/MAFOO-25
- Loading branch information
Showing
14 changed files
with
290 additions
and
129 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
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
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
39 changes: 39 additions & 0 deletions
39
photo-service/src/main/java/kr/mafoo/photo/service/vendors/DontLookUpQrVendor.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,39 @@ | ||
package kr.mafoo.photo.service.vendors; | ||
|
||
import kr.mafoo.photo.exception.PhotoQrUrlExpiredException; | ||
import kr.mafoo.photo.exception.RedirectUriNotFoundException; | ||
import kr.mafoo.photo.util.WebClientUtil; | ||
import lombok.RequiredArgsConstructor; | ||
import org.springframework.stereotype.Component; | ||
import org.springframework.web.reactive.function.client.WebClient; | ||
import reactor.core.publisher.Mono; | ||
|
||
@RequiredArgsConstructor | ||
@Component | ||
public class DontLookUpQrVendor implements QrVendor { | ||
private final WebClient webClient; | ||
|
||
@Override | ||
public Mono<byte[]> extractImageFromQrUrl(String qrUrl) { | ||
String imageName = qrUrl.split(".kr/image/")[1]; | ||
|
||
String baseUrl = "https://x.dontlxxkup.kr/uploads/"; | ||
String imageUrl = baseUrl + imageName; | ||
|
||
// TODO : 추후 비디오 URL 추가 예정 | ||
// String videoName = imageName.replace("image", "video").replace(".jpg", ".mp4"); | ||
// String videoUrl = baseUrl + videoName; | ||
|
||
return WebClientUtil.getRedirectUri(webClient, qrUrl) | ||
.flatMap(redirectUri -> { | ||
if (redirectUri.endsWith("/delete")) { | ||
return Mono.error(new PhotoQrUrlExpiredException()); | ||
} else { | ||
return WebClientUtil.getBlob(webClient, imageUrl); | ||
} | ||
}) | ||
.onErrorResume( | ||
RedirectUriNotFoundException.class, e -> WebClientUtil.getBlob(webClient, imageUrl) | ||
); | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
photo-service/src/main/java/kr/mafoo/photo/service/vendors/HaruFilmQrVendor.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,29 @@ | ||
package kr.mafoo.photo.service.vendors; | ||
|
||
import kr.mafoo.photo.exception.PhotoQrUrlExpiredException; | ||
import kr.mafoo.photo.util.WebClientUtil; | ||
import lombok.RequiredArgsConstructor; | ||
import org.springframework.stereotype.Component; | ||
import org.springframework.web.reactive.function.client.WebClient; | ||
import reactor.core.publisher.Mono; | ||
|
||
@RequiredArgsConstructor | ||
@Component | ||
public class HaruFilmQrVendor implements QrVendor { | ||
private final WebClient webClient; | ||
|
||
@Override | ||
public Mono<byte[]> extractImageFromQrUrl(String qrUrl) { | ||
String[] urlValueList = qrUrl.split("/@"); | ||
String albumCode = urlValueList[1]; | ||
|
||
String baseUrl = urlValueList[0] + "/base_api?command=albumdn&albumCode="; | ||
String imageUrl = baseUrl + albumCode + "&type=photo&file_name=output.jpg&max=10&limit=+24 hours"; | ||
|
||
// TODO : 추후 비디오 URL 추가 예정 | ||
// String videoUrl = baseUrl + albumCode + "&type=video&max=10&limit=+24 hours"; | ||
|
||
return WebClientUtil.getBlob(webClient, imageUrl) | ||
.onErrorMap(e -> new PhotoQrUrlExpiredException()); | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
photo-service/src/main/java/kr/mafoo/photo/service/vendors/LifeFourCutsQrVendor.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,28 @@ | ||
package kr.mafoo.photo.service.vendors; | ||
|
||
import kr.mafoo.photo.exception.PhotoQrUrlExpiredException; | ||
import kr.mafoo.photo.util.WebClientUtil; | ||
import lombok.RequiredArgsConstructor; | ||
import org.springframework.stereotype.Component; | ||
import org.springframework.web.reactive.function.client.WebClient; | ||
import reactor.core.publisher.Mono; | ||
|
||
@RequiredArgsConstructor | ||
@Component | ||
public class LifeFourCutsQrVendor implements QrVendor { | ||
private final WebClient webClient; | ||
|
||
@Override | ||
public Mono<byte[]> extractImageFromQrUrl(String qrUrl) { | ||
return WebClientUtil.getRedirectUri(webClient, qrUrl) | ||
.flatMap(redirectUri -> { | ||
String imageUrl = redirectUri.split("path=")[1].replace("index.html", "image.jpg"); | ||
|
||
// TODO : 추후 비디오 URL 추가 예정 | ||
// String videoUrl = redirectUri.toString().replace("index.html", "video.mp4"); | ||
|
||
return WebClientUtil.getBlob(webClient, imageUrl); | ||
}) | ||
.onErrorMap(e -> new PhotoQrUrlExpiredException()); | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
photo-service/src/main/java/kr/mafoo/photo/service/vendors/MyFourCutQrVendor.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 kr.mafoo.photo.service.vendors; | ||
|
||
import kr.mafoo.photo.exception.PhotoQrUrlExpiredException; | ||
import kr.mafoo.photo.util.WebClientUtil; | ||
import lombok.RequiredArgsConstructor; | ||
import org.springframework.stereotype.Component; | ||
import org.springframework.web.reactive.function.client.WebClient; | ||
import reactor.core.publisher.Mono; | ||
|
||
@RequiredArgsConstructor | ||
@Component | ||
public class MyFourCutQrVendor implements QrVendor { | ||
private final WebClient webClient; | ||
|
||
@Override | ||
public Mono<byte[]> extractImageFromQrUrl(String qrUrl) { | ||
return WebClientUtil | ||
.getBlob(webClient, qrUrl) //just image url | ||
.onErrorMap(e -> new PhotoQrUrlExpiredException()); | ||
} | ||
} |
Oops, something went wrong.