Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
336
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
24
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TransFem.org
Sharkey
Commits
9bc07c1a
Commit
9bc07c1a
authored
5 years ago
by
和風ドレッシング
Committed by
syuilo
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Media Proxy を実装 (#5649)
* Media Proxy を実装 * サンプルを追加
parent
cbbdc987
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.config/example.yml
+3
-0
3 additions, 0 deletions
.config/example.yml
src/config/types.ts
+2
-0
2 additions, 0 deletions
src/config/types.ts
src/models/repositories/drive-file.ts
+6
-1
6 additions, 1 deletion
src/models/repositories/drive-file.ts
with
11 additions
and
1 deletion
.config/example.yml
+
3
−
0
View file @
9bc07c1a
...
...
@@ -140,3 +140,6 @@ autoAdmin: true
#proxySmtp: http://127.0.0.1:3128 # use HTTP/1.1 CONNECT
#proxySmtp: socks4://127.0.0.1:1080 # use SOCKS4
#proxySmtp: socks5://127.0.0.1:1080 # use SOCKS5
# Media Proxy
#mediaProxy: http://127.0.0.1:3000
This diff is collapsed.
Click to expand it.
src/config/types.ts
+
2
−
0
View file @
9bc07c1a
...
...
@@ -52,6 +52,8 @@ export type Source = {
host
:
string
;
port
:
number
;
};
mediaProxy
?:
string
;
};
/**
...
...
This diff is collapsed.
Click to expand it.
src/models/repositories/drive-file.ts
+
6
−
1
View file @
9bc07c1a
...
...
@@ -6,6 +6,7 @@ import { toPuny } from '../../misc/convert-host';
import
{
ensure
}
from
'
../../prelude/ensure
'
;
import
{
awaitAll
}
from
'
../../prelude/await-all
'
;
import
{
SchemaType
}
from
'
../../misc/schema
'
;
import
config
from
'
../../config
'
;
export
type
PackedDriveFile
=
SchemaType
<
typeof
packedDriveFileSchema
>
;
...
...
@@ -22,7 +23,11 @@ export class DriveFileRepository extends Repository<DriveFile> {
}
public
getPublicUrl
(
file
:
DriveFile
,
thumbnail
=
false
):
string
|
null
{
return
thumbnail
?
(
file
.
thumbnailUrl
||
file
.
webpublicUrl
||
null
)
:
(
file
.
webpublicUrl
||
file
.
url
);
let
url
=
thumbnail
?
(
file
.
thumbnailUrl
||
file
.
webpublicUrl
||
null
)
:
(
file
.
webpublicUrl
||
file
.
url
);
if
(
file
.
src
!==
null
&&
file
.
userHost
!==
null
&&
config
.
mediaProxy
!==
null
)
{
url
=
`
${
config
.
mediaProxy
}
/
${
thumbnail
?
'
thumbnail
'
:
''
}
?url=
${
file
.
src
}
`
;
}
return
url
;
}
public
async
clacDriveUsageOf
(
user
:
User
[
'
id
'
]
|
User
):
Promise
<
number
>
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment