Skip to content

Commit

Permalink
Provide localhost adobe key on staging (#4837)
Browse files Browse the repository at this point in the history
  • Loading branch information
YohannParis authored Sep 18, 2024
1 parent c8e6da7 commit ef3e9d8
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 62 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import org.springframework.http.ResponseEntity;
import org.springframework.security.access.annotation.Secured;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestHeader;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import software.uncharted.terarium.hmiserver.security.Roles;
Expand All @@ -15,16 +16,19 @@
public class AdobeController {

@Value("${adobe.api-key}")
String key;
String adobeKey;

@Value("${adobe.api-localhost-key}")
String adobeLocalhostKey;

@GetMapping
@Secured(Roles.USER)
public ResponseEntity<String> getKey() {
if (key != null) {
return ResponseEntity.ok(key);
} else {
public ResponseEntity<String> getKey(@RequestHeader(value = "Origin", required = false) String origin) {
final String key = origin != null && origin.contains("localhost") ? adobeLocalhostKey : adobeKey;
if (key == null) {
log.error("No Adobe API key is configured");
return ResponseEntity.internalServerError().build();
}
return ResponseEntity.ok(key);
}
}
Original file line number Diff line number Diff line change
@@ -1,58 +1,61 @@
$ANSIBLE_VAULT;1.1;AES256
63656639336564376563626566386635643365333634393336633330663734613032343038336336
3739373333366664633561353931306664376332326137340a393430346639636132383365383736
39646363643633353539303865643061326638393538303337356563396637636530346464623365
3732383530363738650a386132636138353932616532313736306163396436663035366635626634
66626234313530666133626439653362633339646432663762366366613134656465616662316262
65323930343764383835396232306137366532383062306434353638633161383161386233373163
64353061636533386263333731343938383964653463663331323334366335626534653432363039
35636662646539353639363966626536633630383533656362656662646163306363643237656634
37633332323537646562616165663036373864306439346637346137666635656565343830383834
35393936346263333637316466373635643230653533373961306433313737323536373032343162
33363261326366386261303536666464396161313065346137643339333835636636343131373465
65333762336461663362316661613062663233663535653662393061396535646430306265663836
35393330323861656465663531303838383935303234383637393836353962626332326231616139
39303464643832623037303561653263613035666137353466373438323261376430316263323164
33663864353465656536373633303536386532633064326463313538663464646232343034393434
35343461323837353435346134343065636165323236363065313065343563386662326330303664
38623965623766643733653738373461386635363566386239306231636663383236383961313965
39383330366336306132363937393563393965633632333830343831343163633036346131363063
30653761666131376431373061343966376331323938313662393564386135393637393938383431
65313038306330633034323063316537313631313537626634323266303365346666663062323962
66303330323035383562313665336233303862313331613266633637323833333365303864646265
31323330333730626464393061323338373862633133383466303636613965393632356331373531
66313930393363656638323539636237656232383533313662316165613635663166303661343235
37323664636336363064316666336631363837626137653731326562346133356635333765333237
66363639343833646138626436323336386538613933393665633330333565336464346461613934
33376166656132353861376663643962313332326664623361353866653262656665613061653930
64643234353464663333393230343239316437303161313164646434613563663264646361623262
63666362376561323630333436363631383763613731623437303833313930333362303361663361
31313836303464383232356433363864323766386339363331613165383061633765646438653131
33366162653666303265363966363866366535306635333165343234313736343133363132363565
65336431376366306236333662313836326132346131353735343136363039656331616231303430
31393937333061383465653066646161376164353436386533643737316539366361393836663465
36366665346437633162613430363133393436373065323965303232343935366463646238653734
66623231323561633236616339313338643463303630336435633437653636366562393032326166
66393030643461626135303361356165613833313431333133393666333333303136303463613666
30633161613830366365633863306466306161336563326130373533393061306261346333666639
30333738666335613064373837383365373839376332373962623965623137303734393734353533
63333837636530343064613434643163386234366465636637613862316437373936383739353030
61333639393737386362333233313963623134636665393666653931366134336533636537623936
64303738386331353639636637666236313131346463383937653061653837356164616436656164
62623963373434313935393364623364386663643431333730626539653833616663346430643865
36333263656536666636396362373461633562663765653362366433313264393234363636663238
65353836613864613065356337396134393639633730353461326332383464316633336636323735
36323463346633393463643166353538633333313737633764623632373735323332326237333930
38666262623936303365373865396164313664656437336538623366643134393534316439646233
33393730353338666633376637623163383338336264386239343137666331643634393735653862
65303062666238386462656433306363343130383361663134323933343664653361383230366432
34653161643032656337346164373265316138353030386537653064633964356164306466353862
61363432333935303365663930656237643065363162653630646633316363333037616564666564
62613336386233346438653033646362653465626436333639396266363739633663316631306362
62333531623065656134396464633837383832656439626239356431303839323333326633613735
34333839623533326330613036623332633337376637613730353065323537316234396330613761
39376563386565316166626166326232633539646262343264633962376666663333623331643633
32656434346361616164326166393037653762353339383731306166666534633833383234393461
61316161343535653265343564373863383039326332646561353837343936386331666665336237
66623130643336303238393237303636353731333638616161666166303964353366393135346530
61616334643561376633393265393563646132373865333038646262313137353964
36396236386433333734366135396263333130636637386236386663393038616166346339303039
6531653538303736326139313365393139393862613964640a326536383265626364396361316638
63613731663437383532393335633538323265323766306164653561373363373030383062336533
6661636634353235350a333938383637333832363862336138393130316539633439393936643439
39373530343832663137363336623063623265393437353636343865353663623264376635613133
31363534326662353430393130633166386161643033633335393738303564663662326364363330
34333431306163313465323631623561353566373637313862386666383337323165666462653736
34656334316164623864323231363832356338366165343061663939626439636565363037346237
34643538303830643965353834343838616566356665663338373834656665653762623838386166
31393962366439383033316665373339306236363030616534363834633637653634376238313734
38393063343766366232346332656232303962386265613264363366623162326436333662333465
36663666626636323139336538316337366539626639393730353031353835316533376163383133
65613633343631623530353066333039343836626363326661666635336539303637386433623733
66363465633432306466373534306135363563393732363737333561666135383833613734373332
38643963373366613434303438656439383638373639326561626330313630623031343866373265
62356635643666623032333032613463303262623835333764653836326265613334376432643939
33333637336165613536343430643037386234613135666137343734636130626661396632333366
32626530363862313063353033643534623634343436393130373638333963376239303636363430
32336565623861623862306132316638333362633132363733303937636163393639343032663266
61313766393838623632663566653234383139366363323865633262633136393434663832356130
65656430623361313731646332636538373664386338663064386561623838316439343533323565
36353265376530323938336338306337333363616333343533626633303233663862613832663363
65313334643935366636376161623630333839373464363237623836303834316231663061376666
63336437643332316630653238386164393531383832356438633832646166346166373462653638
33336139626130366561393335383731396666333231333836396463356166336533646131333266
34653463376235376665643461353566346166343334316566623638656561656433303563643166
65363439623666376637663265303864333066313039333438363465626634366161626364306132
31316336303832323234376235353162653766313235616131646537613236336463356332393237
31333938633066653333333133623238653530616463656263333734646365323836366135363239
35333434343761386330363439303363343537653034376339653037646162633833353365343061
64323032363665303639633133373538613834656332363632383435366664613135313166353033
66633835653939613337333833663831323238363936336262306263363932646534313965613763
38653939633934346133303330353263323762366530346663663736663631616532356662393661
30373363383962623062353933393738303963393961303432613635333332353131663334626166
33656262643632663864643438303064383935626632356266623264333035383835643233306335
35313037306361373465303961646232653562656335333335646135313830373730313332393734
38366334353833383130646166323738653461663164643032373138396166326664393166346266
61383938333264333038363636636235373362386634366531616661626135646230633139376432
63643939383361363137613961396662306331636435353565306264633831623165313135373632
30656263643530326362663937666363656161303264356636343230353934323165636164343433
35383439653231663435363266616238343131666662383662373936306232656331626539636539
38623338373865303434376461313463373037663534383432313864303133323330393335383333
64313065653638396139663538636639663431663339626139313531303730346664396263306262
37363932376133653261366134323531336662646637386130333566383635306331656635353330
36356534396662666265313562643030623362353466333663343230306633306335633630366263
36656635363733336163353934663035653638343764336533623338346337366131313032393439
37303437363336306132303432326137353831623137386566616339666138323964623136376335
33656664333865613435336437616335666265613839336137363838356361613437396631333961
66313666336339383835623636306132633637663636633966393534373732633435623732623066
35356265343066323131613465316135343930333332343861643130356466323265613432616539
37383966653566326531633336653330653332336436373662306632323461643834326165366165
62623236303630343535663635636537643035663037356435393237646166376636333762313730
31306234376362626264343837653166393830303431333937656361383835643164616465323732
31326434343932633563343236386538353862366665343462663837346361306365376639613637
66633665333332616331326664333532303061303961633066316265383961323636633064383538
31343765643134333930396563373634356137333563616662643037356638333030376431376130
66616233326632663662353831363831663236363761613030646365393730373565623564366130
64373638353330346566313936383634643634336333383666613939376163353464633531666532
35656663643834643336306165616632393339363135363861383365306637323065346333373166
30626366386137326363
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ adobe_key=nothing
google-analytics-id=nothing
tgpt.token=nothing
adobe.api_key=${adobe_key}
adobe.api-localhost-key=${adobe_key}
xdd_api_key=nothing
xdd_es_key=nothing
xdd.api_key=${xdd_api_key}
Expand Down

0 comments on commit ef3e9d8

Please sign in to comment.