Skip to content

Commit ed3d329

Browse files
committed
Merge branch 'develop' of github.com:OpenBankProject/OBP-API into develop
2 parents ad6299e + b45b828 commit ed3d329

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+2895
-179
lines changed

build.sbt

Lines changed: 199 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,199 @@
1+
ThisBuild / version := "1.10.1"
2+
ThisBuild / scalaVersion := "2.12.20"
3+
ThisBuild / organization := "com.tesobe"
4+
5+
// Java version compatibility
6+
ThisBuild / javacOptions ++= Seq("-source", "11", "-target", "11")
7+
ThisBuild / scalacOptions ++= Seq(
8+
"-unchecked",
9+
"-explaintypes",
10+
"-target:jvm-1.8",
11+
"-Yrangepos"
12+
)
13+
14+
// Enable SemanticDB for Metals
15+
ThisBuild / semanticdbEnabled := true
16+
ThisBuild / semanticdbVersion := "4.13.9"
17+
18+
// Fix dependency conflicts
19+
ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always
20+
21+
lazy val liftVersion = "3.5.0"
22+
lazy val akkaVersion = "2.5.32"
23+
lazy val jettyVersion = "9.4.50.v20221201"
24+
lazy val avroVersion = "1.8.2"
25+
26+
lazy val commonSettings = Seq(
27+
resolvers ++= Seq(
28+
"Sonatype OSS Releases" at "https://oss.sonatype.org/content/repositories/releases",
29+
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
30+
"Artima Maven Repository" at "https://repo.artima.com/releases",
31+
"OpenBankProject M2 Repository" at "https://raw.githubusercontent.com/OpenBankProject/OBP-M2-REPO/master",
32+
"jitpack.io" at "https://jitpack.io"
33+
)
34+
)
35+
36+
lazy val obpCommons = (project in file("obp-commons"))
37+
.settings(
38+
commonSettings,
39+
name := "obp-commons",
40+
libraryDependencies ++= Seq(
41+
"net.liftweb" %% "lift-common" % liftVersion,
42+
"net.liftweb" %% "lift-util" % liftVersion,
43+
"net.liftweb" %% "lift-mapper" % liftVersion,
44+
"org.scala-lang" % "scala-reflect" % "2.12.20",
45+
"org.scalatest" %% "scalatest" % "3.2.15" % Test,
46+
"org.scalactic" %% "scalactic" % "3.2.15",
47+
"net.liftweb" %% "lift-json" % liftVersion,
48+
"com.alibaba" % "transmittable-thread-local" % "2.11.5",
49+
"org.apache.commons" % "commons-lang3" % "3.12.0",
50+
"org.apache.commons" % "commons-text" % "1.10.0",
51+
"com.google.guava" % "guava" % "32.0.0-jre"
52+
)
53+
)
54+
55+
lazy val obpApi = (project in file("obp-api"))
56+
.dependsOn(obpCommons)
57+
.settings(
58+
commonSettings,
59+
name := "obp-api",
60+
libraryDependencies ++= Seq(
61+
// Core dependencies
62+
"net.liftweb" %% "lift-mapper" % liftVersion,
63+
"net.databinder.dispatch" %% "dispatch-lift-json" % "0.13.1",
64+
"ch.qos.logback" % "logback-classic" % "1.2.13",
65+
"org.slf4j" % "log4j-over-slf4j" % "1.7.26",
66+
"org.slf4j" % "slf4j-ext" % "1.7.26",
67+
68+
// Security
69+
"org.bouncycastle" % "bcpg-jdk15on" % "1.70",
70+
"org.bouncycastle" % "bcpkix-jdk15on" % "1.70",
71+
"com.nimbusds" % "nimbus-jose-jwt" % "9.37.2",
72+
"com.nimbusds" % "oauth2-oidc-sdk" % "9.27",
73+
74+
// Commons
75+
"org.apache.commons" % "commons-lang3" % "3.12.0",
76+
"org.apache.commons" % "commons-text" % "1.10.0",
77+
"org.apache.commons" % "commons-email" % "1.5",
78+
"org.apache.commons" % "commons-compress" % "1.26.0",
79+
"org.apache.commons" % "commons-pool2" % "2.11.1",
80+
81+
// Database
82+
"org.postgresql" % "postgresql" % "42.4.4",
83+
"com.h2database" % "h2" % "2.2.220" % Runtime,
84+
"mysql" % "mysql-connector-java" % "8.0.30",
85+
"com.microsoft.sqlserver" % "mssql-jdbc" % "11.2.0.jre11",
86+
87+
// Web
88+
"javax.servlet" % "javax.servlet-api" % "3.1.0" % Provided,
89+
"org.eclipse.jetty" % "jetty-server" % jettyVersion % Test,
90+
"org.eclipse.jetty" % "jetty-webapp" % jettyVersion % Test,
91+
"org.eclipse.jetty" % "jetty-util" % jettyVersion,
92+
93+
// Akka
94+
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
95+
"com.typesafe.akka" %% "akka-remote" % akkaVersion,
96+
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
97+
"com.typesafe.akka" %% "akka-http-core" % "10.1.6",
98+
99+
// Avro
100+
"com.sksamuel.avro4s" %% "avro4s-core" % avroVersion,
101+
102+
// Twitter
103+
"com.twitter" %% "chill-akka" % "0.9.1",
104+
"com.twitter" %% "chill-bijection" % "0.9.1",
105+
106+
// Cache
107+
"com.github.cb372" %% "scalacache-redis" % "0.9.3",
108+
"com.github.cb372" %% "scalacache-guava" % "0.9.3",
109+
110+
// Utilities
111+
"com.github.dwickern" %% "scala-nameof" % "1.0.3",
112+
"org.javassist" % "javassist" % "3.25.0-GA",
113+
"com.alibaba" % "transmittable-thread-local" % "2.14.2",
114+
"org.clapper" %% "classutil" % "1.4.0",
115+
"com.github.grumlimited" % "geocalc" % "0.5.7",
116+
"com.github.OpenBankProject" % "scala-macros" % "v1.0.0-alpha.3",
117+
"org.scalameta" %% "scalameta" % "3.7.4",
118+
119+
// Akka Adapter - exclude transitive dependency on obp-commons to use local module
120+
"com.github.OpenBankProject.OBP-Adapter-Akka-SpringBoot" % "adapter-akka-commons" % "v1.1.0" exclude("com.github.OpenBankProject.OBP-API", "obp-commons"),
121+
122+
// JSON Schema
123+
"com.github.everit-org.json-schema" % "org.everit.json.schema" % "1.6.1",
124+
"com.networknt" % "json-schema-validator" % "1.0.87",
125+
126+
// Swagger
127+
"io.swagger.parser.v3" % "swagger-parser" % "2.0.13",
128+
129+
// Text processing
130+
"org.atteo" % "evo-inflector" % "1.2.2",
131+
132+
// Payment
133+
"com.stripe" % "stripe-java" % "12.1.0",
134+
"com.twilio.sdk" % "twilio" % "9.2.0",
135+
136+
// gRPC
137+
"com.thesamet.scalapb" %% "scalapb-runtime-grpc" % "0.8.4",
138+
"io.grpc" % "grpc-all" % "1.48.1",
139+
"io.netty" % "netty-tcnative-boringssl-static" % "2.0.27.Final",
140+
"org.asynchttpclient" % "async-http-client" % "2.10.4",
141+
142+
// Database utilities
143+
"org.scalikejdbc" %% "scalikejdbc" % "3.4.0",
144+
145+
// XML
146+
"org.scala-lang.modules" %% "scala-xml" % "1.2.0",
147+
148+
// IBAN
149+
"org.iban4j" % "iban4j" % "3.2.7-RELEASE",
150+
151+
// JavaScript
152+
"org.graalvm.js" % "js" % "22.0.0.2",
153+
"org.graalvm.js" % "js-scriptengine" % "22.0.0.2",
154+
"ch.obermuhlner" % "java-scriptengine" % "2.0.0",
155+
156+
// Hydra
157+
"sh.ory.hydra" % "hydra-client" % "1.7.0",
158+
159+
// HTTP
160+
"com.squareup.okhttp3" % "okhttp" % "4.12.0",
161+
"com.squareup.okhttp3" % "logging-interceptor" % "4.12.0",
162+
"org.apache.httpcomponents" % "httpclient" % "4.5.13",
163+
164+
// RabbitMQ
165+
"com.rabbitmq" % "amqp-client" % "5.22.0",
166+
"net.liftmodules" %% "amqp_3.1" % "1.5.0",
167+
168+
// Elasticsearch
169+
"org.elasticsearch" % "elasticsearch" % "8.14.0",
170+
"com.sksamuel.elastic4s" %% "elastic4s-client-esjava" % "8.5.2",
171+
172+
// OAuth
173+
"oauth.signpost" % "signpost-commonshttp4" % "1.2.1.2",
174+
175+
// Utilities
176+
"cglib" % "cglib" % "3.3.0",
177+
"com.sun.activation" % "jakarta.activation" % "1.2.2",
178+
"com.nulab-inc" % "zxcvbn" % "1.9.0",
179+
180+
// Testing - temporarily disabled due to version incompatibility
181+
// "org.scalatest" %% "scalatest" % "2.2.6" % Test,
182+
183+
// Jackson
184+
"com.fasterxml.jackson.core" % "jackson-databind" % "2.12.7.1",
185+
186+
// Flexmark (markdown processing)
187+
"com.vladsch.flexmark" % "flexmark-profile-pegdown" % "0.40.8",
188+
"com.vladsch.flexmark" % "flexmark-util-options" % "0.64.0",
189+
190+
// Connection pool
191+
"com.zaxxer" % "HikariCP" % "4.0.3",
192+
193+
// Test dependencies
194+
"junit" % "junit" % "4.13.2" % Test,
195+
"org.scalatest" %% "scalatest" % "3.2.15" % Test,
196+
"org.seleniumhq.selenium" % "htmlunit-driver" % "2.36.0" % Test,
197+
"org.testcontainers" % "rabbitmq" % "1.20.3" % Test
198+
)
199+
)

