Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
biboumi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
88
Issues
88
List
Boards
Labels
Service Desk
Milestones
Merge Requests
7
Merge Requests
7
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
louiz’
biboumi
Commits
7ba2d0fb
Commit
7ba2d0fb
authored
Nov 10, 2013
by
louiz’
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle the ACTION (/me) IRC command, both ways
parent
a992e281
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
3 deletions
+17
-3
src/bridge/bridge.cpp
src/bridge/bridge.cpp
+17
-3
No files found.
src/bridge/bridge.cpp
View file @
7ba2d0fb
...
...
@@ -4,9 +4,11 @@
#include <network/poller.hpp>
#include <utils/encoding.hpp>
#include <iostream>
static
const
char
*
action_prefix
=
"
\01
ACTION "
;
static
const
size_t
action_prefix_len
=
8
;
Bridge
::
Bridge
(
const
std
::
string
&
user_jid
,
XmppComponent
*
xmpp
,
Poller
*
poller
)
:
user_jid
(
user_jid
),
xmpp
(
xmpp
),
...
...
@@ -76,7 +78,10 @@ void Bridge::send_channel_message(const Iid& iid, const std::string& body)
std
::
cout
<<
"Cannot send message: no client exist for server "
<<
iid
.
server
<<
std
::
endl
;
return
;
}
irc
->
send_channel_message
(
iid
.
chan
,
body
);
if
(
body
.
substr
(
0
,
4
)
==
"/me "
)
irc
->
send_channel_message
(
iid
.
chan
,
action_prefix
+
body
.
substr
(
4
)
+
"
\01
"
);
else
irc
->
send_channel_message
(
iid
.
chan
,
body
);
// We do not need to convert body to utf-8: it comes from our XMPP server,
// so it's ok to send it back
this
->
xmpp
->
send_muc_message
(
iid
.
chan
+
"%"
+
iid
.
server
,
irc
->
get_own_nick
(),
body
,
this
->
user_jid
);
...
...
@@ -91,7 +96,16 @@ void Bridge::leave_irc_channel(Iid&& iid, std::string&& status_message)
void
Bridge
::
send_muc_message
(
const
Iid
&
iid
,
const
std
::
string
&
nick
,
const
std
::
string
&
body
)
{
this
->
xmpp
->
send_muc_message
(
iid
.
chan
+
"%"
+
iid
.
server
,
nick
,
this
->
sanitize_for_xmpp
(
body
),
this
->
user_jid
);
const
std
::
string
&
utf8_body
=
this
->
sanitize_for_xmpp
(
body
);
if
(
utf8_body
.
substr
(
0
,
action_prefix_len
)
==
action_prefix
)
{
// Special case for ACTION (/me) messages:
// "\01ACTION goes out\01" == "/me goes out"
this
->
xmpp
->
send_muc_message
(
iid
.
chan
+
"%"
+
iid
.
server
,
nick
,
std
::
string
(
"/me "
)
+
utf8_body
.
substr
(
action_prefix_len
,
utf8_body
.
size
()
-
action_prefix_len
-
1
),
this
->
user_jid
);
}
else
this
->
xmpp
->
send_muc_message
(
iid
.
chan
+
"%"
+
iid
.
server
,
nick
,
utf8_body
,
this
->
user_jid
);
}
void
Bridge
::
send_muc_leave
(
Iid
&&
iid
,
std
::
string
&&
nick
,
std
::
string
&&
message
,
const
bool
self
)
...
...
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