Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
admin-fe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Pleroma
admin-fe
Commits
32432e1f
Commit
32432e1f
authored
5 years ago
by
Angelina Filippova
Browse files
Options
Downloads
Patches
Plain Diff
Update emoji api functions
parent
ee20731a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!112
Update emoji API
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/api/emojiPacks.js
+57
-48
57 additions, 48 deletions
src/api/emojiPacks.js
with
57 additions
and
48 deletions
src/api/emojiPacks.js
+
57
−
48
View file @
32432e1f
...
...
@@ -2,38 +2,80 @@ import request from '@/utils/request'
import
{
getToken
}
from
'
@/utils/auth
'
import
{
baseName
}
from
'
./utils
'
export
async
function
deletePack
(
host
,
token
,
name
)
{
export
async
function
addNewEmojiFile
(
packName
,
file
,
shortcode
,
filename
,
host
,
token
)
{
return
await
request
({
baseURL
:
baseName
(
host
),
url
:
`/api/pleroma/emoji/packs/
${
packName
}
/files`
,
method
:
'
post
'
,
headers
:
authHeaders
(
token
),
data
:
{
file
,
shortcode
:
shortcode
.
trim
()
!==
''
?
shortcode
:
null
,
filename
:
filename
.
trim
()
!==
''
?
filename
:
null
}
})
}
export
function
addressOfEmojiInPack
(
host
,
packName
,
name
)
{
return
`
${
baseName
(
host
)}
/emoji/
${
packName
}
/
${
name
}
`
}
export
async
function
createPack
(
host
,
token
,
packName
)
{
return
await
request
({
baseURL
:
baseName
(
host
),
url
:
`/api/pleroma/emoji/packs/
${
packName
}
`
,
method
:
'
post
'
,
headers
:
authHeaders
(
token
)
})
}
export
async
function
deleteEmojiFile
(
packName
,
shortcode
,
host
,
token
)
{
return
await
request
({
baseURL
:
baseName
(
host
),
url
:
`/api/pleroma/emoji/packs/
${
packName
}
/files`
,
method
:
'
delete
'
,
headers
:
authHeaders
(
token
),
data
:
{
shortcode
}
})
}
export
async
function
deletePack
(
host
,
token
,
packName
)
{
return
await
request
({
baseURL
:
baseName
(
host
),
url
:
`/api/pleroma/emoji/packs/
${
n
ame
}
`
,
url
:
`/api/pleroma/emoji/packs/
${
packN
ame
}
`
,
method
:
'
delete
'
,
headers
:
authHeaders
(
token
)
})
}
export
async
function
reloadEmoji
(
host
,
token
)
{
export
async
function
downloadFrom
(
host
,
instance
,
packName
,
as
,
token
)
{
if
(
as
.
trim
()
===
''
)
{
as
=
null
}
return
await
request
({
baseURL
:
baseName
(
host
),
url
:
'
/api/pleroma/
admin/reload_emoji
'
,
url
:
'
/api/pleroma/
emoji/packs/download
'
,
method
:
'
post
'
,
headers
:
authHeaders
(
token
)
headers
:
authHeaders
(
token
),
data
:
{
url
:
baseName
(
instance
),
name
:
packName
,
as
},
timeout
:
0
})
}
export
async
function
importFromFS
(
host
,
token
)
{
export
async
function
fetchPack
(
packName
,
host
,
token
)
{
return
await
request
({
baseURL
:
baseName
(
host
),
url
:
'
/api/pleroma/emoji/packs/
import
'
,
url
:
`
/api/pleroma/emoji/packs/
${
packName
}
`
,
method
:
'
get
'
,
headers
:
authHeaders
(
token
)
})
}
export
async
function
createPack
(
host
,
token
,
name
)
{
export
async
function
importFromFS
(
host
,
token
)
{
return
await
request
({
baseURL
:
baseName
(
host
),
url
:
`
/api/pleroma/emoji/packs/
${
name
}
`
,
method
:
'
pos
t
'
,
url
:
'
/api/pleroma/emoji/packs/
import
'
,
method
:
'
ge
t
'
,
headers
:
authHeaders
(
token
)
})
}
...
...
@@ -55,25 +97,19 @@ export async function listRemotePacks(host, token, instance) {
})
}
export
async
function
downloadFrom
(
host
,
instance
,
pack_name
,
as
,
token
)
{
if
(
as
.
trim
()
===
''
)
{
as
=
null
}
export
async
function
reloadEmoji
(
host
,
token
)
{
return
await
request
({
baseURL
:
baseName
(
host
),
url
:
'
/api/pleroma/
emoji/packs/download
'
,
url
:
'
/api/pleroma/
admin/reload_emoji
'
,
method
:
'
post
'
,
headers
:
authHeaders
(
token
),
data
:
{
url
:
baseName
(
instance
),
name
:
pack_name
,
as
},
timeout
:
0
headers
:
authHeaders
(
token
)
})
}
export
async
function
savePackMetadata
(
host
,
token
,
n
ame
,
metadata
)
{
export
async
function
savePackMetadata
(
host
,
token
,
packN
ame
,
metadata
)
{
return
await
request
({
baseURL
:
baseName
(
host
),
url
:
`/api/pleroma/emoji/packs/
${
n
ame
}
`
,
url
:
`/api/pleroma/emoji/packs/
${
packN
ame
}
`
,
method
:
'
patch
'
,
headers
:
authHeaders
(
token
),
data
:
{
metadata
},
...
...
@@ -81,19 +117,6 @@ export async function savePackMetadata(host, token, name, metadata) {
})
}
export
async
function
addNewEmojiFile
(
packName
,
file
,
shortcode
,
filename
,
host
,
token
)
{
return
await
request
({
baseURL
:
baseName
(
host
),
url
:
`/api/pleroma/emoji/packs/
${
packName
}
/files`
,
method
:
'
post
'
,
headers
:
authHeaders
(
token
),
data
:
{
file
,
shortcode
:
shortcode
.
trim
()
!==
''
?
shortcode
:
null
,
filename
:
filename
.
trim
()
!==
''
?
filename
:
null
}
})
}
export
async
function
updateEmojiFile
(
packName
,
shortcode
,
newShortcode
,
newFilename
,
force
,
host
,
token
)
{
return
await
request
({
baseURL
:
baseName
(
host
),
...
...
@@ -104,18 +127,4 @@ export async function updateEmojiFile(packName, shortcode, newShortcode, newFile
})
}
export
async
function
deleteEmojiFile
(
packName
,
shortcode
,
host
,
token
)
{
return
await
request
({
baseURL
:
baseName
(
host
),
url
:
`/api/pleroma/emoji/packs/
${
packName
}
/files`
,
method
:
'
delete
'
,
headers
:
authHeaders
(
token
),
data
:
{
shortcode
}
})
}
export
function
addressOfEmojiInPack
(
host
,
packName
,
name
)
{
return
`
${
baseName
(
host
)}
/emoji/
${
packName
}
/
${
name
}
`
}
const
authHeaders
=
(
token
)
=>
token
?
{
'
Authorization
'
:
`Bearer
${
getToken
()}
`
}
:
{}
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