obp-api/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,12 @@
329329
<artifactId>flexmark-util-options</artifactId>
330330
<version>0.64.0</version>
331331
</dependency>
332+
<!-- https://mvnrepository.com/artifact/org.web3j/core -->
333+
<dependency>
334+
<groupId>org.web3j</groupId>
335+
<artifactId>core</artifactId>
336+
<version>4.9.8</version>
337+
</dependency>
332338
<dependency>
333339
<groupId>com.zaxxer</groupId>
334340
<artifactId>HikariCP</artifactId>

obp-api/src/main/resources/props/sample.props.template

Lines changed: 67 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -845,8 +845,26 @@ display_internal_errors=false
845845
# -- OBP OIDC OAuth 2 / OIDC ---------------------------------------------------
846846
# To run OBP OIDC (for developer testing) see: https://github.com/OpenBankProject/OBP-OIDC
847847
# OAuth2 Provider Selection (for well-known endpoint and token validation)
848-
# Choose which OIDC provider to use: 'keycloak' or 'obp-oidc'
849-
#oauth2.oidc_provider=obp-oidc
848+
# Configure which OIDC providers should be advertised by the /well-known endpoint.
849+
#
850+
# This property accepts a comma-separated, case-insensitive list of providers.
851+
# Available values:
852+
# - keycloak → advertise Keycloak well-known URL
853+
# - obp-oidc → advertise OBP-OIDC well-known URL
854+
#
855+
# Special cases:
856+
# - (property missing) → show nothing
857+
# - "" (empty string) → show all available providers
858+
# - none → show nothing
859+
#
860+
# Examples:
861+
# oauth2.oidc_provider=keycloak
862+
# oauth2.oidc_provider=obp-oidc,keycloak
863+
# oauth2.oidc_provider=
864+
# oauth2.oidc_provider=none
865+
#
866+
# Default: property missing (show nothing)
867+
#oauth2.oidc_provider=obp-oidc,keycloak
850868

