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
use crate::d1::D1Database;
use crate::error::Error;
use crate::Queue;
use crate::{durable::ObjectNamespace, Bucket, DynamicDispatcher, Fetcher, Result};
use js_sys::Object;
use wasm_bindgen::{prelude::*, JsCast, JsValue};
use worker_kv::KvStore;
#[wasm_bindgen]
extern "C" {
#[derive(Debug)]
pub type Env;
}
impl Env {
fn get_binding<T: EnvBinding>(&self, name: &str) -> Result<T> {
let binding = js_sys::Reflect::get(self, &JsValue::from(name))
.map_err(|_| Error::JsError(format!("Env does not contain binding `{}`", name)))?;
if binding.is_undefined() {
Err(format!("Binding `{}` is undefined.", name).into())
} else {
T::get(binding)
}
}
pub fn secret(&self, binding: &str) -> Result<Secret> {
self.get_binding::<Secret>(binding)
}
pub fn var(&self, binding: &str) -> Result<Var> {
self.get_binding::<Var>(binding)
}
pub fn kv(&self, binding: &str) -> Result<KvStore> {
KvStore::from_this(self, binding).map_err(From::from)
}
pub fn durable_object(&self, binding: &str) -> Result<ObjectNamespace> {
self.get_binding(binding)
}
pub fn dynamic_dispatcher(&self, binding: &str) -> Result<DynamicDispatcher> {
self.get_binding(binding)
}
pub fn service(&self, binding: &str) -> Result<Fetcher> {
self.get_binding(binding)
}
pub fn queue(&self, binding: &str) -> Result<Queue> {
self.get_binding(binding)
}
pub fn d1(&self, binding: &str) -> Result<D1Database> {
self.get_binding(binding)
}
pub fn bucket(&self, binding: &str) -> Result<Bucket> {
self.get_binding(binding)
}
}
pub trait EnvBinding: Sized + JsCast {
const TYPE_NAME: &'static str;
fn get(val: JsValue) -> Result<Self> {
let obj = Object::from(val);
if obj.constructor().name() == Self::TYPE_NAME {
Ok(obj.unchecked_into())
} else {
Err(format!(
"Binding cannot be cast to the type {} from {}",
Self::TYPE_NAME,
obj.constructor().name()
)
.into())
}
}
}
pub struct StringBinding(JsValue);
impl EnvBinding for StringBinding {
const TYPE_NAME: &'static str = "String";
}
impl JsCast for StringBinding {
fn instanceof(val: &JsValue) -> bool {
val.is_string()
}
fn unchecked_from_js(val: JsValue) -> Self {
StringBinding(val)
}
fn unchecked_from_js_ref(val: &JsValue) -> &Self {
unsafe { &*(val as *const JsValue as *const Self) }
}
}
impl AsRef<JsValue> for StringBinding {
fn as_ref(&self) -> &wasm_bindgen::JsValue {
unsafe { &*(&self.0 as *const JsValue) }
}
}
impl From<JsValue> for StringBinding {
fn from(val: JsValue) -> Self {
StringBinding(val)
}
}
impl From<StringBinding> for JsValue {
fn from(sec: StringBinding) -> Self {
sec.0
}
}
impl ToString for StringBinding {
fn to_string(&self) -> String {
self.0.as_string().unwrap_or_default()
}
}
pub type Secret = StringBinding;
pub type Var = StringBinding;