Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2700091
commands.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
5 KB
Referenced Files
None
Subscribers
None
commands.cpp
View Options
/*
* Copyright (C) 2020 Tusooa Zhu
*
* This file is part of libkazv.
*
* libkazv is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* libkazv is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with libkazv. If not, see <https://www.gnu.org/licenses/>.
*/
#include
<libkazv-config.hpp>
#include
<regex>
#include
<tuple>
#include
<cereal/archives/json.hpp>
#include
<lager/lenses/optional.hpp>
#include
<zug/into.hpp>
#include
<zug/compose.hpp>
#include
<immer/flex_vector_transient.hpp>
#include
<immer/flex_vector.hpp>
#include
"commands.hpp"
using
namespace
std
::
string_literals
;
static
std
::
regex
roomMsgsRegex
(
"room msgs (.+)")
;
static
std
::
regex
roomStatesRegex
(
"room states (.+)")
;
static
std
::
regex
roomMemsRegex
(
"room mems (.+)")
;
static
std
::
regex
roomSendRegex
(
"room send ([^
\\
s]+)
(.
+
)
")
;
static
std
::
regex
roomNameRegex
(
"room name ([^
\\
s]+)
(.
+
)
")
;
static
std
::
regex
roomTopicRegex
(
"room topic ([^
\\
s]+)
(.
+
)
")
;
static
std
::
regex
roomNewRegex
(
"room new (.+)")
;
static
std
::
regex
roomInviteRegex
(
"room invite ([^
\\
s]+)
(.
+
)
")
;
static
std
::
regex
roomJoinRegex
(
"room join (.+)")
;
void
parse
(
std
::
string
l
,
Kazv
::
Client
c
)
{
using
namespace
Kazv
::
CursorOp
;
std
::
smatch
m
;
if
(
l
==
"rooms"
)
{
auto
roomIds
=
+
c
.
roomIds
();
std
::
cout
<<
"Room Id
\t
Room Name
\n
"
;
for
(
auto
id
:
roomIds
)
{
auto
roomName
=
c
.
room
(
id
).
name
().
make
().
get
();
std
::
cout
<<
id
<<
"
\t
"
<<
roomName
<<
"
\n
"
;
}
}
else
if
(
std
::
regex_match
(
l
,
m
,
roomMsgsRegex
))
{
auto
roomId
=
m
[
1
].
str
();
auto
room
=
c
.
room
(
roomId
);
auto
msgs
=
+
room
.
timelineEvents
();
std
::
cout
<<
"Messages in "
<<
roomId
<<
":
\n
"
;
for
(
auto
msg
:
msgs
)
{
std
::
cout
<<
"Event "
<<
msg
.
id
()
<<
" from "
<<
msg
.
sender
()
<<
" at "
<<
msg
.
originServerTs
()
<<
" typed "
<<
msg
.
type
()
<<
"
\n
"
;
{
cereal
::
JSONOutputArchive
archive
(
std
::
cout
);
archive
(
msg
.
content
());
}
std
::
cout
<<
std
::
endl
;
}
}
else
if
(
std
::
regex_match
(
l
,
m
,
roomMemsRegex
))
{
auto
roomId
=
m
[
1
].
str
();
auto
room
=
c
.
room
(
roomId
);
auto
members
=
+
room
.
members
();
std
::
cout
<<
"Members in "
<<
roomId
<<
":
\n
"
;
for
(
auto
userId
:
members
)
{
std
::
cout
<<
userId
<<
std
::
endl
;
}
}
else
if
(
std
::
regex_match
(
l
,
m
,
roomStatesRegex
))
{
auto
roomId
=
m
[
1
].
str
();
auto
room
=
c
.
room
(
roomId
);
auto
states
=
+
room
.
stateEvents
();
std
::
cout
<<
"States in "
<<
roomId
<<
":
\n
"
;
for
(
auto
[
k
,
st
]
:
states
)
{
auto
[
type
,
stateKey
]
=
k
;
std
::
cout
<<
"State typed "
<<
type
<<
" with stateKey "
<<
stateKey
<<
"
\n
"
;
{
cereal
::
JSONOutputArchive
archive
(
std
::
cout
);
archive
(
st
);
}
std
::
cout
<<
std
::
endl
;
}
}
else
if
(
std
::
regex_match
(
l
,
m
,
roomSendRegex
))
{
auto
roomId
=
m
[
1
].
str
();
auto
text
=
m
[
2
].
str
();
auto
room
=
c
.
room
(
roomId
);
room
.
sendTextMessage
(
text
);
}
else
if
(
std
::
regex_match
(
l
,
m
,
roomNameRegex
))
{
auto
roomId
=
m
[
1
].
str
();
auto
text
=
m
[
2
].
str
();
auto
room
=
c
.
room
(
roomId
);
room
.
setName
(
text
);
}
else
if
(
std
::
regex_match
(
l
,
m
,
roomTopicRegex
))
{
auto
roomId
=
m
[
1
].
str
();
auto
text
=
m
[
2
].
str
();
auto
room
=
c
.
room
(
roomId
);
room
.
setTopic
(
text
);
}
else
if
(
std
::
regex_match
(
l
,
m
,
roomNewRegex
))
{
auto
name
=
m
[
1
].
str
();
c
.
createRoom
(
Kazv
::
RoomVisibility
::
Private
,
name
);
}
else
if
(
std
::
regex_match
(
l
,
m
,
roomInviteRegex
))
{
auto
roomId
=
m
[
1
].
str
();
auto
userId
=
m
[
2
].
str
();
auto
room
=
c
.
room
(
roomId
);
room
.
invite
(
userId
);
}
else
if
(
std
::
regex_match
(
l
,
m
,
roomJoinRegex
))
{
auto
roomId
=
m
[
1
].
str
();
c
.
joinRoomById
(
roomId
);
}
else
{
// no valid action, display help
std
::
cout
<<
"Commands:
\n
"
<<
"rooms -- List rooms
\n
"
<<
"room msgs <roomId> -- List room messages
\n
"
<<
"room states <roomId> -- List room states
\n
"
<<
"room mems <roomId> -- List room members
\n
"
<<
"room send <roomId> <message text> -- Send a text message
\n
"
<<
"room name <roomId> <new name> -- Set room name
\n
"
<<
"room topic <roomId> <new topic> -- Set room topic
\n
"
<<
"room new <name> -- Create new room
\n
"
<<
"room invite <roomId> <userId> -- Invite user to room
\n
"
<<
"room join <roomId> -- Join room by id
\n
"
<<
"
\n
"
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Fri, Jul 18, 12:15 PM (1 d, 9 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
255393
Default Alt Text
commands.cpp (5 KB)
Attached To
Mode
rL libkazv
Attached
Detach File
Event Timeline
Log In to Comment