-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.rb
70 lines (56 loc) · 1.57 KB
/
index.rb
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
require "sinatra"
require "dub"
set :port, 3000
set :bind, "0.0.0.0"
# Initialize the Dub SDK Client
dub = ::OpenApiSDK::Dub.new
dub.config_security(
::OpenApiSDK::Shared::Security.new(
token: ENV['DUB_API_KEY'],
)
)
# Create a link on Dub
post "/links" do
req = ::OpenApiSDK::Operations::CreateLinkRequest.new(
request_body: ::OpenApiSDK::Operations::CreateLinkRequestBody.new(
url: 'https://google.com'
)
)
res = dub.links.create(req)
content_type :json
res.raw_response.body
end
# Upsert a link (Create if it doesn't exist, Update if it does)
put "/links" do
req = ::OpenApiSDK::Operations::UpsertLinkRequest.new(
request_body: ::OpenApiSDK::Operations::UpsertLinkRequestBody.new(
url: "https://google.com",
),
)
res = dub.links.upsert(req)
content_type :json
res.raw_response.body
end
# Update a link on Dub
patch "/links" do
req = ::OpenApiSDK::Operations::UpdateLinkRequest.new(
link_id: "clyci5h0w000511sjmu0tyjv9", # Replace with your link_id
request_body: ::OpenApiSDK::Operations::UpdateLinkRequestBody.new(
url: 'https://google.uk'
)
)
res = dub.links.update(req)
content_type :json
res.raw_response.body
end
# Retrieve analytics for a link
get "/analytics" do
req = ::OpenApiSDK::Operations::RetrieveAnalyticsRequest.new(
link_id: "clx1gvi9o0005hf5momm6f7hj", # Replace with your link_id
interval: ::OpenApiSDK::Operations::Interval::SEVEND,
group_by: ::OpenApiSDK::Operations::GroupBy::TIMESERIES
)
res = dub.analytics.retrieve(req)
content_type :json
res.raw_response.body
end