Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
pleroma
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
407
Issues
407
List
Boards
Labels
Service Desk
Milestones
Merge Requests
59
Merge Requests
59
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Pleroma
pleroma
Commits
1c6303f6
Commit
1c6303f6
authored
Aug 19, 2020
by
lain
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'mix-task-fixes' into 'develop'
Fixes for mix tasks See merge request
!2905
parents
3d5d8c05
4727030f
Pipeline
#29943
failed with stages
in 20 minutes and 13 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
16 deletions
+27
-16
lib/mix/pleroma.ex
lib/mix/pleroma.ex
+1
-1
lib/mix/tasks/pleroma/emoji.ex
lib/mix/tasks/pleroma/emoji.ex
+6
-4
lib/pleroma/emails/user_email.ex
lib/pleroma/emails/user_email.ex
+20
-11
No files found.
lib/mix/pleroma.ex
View file @
1c6303f6
...
...
@@ -14,7 +14,7 @@ defmodule Mix.Pleroma do
:swoosh
,
:timex
]
@cachex_children
[
"object"
,
"user"
]
@cachex_children
[
"object"
,
"user"
,
"scrubber"
]
@doc
"Common functions to be reused in mix tasks"
def
start_pleroma
do
Pleroma
.
Config
.
Holder
.
save_default
()
...
...
lib/mix/tasks/pleroma/emoji.ex
View file @
1c6303f6
...
...
@@ -15,7 +15,7 @@ def run(["ls-packs" | args]) do
{
options
,
[],
[]}
=
parse_global_opts
(
args
)
url_or_path
=
options
[
:manifest
]
||
default_manifest
()
manifest
=
fetch_and_decode
(
url_or_path
)
manifest
=
fetch_and_decode
!
(
url_or_path
)
Enum
.
each
(
manifest
,
fn
{
name
,
info
}
->
to_print
=
[
...
...
@@ -42,7 +42,7 @@ def run(["get-packs" | args]) do
url_or_path
=
options
[
:manifest
]
||
default_manifest
()
manifest
=
fetch_and_decode
(
url_or_path
)
manifest
=
fetch_and_decode
!
(
url_or_path
)
for
pack_name
<-
pack_names
do
if
Map
.
has_key?
(
manifest
,
pack_name
)
do
...
...
@@ -92,7 +92,7 @@ def run(["get-packs" | args]) do
])
)
files
=
fetch_and_decode
(
files_loc
)
files
=
fetch_and_decode
!
(
files_loc
)
IO
.
puts
(
IO
.
ANSI
.
format
([
"Unpacking "
,
:bright
,
pack_name
]))
...
...
@@ -243,9 +243,11 @@ def run(["reload"]) do
IO
.
puts
(
"Emoji packs have been reloaded."
)
end
defp
fetch_and_decode
(
from
)
do
defp
fetch_and_decode
!
(
from
)
do
with
{
:ok
,
json
}
<-
fetch
(
from
)
do
Jason
.
decode!
(
json
)
else
{
:error
,
error
}
->
raise
"
#{
from
}
cannot be fetched. Error:
#{
error
}
occur."
end
end
...
...
lib/pleroma/emails/user_email.ex
View file @
1c6303f6
...
...
@@ -107,25 +107,34 @@ def digest_email(user) do
|>
Enum
.
filter
(
&
(
&1
.
activity
.
data
[
"type"
]
==
"Create"
))
|>
Enum
.
map
(
fn
notification
->
object
=
Pleroma
.
Object
.
normalize
(
notification
.
activity
)
object
=
update_in
(
object
.
data
[
"content"
],
&
format_links
/
1
)
%{
data:
notification
,
object:
object
,
from:
User
.
get_by_ap_id
(
notification
.
activity
.
actor
)
}
if
not
is_nil
(
object
)
do
object
=
update_in
(
object
.
data
[
"content"
],
&
format_links
/
1
)
%{
data:
notification
,
object:
object
,
from:
User
.
get_by_ap_id
(
notification
.
activity
.
actor
)
}
end
end
)
|>
Enum
.
filter
(
&
&1
)
followers
=
notifications
|>
Enum
.
filter
(
&
(
&1
.
activity
.
data
[
"type"
]
==
"Follow"
))
|>
Enum
.
map
(
fn
notification
->
%{
data:
notification
,
object:
Pleroma
.
Object
.
normalize
(
notification
.
activity
),
from:
User
.
get_by_ap_id
(
notification
.
activity
.
actor
)
}
from
=
User
.
get_by_ap_id
(
notification
.
activity
.
actor
)
if
not
is_nil
(
from
)
do
%{
data:
notification
,
object:
Pleroma
.
Object
.
normalize
(
notification
.
activity
),
from:
User
.
get_by_ap_id
(
notification
.
activity
.
actor
)
}
end
end
)
|>
Enum
.
filter
(
&
&1
)
unless
Enum
.
empty?
(
mentions
)
do
styling
=
Config
.
get
([
__MODULE__
,
:styling
])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment