Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jami-libclient
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
savoirfairelinux
jami-libclient
Commits
558dbba9
Commit
558dbba9
authored
4 years ago
by
Ming Rui Zhang
Browse files
Options
Downloads
Patches
Plain Diff
accountmodel: add supplemental account config option when creating new accounts
Change-Id: Ibb100a51f86b0004533b8352520c3aafb085ea4b
parent
e8f48e4b
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
src/api/newaccountmodel.h
+7
-3
7 additions, 3 deletions
src/api/newaccountmodel.h
src/newaccountmodel.cpp
+14
-3
14 additions, 3 deletions
src/newaccountmodel.cpp
with
21 additions
and
6 deletions
src/api/newaccountmodel.h
+
7
−
3
View file @
558dbba9
...
...
@@ -153,11 +153,13 @@ public:
* @param username
* @param password
* @param serverUri
* @param config
* @return the account id
*/
static
QString
connectToAccountManager
(
const
QString
&
username
,
const
QString
&
password
,
const
QString
&
serverUri
);
const
QString
&
password
,
const
QString
&
serverUri
,
const
MapStringString
&
config
=
MapStringString
());
/**
* Create a new Ring or SIP account
...
...
@@ -168,6 +170,7 @@ public:
* @param password of the archive (unused for SIP)
* @param pin of the archive (unused for SIP)
* @param uri of the account (for SIP)
* @param config
* @return the created account
*/
static
QString
createNewAccount
(
profile
::
Type
type
,
...
...
@@ -175,7 +178,8 @@ public:
const
QString
&
archivePath
=
""
,
const
QString
&
password
=
""
,
const
QString
&
pin
=
""
,
const
QString
&
uri
=
""
);
const
QString
&
uri
=
""
,
const
MapStringString
&
config
=
MapStringString
());
/**
* Set an account to the first position
...
...
This diff is collapsed.
Click to expand it.
src/newaccountmodel.cpp
+
14
−
3
View file @
558dbba9
...
...
@@ -942,7 +942,8 @@ NewAccountModel::createNewAccount(profile::Type type,
const
QString
&
archivePath
,
const
QString
&
password
,
const
QString
&
pin
,
const
QString
&
uri
)
const
QString
&
uri
,
const
MapStringString
&
config
)
{
MapStringString
details
=
type
==
profile
::
Type
::
SIP
?
...
...
@@ -956,8 +957,12 @@ NewAccountModel::createNewAccount(profile::Type type,
details
[
ConfProperties
::
ARCHIVE_PASSWORD
]
=
password
;
details
[
ConfProperties
::
ARCHIVE_PIN
]
=
pin
;
details
[
ConfProperties
::
ARCHIVE_PATH
]
=
archivePath
;
if
(
type
==
profile
::
Type
::
SIP
)
{
if
(
type
==
profile
::
Type
::
SIP
)
details
[
ConfProperties
::
USERNAME
]
=
uri
;
if
(
!
config
.
isEmpty
())
{
for
(
MapStringString
::
const_iterator
it
=
config
.
begin
();
it
!=
config
.
end
();
it
++
)
{
details
[
it
.
key
()]
=
it
.
value
();
}
}
QString
accountId
=
ConfigurationManager
::
instance
().
addAccount
(
details
);
...
...
@@ -967,7 +972,8 @@ NewAccountModel::createNewAccount(profile::Type type,
QString
NewAccountModel
::
connectToAccountManager
(
const
QString
&
username
,
const
QString
&
password
,
const
QString
&
serverUri
)
const
QString
&
serverUri
,
const
MapStringString
&
config
)
{
MapStringString
details
=
ConfigurationManager
::
instance
().
getAccountTemplate
(
"RING"
);
using
namespace
DRing
::
Account
;
...
...
@@ -975,6 +981,11 @@ NewAccountModel::connectToAccountManager(const QString& username,
details
[
ConfProperties
::
MANAGER_URI
]
=
serverUri
;
details
[
ConfProperties
::
MANAGER_USERNAME
]
=
username
;
details
[
ConfProperties
::
ARCHIVE_PASSWORD
]
=
password
;
if
(
!
config
.
isEmpty
())
{
for
(
MapStringString
::
const_iterator
it
=
config
.
begin
();
it
!=
config
.
end
();
it
++
)
{
details
[
it
.
key
()]
=
it
.
value
();
}
}
QString
accountId
=
ConfigurationManager
::
instance
().
addAccount
(
details
);
return
accountId
;
...
...
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