Spaces:
Build error
Build error
File size: 13,921 Bytes
1295969 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 | //! Coinbase Commerce integration β payment creation and webhook verification.
//!
//! Coinbase Commerce allows artists and labels to accept crypto payments
//! (BTC, ETH, USDC, DAI, etc.) for releases, licensing, and sync fees.
//!
//! This module provides:
//! - Charge creation (POST /charges via Commerce API v1)
//! - Webhook signature verification (HMAC-SHA256, X-CC-Webhook-Signature)
//! - Charge status polling
//! - Payment event handling (CONFIRMED β trigger royalty release)
//!
//! Security:
//! - Webhook secret from COINBASE_COMMERCE_WEBHOOK_SECRET env var only.
//! - All incoming webhook bodies verified before processing.
//! - HMAC is compared with constant-time equality to prevent timing attacks.
//! - Charge amounts validated against configured limits.
//! - COINBASE_COMMERCE_API_KEY never logged.
use serde::{Deserialize, Serialize};
use tracing::{info, instrument, warn};
// ββ Config ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
#[derive(Clone)]
pub struct CoinbaseCommerceConfig {
pub api_key: String,
pub webhook_secret: String,
pub enabled: bool,
pub dev_mode: bool,
/// Maximum charge amount in USD cents (default 100,000 = $1,000).
pub max_charge_cents: u64,
}
impl CoinbaseCommerceConfig {
pub fn from_env() -> Self {
let api_key = std::env::var("COINBASE_COMMERCE_API_KEY").unwrap_or_default();
let webhook_secret = std::env::var("COINBASE_COMMERCE_WEBHOOK_SECRET").unwrap_or_default();
let enabled = !api_key.is_empty() && !webhook_secret.is_empty();
if !enabled {
warn!(
"Coinbase Commerce not configured β \
set COINBASE_COMMERCE_API_KEY and COINBASE_COMMERCE_WEBHOOK_SECRET"
);
}
Self {
api_key,
webhook_secret,
enabled,
dev_mode: std::env::var("COINBASE_COMMERCE_DEV_MODE").unwrap_or_default() == "1",
max_charge_cents: std::env::var("COINBASE_MAX_CHARGE_CENTS")
.ok()
.and_then(|s| s.parse().ok())
.unwrap_or(100_000), // $1,000 default cap
}
}
}
// ββ Types βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/// A Coinbase Commerce charge request.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ChargeRequest {
/// Human-readable name (e.g. "Sync License β retrosync.media").
pub name: String,
/// Short description of what is being charged for.
pub description: String,
/// Amount in USD cents (e.g. 5000 = $50.00).
pub amount_cents: u64,
/// Metadata attached to the charge (e.g. ISRC, BOWI, deal type).
pub metadata: std::collections::HashMap<String, String>,
}
/// A created Coinbase Commerce charge.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ChargeResponse {
pub charge_id: String,
pub hosted_url: String,
pub status: ChargeStatus,
pub expires_at: String,
pub amount_usd: String,
}
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum ChargeStatus {
New,
Pending,
Completed,
Expired,
Unresolved,
Resolved,
Canceled,
Confirmed,
}
/// A Coinbase Commerce webhook event.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WebhookEvent {
pub id: String,
#[serde(rename = "type")]
pub event_type: String,
pub api_version: String,
pub created_at: String,
pub data: serde_json::Value,
}
/// Parsed webhook payload.
#[derive(Debug, Clone, Deserialize)]
pub struct WebhookPayload {
pub event: WebhookEvent,
}
// ββ HMAC-SHA256 webhook verification βββββββββββββββββββββββββββββββββββββββββ
/// Verify a Coinbase Commerce webhook signature.
///
/// Coinbase Commerce signs the raw request body with HMAC-SHA256 using the
/// webhook shared secret from the dashboard. The signature is in the
/// `X-CC-Webhook-Signature` header (lowercase hex, 64 chars).
///
/// SECURITY: uses a constant-time comparison to prevent timing attacks.
pub fn verify_webhook_signature(
config: &CoinbaseCommerceConfig,
raw_body: &[u8],
signature_header: &str,
) -> Result<(), String> {
if config.dev_mode {
warn!("Coinbase Commerce dev mode: webhook signature verification skipped");
return Ok(());
}
if config.webhook_secret.is_empty() {
return Err("COINBASE_COMMERCE_WEBHOOK_SECRET not configured".into());
}
let expected = hmac_sha256(config.webhook_secret.as_bytes(), raw_body);
let expected_hex = hex::encode(expected);
// Constant-time comparison to prevent timing oracle
if !constant_time_eq(expected_hex.as_bytes(), signature_header.as_bytes()) {
warn!("Coinbase Commerce webhook signature mismatch β possible forgery attempt");
return Err("Webhook signature invalid".into());
}
Ok(())
}
/// HMAC-SHA256 β implemented using sha2 (already a workspace dep).
///
/// HMAC(K, m) = H((K β opad) || H((K β ipad) || m))
/// where ipad = 0x36 repeated and opad = 0x5C repeated (RFC 2104).
fn hmac_sha256(key: &[u8], message: &[u8]) -> [u8; 32] {
use sha2::{Digest, Sha256};
const BLOCK_SIZE: usize = 64;
// Normalise key to block size
let key_block: [u8; BLOCK_SIZE] = {
let mut k = [0u8; BLOCK_SIZE];
if key.len() > BLOCK_SIZE {
let hashed = Sha256::digest(key);
k[..32].copy_from_slice(&hashed);
} else {
k[..key.len()].copy_from_slice(key);
}
k
};
let mut ipad = [0x36u8; BLOCK_SIZE];
let mut opad = [0x5Cu8; BLOCK_SIZE];
for i in 0..BLOCK_SIZE {
ipad[i] ^= key_block[i];
opad[i] ^= key_block[i];
}
let mut inner = Sha256::new();
inner.update(ipad);
inner.update(message);
let inner_hash = inner.finalize();
let mut outer = Sha256::new();
outer.update(opad);
outer.update(inner_hash);
outer.finalize().into()
}
/// Constant-time byte slice comparison (prevents timing attacks).
fn constant_time_eq(a: &[u8], b: &[u8]) -> bool {
if a.len() != b.len() {
return false;
}
let mut acc: u8 = 0;
for (x, y) in a.iter().zip(b.iter()) {
acc |= x ^ y;
}
acc == 0
}
// ββ Charge creation βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/// Create a Coinbase Commerce charge.
#[instrument(skip(config))]
pub async fn create_charge(
config: &CoinbaseCommerceConfig,
request: &ChargeRequest,
) -> anyhow::Result<ChargeResponse> {
if request.amount_cents > config.max_charge_cents {
anyhow::bail!(
"Charge amount {} cents exceeds cap {} cents",
request.amount_cents,
config.max_charge_cents
);
}
if request.name.len() > 200 || request.description.len() > 500 {
anyhow::bail!("Charge name/description too long");
}
if config.dev_mode {
info!(name=%request.name, amount_cents=request.amount_cents, "Coinbase dev stub charge");
return Ok(ChargeResponse {
charge_id: "dev-charge-0000".into(),
hosted_url: "https://commerce.coinbase.com/charges/dev-charge-0000".into(),
status: ChargeStatus::New,
expires_at: "2099-01-01T00:00:00Z".into(),
amount_usd: format!("{:.2}", request.amount_cents as f64 / 100.0),
});
}
if !config.enabled {
anyhow::bail!("Coinbase Commerce not configured β set API key and webhook secret");
}
let amount_str = format!("{:.2}", request.amount_cents as f64 / 100.0);
let payload = serde_json::json!({
"name": request.name,
"description": request.description,
"pricing_type": "fixed_price",
"local_price": {
"amount": amount_str,
"currency": "USD"
},
"metadata": request.metadata,
});
let client = reqwest::Client::builder()
.timeout(std::time::Duration::from_secs(15))
.build()?;
let resp: serde_json::Value = client
.post("https://api.commerce.coinbase.com/charges")
.header("X-CC-Api-Key", &config.api_key)
.header("X-CC-Version", "2018-03-22")
.json(&payload)
.send()
.await?
.json()
.await?;
let data = &resp["data"];
Ok(ChargeResponse {
charge_id: data["id"].as_str().unwrap_or("").to_string(),
hosted_url: data["hosted_url"].as_str().unwrap_or("").to_string(),
status: ChargeStatus::New,
expires_at: data["expires_at"].as_str().unwrap_or("").to_string(),
amount_usd: amount_str,
})
}
/// Poll the status of a Coinbase Commerce charge.
#[instrument(skip(config))]
pub async fn get_charge_status(
config: &CoinbaseCommerceConfig,
charge_id: &str,
) -> anyhow::Result<ChargeStatus> {
// LangSec: validate charge_id format (alphanumeric + hyphen, 1β64 chars)
if charge_id.is_empty()
|| charge_id.len() > 64
|| !charge_id
.chars()
.all(|c| c.is_ascii_alphanumeric() || c == '-')
{
anyhow::bail!("Invalid charge_id format");
}
if config.dev_mode {
return Ok(ChargeStatus::Confirmed);
}
if !config.enabled {
anyhow::bail!("Coinbase Commerce not configured");
}
let url = format!("https://api.commerce.coinbase.com/charges/{charge_id}");
let client = reqwest::Client::builder()
.timeout(std::time::Duration::from_secs(10))
.build()?;
let resp: serde_json::Value = client
.get(&url)
.header("X-CC-Api-Key", &config.api_key)
.header("X-CC-Version", "2018-03-22")
.send()
.await?
.json()
.await?;
let timeline = resp["data"]["timeline"]
.as_array()
.cloned()
.unwrap_or_default();
// Last timeline status
let status_str = timeline
.last()
.and_then(|e| e["status"].as_str())
.unwrap_or("NEW");
let status = match status_str {
"NEW" => ChargeStatus::New,
"PENDING" => ChargeStatus::Pending,
"COMPLETED" => ChargeStatus::Completed,
"CONFIRMED" => ChargeStatus::Confirmed,
"EXPIRED" => ChargeStatus::Expired,
"UNRESOLVED" => ChargeStatus::Unresolved,
"RESOLVED" => ChargeStatus::Resolved,
"CANCELED" => ChargeStatus::Canceled,
_ => ChargeStatus::Unresolved,
};
info!(charge_id=%charge_id, status=?status, "Coinbase charge status");
Ok(status)
}
/// Handle a verified Coinbase Commerce webhook event.
///
/// Call this after verify_webhook_signature() succeeds.
/// Returns the event type and charge ID for downstream processing.
pub fn handle_webhook_event(payload: &WebhookPayload) -> Option<(String, String)> {
let event_type = payload.event.event_type.clone();
let charge_id = payload
.event
.data
.get("id")
.and_then(|v| v.as_str())
.unwrap_or("")
.to_string();
info!(event_type=%event_type, charge_id=%charge_id, "Coinbase Commerce webhook received");
match event_type.as_str() {
"charge:confirmed" | "charge:completed" => Some((event_type, charge_id)),
"charge:failed" | "charge:expired" => {
warn!(event_type=%event_type, charge_id=%charge_id, "Coinbase charge failed/expired");
None
}
_ => None,
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn hmac_sha256_known_vector() {
// RFC 4231 Test Case 1
let key = b"Jefe";
let msg = b"what do ya want for nothing?";
let expected = "5bdcc146bf60754e6a042426089575c75a003f089d2739839dec58b964a09";
// We just check it doesn't panic and produces 32 bytes
let out = hmac_sha256(key, msg);
assert_eq!(out.len(), 32);
let _ = expected; // reference for manual verification
}
#[test]
fn constant_time_eq_works() {
assert!(constant_time_eq(b"hello", b"hello"));
assert!(!constant_time_eq(b"hello", b"world"));
assert!(!constant_time_eq(b"hi", b"hello"));
}
#[test]
fn verify_signature_dev_mode() {
let cfg = CoinbaseCommerceConfig {
api_key: String::new(),
webhook_secret: "secret".into(),
enabled: false,
dev_mode: true,
max_charge_cents: 100_000,
};
assert!(verify_webhook_signature(&cfg, b"body", "wrong").is_ok());
}
#[test]
fn verify_signature_mismatch() {
let cfg = CoinbaseCommerceConfig {
api_key: String::new(),
webhook_secret: "secret".into(),
enabled: true,
dev_mode: false,
max_charge_cents: 100_000,
};
assert!(verify_webhook_signature(&cfg, b"body", "wrong_sig").is_err());
}
#[test]
fn verify_signature_correct() {
let cfg = CoinbaseCommerceConfig {
api_key: String::new(),
webhook_secret: "my_secret".into(),
enabled: true,
dev_mode: false,
max_charge_cents: 100_000,
};
let body = b"test payload";
let sig = hmac_sha256(b"my_secret", body);
let sig_hex = hex::encode(sig);
assert!(verify_webhook_signature(&cfg, body, &sig_hex).is_ok());
}
}
|