Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: cloudflare stream #321

Merged
merged 34 commits into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
01eb7a7
feat: cloudflare stream
annahassel Apr 1, 2024
35cdf80
fix: create resumable url opts
annahassel Apr 2, 2024
63a46f4
chore: upgrade deps
annahassel Apr 2, 2024
a05923b
fix(ci): add cloudflare-stream secret
annahassel Apr 2, 2024
ebf93ce
fix(ci): remove cloudflare-stream secret
annahassel Apr 2, 2024
bd449d6
fix: atom to Buffer.from
annahassel Apr 2, 2024
f639ea0
fix: select provider
annahassel Apr 2, 2024
35a0d3f
feat: webhook action
annahassel Apr 2, 2024
61646fb
fix: await for finish
annahassel Apr 2, 2024
053ba75
feat: init webhook
annahassel Apr 3, 2024
9f1ed2b
feat: simple upload
annahassel Apr 3, 2024
d600527
fix: added prefix for the file name to avoid collisions in redis
annahassel Apr 4, 2024
b8e4c45
fix: log webhook error
annahassel Apr 4, 2024
7cce5f0
feat: clone action
annahassel Apr 4, 2024
6f30143
feat: add preview to respose
annahassel Apr 5, 2024
fa746fe
fix: test
annahassel Apr 5, 2024
03d897b
fix: github wake up
annahassel Apr 5, 2024
fdef1c6
fix: preview
annahassel Apr 5, 2024
fd5bbf0
fix: access action
annahassel Apr 9, 2024
563a267
fix: files.access
annahassel Apr 16, 2024
0f1a7fc
fix: linter
annahassel Apr 16, 2024
eec0ca1
fix: tests
annahassel Apr 17, 2024
1fa77e3
feat: save video meta
annahassel Apr 17, 2024
25fba0d
fix: update deps
annahassel Aug 12, 2024
52e1ea5
fix: inc timeout in tests
annahassel Aug 12, 2024
02b518a
feat: custom preview on GCS for cloudflare-stream (#326)
annahassel Aug 19, 2024
6108ca2
feat: use direct upload provider if requested
AVVS Aug 21, 2024
d7d5699
feat: support direct bucket upload
AVVS Aug 21, 2024
a7637e1
fix: origin
annahassel Aug 22, 2024
5b18071
fix: overrideNotificationUrl
annahassel Aug 23, 2024
11a5189
fix: tests
annahassel Aug 23, 2024
fbaba06
fix: video content lenght max 524288000
annahassel Aug 26, 2024
0a0294a
fix: allowed origins bug
annahassel Aug 29, 2024
1cfb2f3
fix: provider by bucket
annahassel Aug 30, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .mocharc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"timeout": 15000,
"timeout": 100000,
"bail": true,
"report": "spec",
"forbid-only": false,
Expand Down
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,11 @@
"@microfleet/plugin-validator": "^4.0.1",
"@microfleet/transport-amqp": "^17.8.2",
"@microfleet/utils": "^4.0.1",
"@sentry/node": "^8.24.0",
"ali-oss": "^6.20.0",
"@sentry/node": "^8.25.0",
"ali-oss": "^6.21.0",
"bl": "^6.0.14",
"bluebird": "^3.7.2",
"cloudflare": "^3.5.0",
"cluster-key-slot": "^1.1.2",
"co": "^4.6.0",
"common-errors": "^1.2.0",
Expand All @@ -69,7 +70,9 @@
"ms-perf": "^2.1.0",
"prom-client": "^15.1.3",
"redis-filtered-sort": "^2.5.0",
"undici": "^6.19.5",
"safe-stable-stringify": "^2.4.3",
"tus-js-client": "^4.1.0",
"undici": "^6.19.8",
"uuid": "^10.0.0",
"yargs": "^17.7.2"
},
Expand All @@ -94,7 +97,7 @@
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-unicorn": "^55.0.0",
"json": "^11.0.0",
"mocha": "^10.7.0",
"mocha": "^10.7.3",
"rfdc": "^1.4.1",
"rimraf": "^6.0.1",
"semantic-release": "^24.0.0",
Expand Down
Loading