851869
# OBP-OIDC OAuth2 Provider Settings
852870
#oauth2.obp_oidc.host=http://localhost:9000
@@ -1517,6 +1535,18 @@ regulated_entities = []
15171535
# super_admin_email=tom@tesobe.com
15181536

15191537

1538+
## Ethereum Connector Configuration
1539+
## ================================
1540+
## The Ethereum connector uses JSON-RPC to communicate with Ethereum nodes.
1541+
## It supports two transaction modes:
1542+
## 1) eth_sendRawTransaction - for pre-signed transactions (recommended for production)
1543+
## 2) eth_sendTransaction - for unlocked accounts (development/test environments)
1544+
##
1545+
## Ethereum RPC endpoint URL
1546+
## Default: http://127.0.0.1:8545 (local Ethereum node)
1547+
ethereum.rpc.url=http://127.0.0.1:8545
1548+
1549+
15201550
# Note: For secure and http only settings for cookies see resources/web.xml which is mentioned in the README.md
15211551

15221552

@@ -1566,3 +1596,38 @@ redis_logging_circuit_breaker_reset_ms = 60000
15661596

15671597
# Experimental Developer Use only
15681598
experimental_become_user_that_created_consent=false
1599+
1600+
1601+
### ============================================================
1602+
### Secure Logging Masking Configuration
1603+
### Default: true (masking ON)
1604+
### Set to false to disable masking for a given pattern
1605+
### ============================================================
1606+
1607+
# OAuth2 / API secrets
1608+
securelogging_mask_secret=true
1609+
securelogging_mask_client_secret=true
1610+
1611+
# Authorization / Tokens
1612+
securelogging_mask_authorization=true
1613+
securelogging_mask_access_token=true
1614+
securelogging_mask_refresh_token=true
1615+
securelogging_mask_id_token=true
1616+
securelogging_mask_token=true
1617+
1618+
# Passwords
1619+
securelogging_mask_password=true
1620+
1621+
# API keys
1622+
securelogging_mask_api_key=true
1623+
securelogging_mask_key=true
1624+
securelogging_mask_private_key=true
1625+
1626+
# Database
1627+
securelogging_mask_jdbc=true
1628+
1629+
# Credit card
1630+
securelogging_mask_credit_card=true
1631+
1632+
# Email addresses
1633+
securelogging_mask_email=true

obp-api/src/main/scala/code/api/OBPRestHelper.scala

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,18 @@ case class APIFailureNewStyle(failMsg: String,
159159
}
160160
}
161161

162+
object ObpApiFailure {
163+
def apply(failMsg: String, failCode: Int = 400, cc: Option[CallContext] = None) = {
164+
fullBoxOrException(Empty ~> APIFailureNewStyle(failMsg, failCode, cc.map(_.toLight)))
165+
}
166+
167+
// overload for plain CallContext
168+
def apply(failMsg: String, failCode: Int, cc: CallContext) = {
169+
fullBoxOrException(Empty ~> APIFailureNewStyle(failMsg, failCode, Some(cc.toLight)))
170+
}
171+
}
172+
173+
162174
//if you change this, think about backwards compatibility! All existing
163175
//versions of the API return this failure message, so if you change it, make sure
164176
//that all stable versions retain the same behavior

0 commit comments

Comments
 (0)