Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
imagehoster
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
hive
imagehoster
Commits
31c581d5
Commit
31c581d5
authored
10 months ago
by
Rishi Panthee
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into rishi556/Switch-to-file-type
parents
aa58eadc
a4e142be
No related branches found
No related tags found
1 merge request
!16
Switch To File-Type For Detecting file type
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
Dockerfile
+6
-1
6 additions, 1 deletion
Dockerfile
config/default.toml
+2
-0
2 additions, 0 deletions
config/default.toml
src/cover.ts
+64
-0
64 additions, 0 deletions
src/cover.ts
src/proxy.ts
+15
-1
15 additions, 1 deletion
src/proxy.ts
src/routes.ts
+2
-0
2 additions, 0 deletions
src/routes.ts
with
89 additions
and
2 deletions
Dockerfile
+
6
−
1
View file @
31c581d5
...
...
@@ -12,6 +12,11 @@ RUN apk add \
make
\
py-pip
RUN
apk add
\
--no-cache
\
--repository
https://dl-3.alpinelinux.org/alpine/edge/testing/
\
vips-dev
# install application dependencies
COPY
package.json yarn.lock ./
RUN
JOBS
=
max yarn
install
--non-interactive
--frozen-lockfile
...
...
@@ -31,7 +36,7 @@ WORKDIR /app
RUN
apk add
\
--no-cache
\
--repository
https://alpine.global.ssl.fastly.net/alpine/v3.10/community
\
fftw
fftw
vips
COPY
--from=build-stage /app/config config
COPY
--from=build-stage /app/lib lib
COPY
--from=build-stage /app/node_modules node_modules
...
...
This diff is collapsed.
Click to expand it.
config/default.toml
+
2
−
0
View file @
31c581d5
...
...
@@ -20,6 +20,8 @@ service_url = 'http://localhost:8800'
# default user avatar, should be a png minimum 512x512
default_avatar
=
'https://images.hive.blog/DQmb2HNSGKN3pakguJ4ChCRjgkVuDN9WniFRPmrxoJ4sjR4'
# default user cover, should be a png minimum 1344x240
default_cover
=
'https://images.ecency.com/DQmdA9wjRyGmDwrTza59yLSjCWMEc9sFD5sC4ZU5kL9UMqo/cover_fallback_day.png'
# log level to output at
log_level
=
'debug'
...
...
This diff is collapsed.
Click to expand it.
src/cover.ts
0 → 100644
+
64
−
0
View file @
31c581d5
/** Serve user cover images. */
import
*
as
config
from
'
config
'
import
{
base58Enc
}
from
'
./utils
'
import
{
Account
}
from
'
@hiveio/dhive
'
import
{
KoaContext
,
rpcClient
}
from
'
./common
'
import
{
APIError
}
from
'
./error
'
const
DefaultCover
=
config
.
get
(
'
default_cover
'
)
as
string
const
sizeW
=
1344
const
sizeH
=
240
export
async
function
coverHandler
(
ctx
:
KoaContext
)
{
ctx
.
tag
({
handler
:
'
cover
'
})
APIError
.
assert
(
ctx
.
method
===
'
GET
'
,
APIError
.
Code
.
InvalidMethod
)
APIError
.
assertParams
(
ctx
.
params
,
[
'
username
'
])
const
username
=
ctx
.
params
[
'
username
'
]
interface
ExtendedAccount
extends
Account
{
posting_json_metadata
?:
string
}
const
[
account
]:
ExtendedAccount
[]
=
await
rpcClient
.
database
.
getAccounts
([
username
])
APIError
.
assert
(
account
,
APIError
.
Code
.
NoSuchAccount
)
let
metadata
// read from `posting_json_metadata` if version flag is set
if
(
account
.
posting_json_metadata
)
{
try
{
metadata
=
JSON
.
parse
(
account
.
posting_json_metadata
)
if
(
!
metadata
.
profile
||
!
metadata
.
profile
.
version
)
{
metadata
=
{}
}
}
catch
(
error
)
{
ctx
.
log
.
debug
(
error
,
'
unable to parse json_metadata for %s
'
,
account
.
name
)
metadata
=
{}
}
}
// otherwise, fall back to reading from `json_metadata`
if
(
!
metadata
||
!
metadata
.
profile
)
{
try
{
metadata
=
JSON
.
parse
(
account
.
json_metadata
)
}
catch
(
error
)
{
ctx
.
log
.
debug
(
error
,
'
unable to parse json_metadata for %s
'
,
account
.
name
)
metadata
=
{}
}
}
let
coverUrl
:
string
=
DefaultCover
if
(
metadata
.
profile
&&
metadata
.
profile
.
cover_image
&&
metadata
.
profile
.
cover_image
.
match
(
/^https
?
:
\/\/
/
))
{
coverUrl
=
metadata
.
profile
.
cover_image
}
ctx
.
set
(
'
Cache-Control
'
,
'
public,max-age=600
'
)
ctx
.
redirect
(
`/p/
${
base58Enc
(
coverUrl
)
}
?width=
${
sizeW
}
&height=
${
sizeH
}
`
)
}
This diff is collapsed.
Click to expand it.
src/proxy.ts
+
15
−
1
View file @
31c581d5
...
...
@@ -242,7 +242,21 @@ export async function proxyHandler(ctx: KoaContext) {
user_agent
:
'
HiveProxy/1.0 (+https://gitlab.syncad.com/hive/imagehoster)
'
,
}
as
any
)
}
catch
(
cause
)
{
throw
new
APIError
({
cause
,
code
:
APIError
.
Code
.
UpstreamError
})
// old or non existing images, try to get from steemitimages server
try
{
ctx
.
log
.
debug
({
url
:
url
.
toString
()},
'
fetching from steemit server
'
)
res
=
await
fetchUrl
(
`https://steemitimages.com/0x0/
${
url
.
toString
()}
`
,
{
open_timeout
:
5
*
1000
,
response_timeout
:
5
*
1000
,
read_timeout
:
60
*
1000
,
compressed
:
true
,
parse_response
:
false
,
follow_max
:
5
,
user_agent
:
'
SteemitProxy/1.0 (+https://github.com/steemit/imagehoster)
'
,
}
as
any
)
}
catch
(
cause
)
{
throw
new
APIError
({
cause
,
code
:
APIError
.
Code
.
UpstreamError
})
}
}
APIError
.
assert
(
res
.
bytes
<=
MAX_IMAGE_SIZE
,
APIError
.
Code
.
PayloadTooLarge
)
...
...
This diff is collapsed.
Click to expand it.
src/routes.ts
+
2
−
0
View file @
31c581d5
...
...
@@ -3,6 +3,7 @@
import
*
as
Router
from
'
koa-router
'
import
{
avatarHandler
}
from
'
./avatar
'
import
{
coverHandler
}
from
'
./cover
'
import
{
KoaContext
}
from
'
./common
'
import
{
legacyProxyHandler
}
from
'
./legacy-proxy
'
import
{
proxyHandler
}
from
'
./proxy
'
...
...
@@ -22,6 +23,7 @@ async function healthcheck(ctx: KoaContext) {
router
.
get
(
'
/
'
,
healthcheck
as
any
)
router
.
get
(
'
/.well-known/healthcheck.json
'
,
healthcheck
as
any
)
router
.
get
(
'
/u/:username/avatar/:size?
'
,
avatarHandler
as
any
)
router
.
get
(
'
/u/:username/cover
'
,
coverHandler
as
any
)
router
.
post
(
'
/hs/:accesstoken
'
,
uploadHsHandler
as
any
)
router
.
post
(
'
/:username/:signature
'
,
uploadHandler
as
any
)
router
.
post
(
'
/cs/:username/:signature
'
,
uploadCsHandler
as
any
)
...
...
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