Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Konheko
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Nheko Reborn
Konheko
Commits
8ba00fd9
Commit
8ba00fd9
authored
5 years ago
by
Nicolas Werner
Browse files
Options
Downloads
Patches
Plain Diff
Add .well-known support
parent
25034aca
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
requirements.txt
+1
-1
1 addition, 1 deletion
requirements.txt
src/login.cpp
+33
-2
33 additions, 2 deletions
src/login.cpp
with
34 additions
and
3 deletions
requirements.txt
+
1
−
1
View file @
8ba00fd9
...
...
@@ -3,4 +3,4 @@ https://gitlab.matrix.org/matrix-org/olm/-/archive/3.1.0/olm-3.1.0.zip -DBUILD_S
nlohmann/json
gabime/spdlog
-DSPDLOG_BUILD_BENCH
=OFF
-DSPDLOG_BUILD_EXAMPLES
=OFF
-DSPDLOG_BUILD_TESTS
=OFF
boost,https://dl.bintray.com/boostorg/release/1.69.0/source/boost_1_69_0.tar.bz2
--cmake
boost
-DBOOST_WITH_ATOMIC
=1
-DBOOST_WITH_ATOMIC
=1
-DBOOST_WITH_CHRONO
=1
-DBOOST_WITH_DATE_TIME
=1
-DBOOST_WITH_IOSTREAMS
=1
-DBOOST_WITH_RANDOM
=1
-DBOOST_WITH_REGEX
=1
-DBOOST_WITH_SYSTEM
=1
-DBOOST_WITH_THREAD
=1
-DBUILD_SHARED_LIBS
=OFF
MonokelPingui
n/mtxclient@0.3.0-dev
-DBUILD_LIB_EXAMPLES
=off
-DBUILD_LIB_TESTS
=OFF
-DBUILD_SHARED_LIBS
=OFF
Nheko-Rebor
n/mtxclient@0.3.0-dev
-DBUILD_LIB_EXAMPLES
=off
-DBUILD_LIB_TESTS
=OFF
-DBUILD_SHARED_LIBS
=OFF
This diff is collapsed.
Click to expand it.
src/login.cpp
+
33
−
2
View file @
8ba00fd9
...
...
@@ -5,6 +5,7 @@
#include
<mtx/identifiers.hpp>
#include
"client.h"
#include
"debug_out.h"
#include
"settings.h"
Login
::
Login
(
QObject
*
parent
)
:
QObject
(
parent
)
{}
...
...
@@ -41,7 +42,31 @@ void Login::mxidEntered(QString mxid) {
}
QString
server
=
QString
::
fromStdString
(
user
.
hostname
());
this
->
validateServer
(
server
);
http
::
client
().
well_known
([
this
,
server
](
const
mtx
::
responses
::
WellKnown
&
well_known
,
mtx
::
http
::
RequestErr
err
)
{
if
(
err
)
{
using
namespace
boost
::
beast
::
http
;
if
(
err
->
status_code
==
status
::
not_found
)
{
qDebug
()
<<
"Autodiscovery: No .well-known."
;
this
->
validateServer
(
server
);
return
;
}
if
(
!
err
->
parse_error
.
empty
())
{
emit
homeserverInvalid
(
server
,
tr
(
"Autodiscovery failed. Received malformed response."
));
qDebug
()
<<
"Autodiscovery failed. Received malformed response."
<<
*
err
;
return
;
}
emit
homeserverInvalid
(
server
,
tr
(
"Autodiscovery failed. Unknown error when requesting .well-known."
));
qDebug
()
<<
"Autodiscovery failed. Unknown error when requesting .weel-known."
;
return
;
}
qDebug
()
<<
"Autodiscovery: Discovered '"
<<
QString
::
fromStdString
(
well_known
.
homeserver
.
base_url
)
<<
"'"
;
this
->
validateServer
(
QString
::
fromStdString
(
well_known
.
homeserver
.
base_url
));
});
}
void
Login
::
homeserverEntered
(
QString
server
)
{
this
->
validateServer
(
server
);
}
...
...
@@ -122,11 +147,17 @@ void Login::login(QString mxid, QString password, QString server) {
qDebug
()
<<
"Access token:"
<<
QString
::
fromStdString
(
response
.
access_token
)
<<
" , device: "
<<
QString
::
fromStdString
(
response
.
device_id
);
if
(
response
.
well_known
)
{
qDebug
()
<<
"Login response requested to migrate to: "
<<
QString
::
fromStdString
(
response
.
well_known
->
homeserver
.
base_url
);
http
::
client
().
set_server
(
response
.
well_known
->
homeserver
.
base_url
);
}
Settings
s
;
s
.
access_token
(
response
.
access_token
);
s
.
device_id
(
response
.
device_id
);
s
.
user
(
response
.
user_id
);
s
.
server
(
h
ome
server
);
s
.
server
(
h
ttp
::
client
().
server
()
);
s
.
server_port
(
http
::
client
().
port
());
emit
loginSuccess
();
...
...
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