Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pleroma
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
kaniini
pleroma
Commits
69f1024b
Commit
69f1024b
authored
7 years ago
by
lain
Browse files
Options
Downloads
Patches
Plain Diff
Add basic channel state.
parent
d01243c1
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/pleroma/application.ex
+1
-0
1 addition, 0 deletions
lib/pleroma/application.ex
lib/pleroma/web/chat_channel.ex
+32
-1
32 additions, 1 deletion
lib/pleroma/web/chat_channel.ex
with
33 additions
and
1 deletion
lib/pleroma/application.ex
+
1
−
0
View file @
69f1024b
...
...
@@ -20,6 +20,7 @@ defmodule Pleroma.Application do
limit:
2500
]]),
worker
(
Pleroma
.
Web
.
Federator
,
[]),
worker
(
Pleroma
.
Web
.
ChatChannel
.
ChatChannelState
,
[]),
]
++
if
Mix
.
env
==
:test
,
do
:
[],
else
:
[
worker
(
Pleroma
.
Web
.
Streamer
,
[])]
...
...
This diff is collapsed.
Click to expand it.
lib/pleroma/web/chat_channel.ex
+
32
−
1
View file @
69f1024b
defmodule
Pleroma
.
Web
.
ChatChannel
do
use
Phoenix
.
Channel
alias
Pleroma
.
Web
.
ChatChannel
.
ChatChannelState
def
join
(
"chat:public"
,
_message
,
socket
)
do
send
(
self
(),
:after_join
)
{
:ok
,
socket
}
end
def
handle_info
(
:after_join
,
socket
)
do
push
socket
,
"messages"
,
%{
messages:
ChatChannelState
.
messages
()}
{
:noreply
,
socket
}
end
def
handle_in
(
"new_msg"
,
%{
"text"
=>
text
},
socket
)
do
author
=
socket
.
assigns
[
:user
]
author
=
Pleroma
.
Web
.
MastodonAPI
.
AccountView
.
render
(
"account.json"
,
user:
author
)
broadcast!
socket
,
"new_msg"
,
%{
text:
text
,
author:
author
}
message
=
ChatChannelState
.
add_message
(%{
text:
text
,
author:
author
})
broadcast!
socket
,
"new_msg"
,
message
{
:noreply
,
socket
}
end
end
defmodule
Pleroma
.
Web
.
ChatChannel
.
ChatChannelState
do
use
Agent
@max_messages
20
def
start_link
do
Agent
.
start_link
(
fn
->
%{
max_id:
1
,
messages:
[]}
end
,
name:
__MODULE__
)
end
def
add_message
(
message
)
do
Agent
.
get_and_update
(
__MODULE__
,
fn
state
->
id
=
state
[
:max_id
]
+
1
message
=
Map
.
put
(
message
,
"id"
,
id
)
messages
=
[
message
|
state
[
:messages
]]
|>
Enum
.
take
(
@max_messages
)
{
message
,
%{
max_id:
id
,
messages:
messages
}}
end
)
end
def
messages
()
do
Agent
.
get
(
__MODULE__
,
fn
state
->
state
[
:messages
]
|>
Enum
.
reverse
end
)
end
end
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