From c198234a1d521baf2725a25b6d5e370e9d63de39 Mon Sep 17 00:00:00 2001 From: Ruban Date: Fri, 5 May 2017 11:47:12 +0530 Subject: [PATCH 01/26] change for UserConsent IDSDEV-489 * LOA.xml updated * SQL script updated * Pom fix --- modules/dbscripts/mig_connectdb.sql | 26 ++++++++++++++++++++++++++ modules/idsconfig/LOA.xml | 2 ++ pom.xml | 4 ++-- 3 files changed, 30 insertions(+), 2 deletions(-) diff --git a/modules/dbscripts/mig_connectdb.sql b/modules/dbscripts/mig_connectdb.sql index b036d1b..e48f694 100755 --- a/modules/dbscripts/mig_connectdb.sql +++ b/modules/dbscripts/mig_connectdb.sql @@ -228,6 +228,7 @@ CREATE TABLE `scope_parameter` ( `msisdn_mismatch_result` VARCHAR(255), `he_failure_result` VARCHAR(255), `is_multiscope` TINYINT DEFAULT 0, + `is_consent_page` TINYINT NOT NULL DEFAULT 0, PRIMARY KEY (`param_id`), UNIQUE (`scope`) ) ENGINE=INNODB DEFAULT CHARSET=LATIN1; @@ -264,6 +265,31 @@ INSERT INTO scope_parameter(param_id,scope,is_multiscope) VALUES(10,'mc_identity_phonenumber_hashed',1); +DROP TABLE IF EXISTS `consent`; + +CREATE TABLE `consent` ( + `consent_id` INT(20) NOT NULL, + `client_id` VARCHAR(100) NOT NULL, + `scope_id` INT(20) NOT NULL, + `operator` VARCHAR(45) DEFAULT NULL, + `approve_status` VARCHAR(45), + PRIMARY KEY (`consent_id`), + FOREIGN KEY (`scope_id`) REFERENCES `scope_parameter`(`param_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + + +DROP TABLE IF EXISTS `user_consent`; + +CREATE TABLE `user_consent` ( + `msisdn` VARCHAR(255) DEFAULT NULL, + `client_id` VARCHAR(100) NOT NULL, + `scope_id` INT(20) NOT NULL, + `operator` VARCHAR(45) DEFAULT NULL, + `approve` TINYINT DEFAULT 0, + FOREIGN KEY (`scope_id`) REFERENCES `scope_parameter`(`param_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + + DROP TABLE IF EXISTS `prompt_configuration`; CREATE TABLE `prompt_configuration` ( diff --git a/modules/idsconfig/LOA.xml b/modules/idsconfig/LOA.xml index 0d5289b..0d752e4 100755 --- a/modules/idsconfig/LOA.xml +++ b/modules/idsconfig/LOA.xml @@ -96,6 +96,7 @@ 21 HeaderEnrichmentAuthenticator + ConsentAuthenticator @@ -108,6 +109,7 @@ MSISDNAuthenticator SmartPhoneAppAuthenticator USSDAuthenticator + ConsentAuthenticator diff --git a/pom.xml b/pom.xml index f85455e..aee5dbd 100755 --- a/pom.xml +++ b/pom.xml @@ -1362,8 +1362,8 @@ - 2.1.0 - 2.0.21 + 2.2.0-SNAPSHOT + 2.0.22-SNAPSHOT 5.2.2 From c906795279a4dfdc91ed73812af0dd9827484d8c Mon Sep 17 00:00:00 2001 From: Ruban Date: Sun, 28 May 2017 22:37:54 +0530 Subject: [PATCH 02/26] db script and loa.xml updated --- modules/dbscripts/mig_connectdb.sql | 30 +++++++++++++++++++++++++++-- modules/idsconfig/LOA.xml | 4 ++-- 2 files changed, 30 insertions(+), 4 deletions(-) mode change 100755 => 100644 modules/idsconfig/LOA.xml diff --git a/modules/dbscripts/mig_connectdb.sql b/modules/dbscripts/mig_connectdb.sql index e48f694..5bcb01d 100755 --- a/modules/dbscripts/mig_connectdb.sql +++ b/modules/dbscripts/mig_connectdb.sql @@ -229,6 +229,7 @@ CREATE TABLE `scope_parameter` ( `he_failure_result` VARCHAR(255), `is_multiscope` TINYINT DEFAULT 0, `is_consent_page` TINYINT NOT NULL DEFAULT 0, + `description` VARCHAR(255), PRIMARY KEY (`param_id`), UNIQUE (`scope`) ) ENGINE=INNODB DEFAULT CHARSET=LATIN1; @@ -264,6 +265,18 @@ VALUES(9,'address',1); INSERT INTO scope_parameter(param_id,scope,is_multiscope) VALUES(10,'mc_identity_phonenumber_hashed',1); +INSERT INTO scope_parameter(param_id,scope,is_login_hint_mandatory,is_header_msisdn_mandatory,is_tnc_visible,msisdn_mismatch_result,he_failure_result,is_multiscope,is_consent_page) +VALUES(11,'api',0,0,0,'CONTINUE_WITH_HEADER','TRUST_LOGINHINT_MSISDN',0,1); + +INSERT INTO scope_parameter(param_id,scope,is_multiscope,is_consent_page,description) +VALUES(12,'sms',1,1,'SMS is Charged 5 per sms'); + +INSERT INTO scope_parameter(param_id,scope,is_multiscope,is_consent_page,description) +VALUES(13,'charge',1,1,'Charge API will be charged per transaction'); + +INSERT INTO scope_parameter(param_id,scope,is_multiscope,is_consent_page,description) +VALUES(14,'payment',1,1,'A convenient fee of 1% charged'); + DROP TABLE IF EXISTS `consent`; @@ -271,7 +284,7 @@ CREATE TABLE `consent` ( `consent_id` INT(20) NOT NULL, `client_id` VARCHAR(100) NOT NULL, `scope_id` INT(20) NOT NULL, - `operator` VARCHAR(45) DEFAULT NULL, + `operator_id` INT(20) NOT NULL, `approve_status` VARCHAR(45), PRIMARY KEY (`consent_id`), FOREIGN KEY (`scope_id`) REFERENCES `scope_parameter`(`param_id`) @@ -284,11 +297,24 @@ CREATE TABLE `user_consent` ( `msisdn` VARCHAR(255) DEFAULT NULL, `client_id` VARCHAR(100) NOT NULL, `scope_id` INT(20) NOT NULL, - `operator` VARCHAR(45) DEFAULT NULL, + `operator_id` INT(20) NOT NULL, `approve` TINYINT DEFAULT 0, FOREIGN KEY (`scope_id`) REFERENCES `scope_parameter`(`param_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; +DROP TABLE IF EXISTS `consent_history`; + +CREATE TABLE `consent_history` ( + `id` INT(20) NOT NULL AUTO_INCREMENT, + `msisdn` VARCHAR(255) DEFAULT NULL, + `client_id` VARCHAR(100) NOT NULL, + `scope_id` INT(20) NOT NULL, + `operator_id` INT(20) NOT NULL, + `approve_status` VARCHAR(45), + `consent_date` TIMESTAMP NULL DEFAULT NULL, + PRIMARY KEY (`id`), + FOREIGN KEY (`scope_id`) REFERENCES `scope_parameter`(`param_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `prompt_configuration`; diff --git a/modules/idsconfig/LOA.xml b/modules/idsconfig/LOA.xml old mode 100755 new mode 100644 index 0d752e4..67c34f8 --- a/modules/idsconfig/LOA.xml +++ b/modules/idsconfig/LOA.xml @@ -108,9 +108,9 @@ MSISDNAuthenticator SmartPhoneAppAuthenticator - USSDAuthenticator ConsentAuthenticator - + USSDAuthenticator + From 49bd67c127795c567475b5dd943ac79a9e00fa57 Mon Sep 17 00:00:00 2001 From: Ruban Date: Mon, 29 May 2017 17:11:17 +0530 Subject: [PATCH 03/26] DB script updated with consent deny table --- modules/dbscripts/mig_connectdb.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/dbscripts/mig_connectdb.sql b/modules/dbscripts/mig_connectdb.sql index 5bcb01d..c50e928 100755 --- a/modules/dbscripts/mig_connectdb.sql +++ b/modules/dbscripts/mig_connectdb.sql @@ -302,6 +302,17 @@ CREATE TABLE `user_consent` ( FOREIGN KEY (`scope_id`) REFERENCES `scope_parameter`(`param_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; +DROP TABLE IF EXISTS `user_consent_deny`; + +CREATE TABLE `user_consent_deny` ( + `msisdn` VARCHAR(255) DEFAULT NULL, + `client_id` VARCHAR(100) NOT NULL, + `scope_id` INT(20) NOT NULL, + `operator_id` INT(20) NOT NULL, + `deny` TINYINT DEFAULT 0, + FOREIGN KEY (`scope_id`) REFERENCES `scope_parameter`(`param_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + DROP TABLE IF EXISTS `consent_history`; CREATE TABLE `consent_history` ( From eb4d169ff3101684262f3ba6f9e3963f8367d6b3 Mon Sep 17 00:00:00 2001 From: Ruban Date: Wed, 31 May 2017 17:58:49 +0530 Subject: [PATCH 04/26] DB Script updated to merge consent deny table for JIRA IDSDEV-489 --- modules/dbscripts/mig_connectdb.sql | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/modules/dbscripts/mig_connectdb.sql b/modules/dbscripts/mig_connectdb.sql index c50e928..7849b1e 100755 --- a/modules/dbscripts/mig_connectdb.sql +++ b/modules/dbscripts/mig_connectdb.sql @@ -294,30 +294,22 @@ CREATE TABLE `consent` ( DROP TABLE IF EXISTS `user_consent`; CREATE TABLE `user_consent` ( - `msisdn` VARCHAR(255) DEFAULT NULL, + `user_consent_id` INT(20) NOT NULL AUTO_INCREMENT, + `msisdn` VARCHAR(255) NOT NULL, `client_id` VARCHAR(100) NOT NULL, `scope_id` INT(20) NOT NULL, `operator_id` INT(20) NOT NULL, `approve` TINYINT DEFAULT 0, - FOREIGN KEY (`scope_id`) REFERENCES `scope_parameter`(`param_id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; - -DROP TABLE IF EXISTS `user_consent_deny`; - -CREATE TABLE `user_consent_deny` ( - `msisdn` VARCHAR(255) DEFAULT NULL, - `client_id` VARCHAR(100) NOT NULL, - `scope_id` INT(20) NOT NULL, - `operator_id` INT(20) NOT NULL, - `deny` TINYINT DEFAULT 0, - FOREIGN KEY (`scope_id`) REFERENCES `scope_parameter`(`param_id`) + PRIMARY KEY (`user_consent_id`), + FOREIGN KEY (`scope_id`) REFERENCES `scope_parameter`(`param_id`), + UNIQUE (`msisdn`,`client_id`,`scope_id`,`operator_id`,`approve`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `consent_history`; CREATE TABLE `consent_history` ( `id` INT(20) NOT NULL AUTO_INCREMENT, - `msisdn` VARCHAR(255) DEFAULT NULL, + `msisdn` VARCHAR(255) NOT NULL, `client_id` VARCHAR(100) NOT NULL, `scope_id` INT(20) NOT NULL, `operator_id` INT(20) NOT NULL, From aa8b6a66421ae6cb63f5bae223acba10e66ae962 Mon Sep 17 00:00:00 2001 From: Ruban Date: Mon, 29 May 2017 17:11:17 +0530 Subject: [PATCH 05/26] DB script updated with consent deny table --- modules/dbscripts/mig_connectdb.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/dbscripts/mig_connectdb.sql b/modules/dbscripts/mig_connectdb.sql index 7849b1e..b10a108 100755 --- a/modules/dbscripts/mig_connectdb.sql +++ b/modules/dbscripts/mig_connectdb.sql @@ -305,6 +305,17 @@ CREATE TABLE `user_consent` ( UNIQUE (`msisdn`,`client_id`,`scope_id`,`operator_id`,`approve`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; +DROP TABLE IF EXISTS `user_consent_deny`; + +CREATE TABLE `user_consent_deny` ( + `msisdn` VARCHAR(255) DEFAULT NULL, + `client_id` VARCHAR(100) NOT NULL, + `scope_id` INT(20) NOT NULL, + `operator_id` INT(20) NOT NULL, + `deny` TINYINT DEFAULT 0, + FOREIGN KEY (`scope_id`) REFERENCES `scope_parameter`(`param_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + DROP TABLE IF EXISTS `consent_history`; CREATE TABLE `consent_history` ( From eb1b0b23e4fe75d61ed683838defc5900ae28814 Mon Sep 17 00:00:00 2001 From: Ruban Date: Wed, 31 May 2017 17:58:49 +0530 Subject: [PATCH 06/26] DB Script updated to merge consent deny table for JIRA IDSDEV-489 --- modules/dbscripts/mig_connectdb.sql | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/modules/dbscripts/mig_connectdb.sql b/modules/dbscripts/mig_connectdb.sql index b10a108..7849b1e 100755 --- a/modules/dbscripts/mig_connectdb.sql +++ b/modules/dbscripts/mig_connectdb.sql @@ -305,17 +305,6 @@ CREATE TABLE `user_consent` ( UNIQUE (`msisdn`,`client_id`,`scope_id`,`operator_id`,`approve`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -DROP TABLE IF EXISTS `user_consent_deny`; - -CREATE TABLE `user_consent_deny` ( - `msisdn` VARCHAR(255) DEFAULT NULL, - `client_id` VARCHAR(100) NOT NULL, - `scope_id` INT(20) NOT NULL, - `operator_id` INT(20) NOT NULL, - `deny` TINYINT DEFAULT 0, - FOREIGN KEY (`scope_id`) REFERENCES `scope_parameter`(`param_id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; - DROP TABLE IF EXISTS `consent_history`; CREATE TABLE `consent_history` ( From 90def020654862ff136a902a01a07321de756731 Mon Sep 17 00:00:00 2001 From: Ruban Date: Wed, 7 Jun 2017 14:49:31 +0530 Subject: [PATCH 07/26] DB script updated to modify consent Table Structure --- modules/dbscripts/mig_connectdb.sql | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/modules/dbscripts/mig_connectdb.sql b/modules/dbscripts/mig_connectdb.sql index 7849b1e..eaf5d15 100755 --- a/modules/dbscripts/mig_connectdb.sql +++ b/modules/dbscripts/mig_connectdb.sql @@ -281,13 +281,14 @@ VALUES(14,'payment',1,1,'A convenient fee of 1% charged'); DROP TABLE IF EXISTS `consent`; CREATE TABLE `consent` ( - `consent_id` INT(20) NOT NULL, + `consent_id` INT(20) NOT NULL AUTO_INCREMENT, `client_id` VARCHAR(100) NOT NULL, `scope_id` INT(20) NOT NULL, `operator_id` INT(20) NOT NULL, `approve_status` VARCHAR(45), PRIMARY KEY (`consent_id`), - FOREIGN KEY (`scope_id`) REFERENCES `scope_parameter`(`param_id`) + FOREIGN KEY (`scope_id`) REFERENCES `scope_parameter`(`param_id`), + UNIQUE (`client_id`,`scope_id`,`operator_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; @@ -302,7 +303,7 @@ CREATE TABLE `user_consent` ( `approve` TINYINT DEFAULT 0, PRIMARY KEY (`user_consent_id`), FOREIGN KEY (`scope_id`) REFERENCES `scope_parameter`(`param_id`), - UNIQUE (`msisdn`,`client_id`,`scope_id`,`operator_id`,`approve`) + UNIQUE (`msisdn`,`client_id`,`scope_id`,`operator_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `consent_history`; From 8faaff66247f012b015bfd67ad3cb7bc5e811f88 Mon Sep 17 00:00:00 2001 From: Ruban Date: Wed, 14 Jun 2017 14:31:28 +0530 Subject: [PATCH 08/26] LOA 3 fix --- modules/idsconfig/LOA.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/idsconfig/LOA.xml b/modules/idsconfig/LOA.xml index 67c34f8..4c8fe8b 100644 --- a/modules/idsconfig/LOA.xml +++ b/modules/idsconfig/LOA.xml @@ -75,6 +75,7 @@ HeaderEnrichmentAuthenticator + ConsentAuthenticator USSDPinAuthenticator @@ -85,6 +86,7 @@ MSISDNAuthenticator + ConsentAuthenticator USSDPinAuthenticator From 0aac73d95e82cf9cdabdb22519fc0a488a13c321 Mon Sep 17 00:00:00 2001 From: madushak Date: Thu, 20 Apr 2017 16:46:09 +0530 Subject: [PATCH 09/26] Added self service configs --- modules/idsconfig/mobile-connect.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/idsconfig/mobile-connect.xml b/modules/idsconfig/mobile-connect.xml index 9f80708..415d9e2 100755 --- a/modules/idsconfig/mobile-connect.xml +++ b/modules/idsconfig/mobile-connect.xml @@ -210,4 +210,14 @@ tcp://localhost:7612 ssl://localhost:7712 + + + bVU60zFM1SlMufyxGyj6LbPSIcMa + zyrYXaMRkAFUkTrr3GJoDnT2rPYa + http://localhost:3000/login + https://localhost:9443/oauth2/token + https://localhost:9443/selfserviceportal/api/v1/auth/callback + https://localhost:9443/oauth2/userinfo?schema=openid + https://localhost:9443/authproxy/oauth2/authorize/operator/${operator} + From 1f2d75ba10c4ba85e114690dbeddfbbfd89df12a Mon Sep 17 00:00:00 2001 From: madushak Date: Fri, 28 Apr 2017 10:04:52 +0530 Subject: [PATCH 10/26] Added correct core util version - IDSDEV-379 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f85455e..e1ffa56 100755 --- a/pom.xml +++ b/pom.xml @@ -1363,7 +1363,7 @@ 2.1.0 - 2.0.21 + 2.0.22-SNAPSHOT 5.2.2 From be3c522d10e743a489fdef55be0a2c8a4fabfd50 Mon Sep 17 00:00:00 2001 From: madushak Date: Fri, 28 Apr 2017 10:22:32 +0530 Subject: [PATCH 11/26] Added correct core util version - IDSDEV-379 --- modules/idsconfig/mobile-connect.xml | 35 +++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/modules/idsconfig/mobile-connect.xml b/modules/idsconfig/mobile-connect.xml index 415d9e2..c5b7d69 100755 --- a/modules/idsconfig/mobile-connect.xml +++ b/modules/idsconfig/mobile-connect.xml @@ -211,13 +211,46 @@ ssl://localhost:7712 + + + airtel + airtel + + + tata + tatadocomo + + + vodafone_india + vodafone + + + idea + idea + + + uninor + telenor + + + aircel + aircel + + + spark + spark + + + bVU60zFM1SlMufyxGyj6LbPSIcMa zyrYXaMRkAFUkTrr3GJoDnT2rPYa - http://localhost:3000/login + https://localhost:9443/selfserviceportal/#/login https://localhost:9443/oauth2/token https://localhost:9443/selfserviceportal/api/v1/auth/callback https://localhost:9443/oauth2/userinfo?schema=openid https://localhost:9443/authproxy/oauth2/authorize/operator/${operator} + https://india.discover.mobileconnect.io/gsma/v2/discovery/?Redirect_URL=https://www.goibibo.com/api/auth/v1.0/mobileconnect/callback + OTc3YjMyOGUtZTVlZi00NWY1LTgxYTktOTg5MDA5MWI2NDA3OmUzNTRjMzNjLTdjYTAtNDdjMy04MGUwLWZhZGMxMzIxNDY0Zg== From e89d7f0a83171ea96a6c8041d5660dd9e6e3fdd8 Mon Sep 17 00:00:00 2001 From: madushak Date: Wed, 24 May 2017 10:40:02 +0530 Subject: [PATCH 12/26] Added new mobile connect configs and bundle self service portal on pack - IDSDEV-379 --- modules/distribution/src/assembly/bin.xml | 1 + modules/idsconfig/mobile-connect.xml | 1 + modules/p2-profile-gen/pom.xml | 23 +++++++++++++++++++++++ pom.xml | 7 ++++++- 4 files changed, 31 insertions(+), 1 deletion(-) diff --git a/modules/distribution/src/assembly/bin.xml b/modules/distribution/src/assembly/bin.xml index d01fbdd..f264961 100755 --- a/modules/distribution/src/assembly/bin.xml +++ b/modules/distribution/src/assembly/bin.xml @@ -178,6 +178,7 @@ authproxy.war sessionupdater.war saaserver.war + selfserviceportal.war diff --git a/modules/idsconfig/mobile-connect.xml b/modules/idsconfig/mobile-connect.xml index c5b7d69..0352cd1 100755 --- a/modules/idsconfig/mobile-connect.xml +++ b/modules/idsconfig/mobile-connect.xml @@ -252,5 +252,6 @@ https://localhost:9443/authproxy/oauth2/authorize/operator/${operator} https://india.discover.mobileconnect.io/gsma/v2/discovery/?Redirect_URL=https://www.goibibo.com/api/auth/v1.0/mobileconnect/callback OTc3YjMyOGUtZTVlZi00NWY1LTgxYTktOTg5MDA5MWI2NDA3OmUzNTRjMzNjLTdjYTAtNDdjMy04MGUwLWZhZGMxMzIxNDY0Zg== + msisdn diff --git a/modules/p2-profile-gen/pom.xml b/modules/p2-profile-gen/pom.xml index 009365c..fc91a48 100755 --- a/modules/p2-profile-gen/pom.xml +++ b/modules/p2-profile-gen/pom.xml @@ -143,6 +143,9 @@ com.wso2telco.ids:com.wso2telco.ids.saaserver.feature:${com.wso2telco.ids.version} + + com.wso2telco.ids:com.wso2telco.ids.selfserviceportal.feature:${com.wso2telco.ids.version} + com.wso2telco.ids:com.wso2telco.ids.urlshorten.feature:${com.wso2telco.ids.version} @@ -933,6 +936,11 @@ ${com.wso2telco.ids.version} + + com.wso2telco.ids.selfserviceportal.feature.group + ${com.wso2telco.ids.version} + + com.wso2telco.ids.sessionupdater.ui.feature.group ${com.wso2telco.ids.version} @@ -1073,6 +1081,11 @@ ${com.wso2telco.ids.version} + + com.wso2telco.ids.selfserviceportal.feature.group + ${com.wso2telco.ids.version} + + com.wso2telco.ids.sessionupdater.ui.feature.group ${com.wso2telco.ids.version} @@ -1549,6 +1562,11 @@ ${com.wso2telco.ids.version} + + com.wso2telco.ids.selfserviceportal.feature.group + ${com.wso2telco.ids.version} + + com.wso2telco.ids.sessionupdater.ui.feature.group ${com.wso2telco.ids.version} @@ -2008,6 +2026,11 @@ ${com.wso2telco.ids.version} + + com.wso2telco.ids.selfserviceportal.feature.group + ${com.wso2telco.ids.version} + + com.wso2telco.ids.sessionupdater.ui.feature.group ${com.wso2telco.ids.version} diff --git a/pom.xml b/pom.xml index e1ffa56..766cc76 100755 --- a/pom.xml +++ b/pom.xml @@ -1205,6 +1205,11 @@ com.wso2telco.ids.saaserver.feature ${com.wso2telco.ids.version} + + com.wso2telco.ids + com.wso2telco.ids.selfserviceportal.feature + ${com.wso2telco.ids.version} + @@ -1362,7 +1367,7 @@ - 2.1.0 + 2.2.0-SNAPSHOT 2.0.22-SNAPSHOT From 160a398d90cb668efe3e01961e403c5dce247d5d Mon Sep 17 00:00:00 2001 From: madushak Date: Wed, 24 May 2017 10:42:46 +0530 Subject: [PATCH 13/26] Added new mobile connect configs and bundle self service portal on pack - IDSDEV-379 --- modules/idsconfig/mobile-connect.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/idsconfig/mobile-connect.xml b/modules/idsconfig/mobile-connect.xml index 0352cd1..57a7769 100755 --- a/modules/idsconfig/mobile-connect.xml +++ b/modules/idsconfig/mobile-connect.xml @@ -250,7 +250,7 @@ https://localhost:9443/selfserviceportal/api/v1/auth/callback https://localhost:9443/oauth2/userinfo?schema=openid https://localhost:9443/authproxy/oauth2/authorize/operator/${operator} - https://india.discover.mobileconnect.io/gsma/v2/discovery/?Redirect_URL=https://www.goibibo.com/api/auth/v1.0/mobileconnect/callback + https://india.discover.mobileconnect.io/gsma/v2/discovery/?Redirect_URL=https://www.goibibo.com/api/auth/v1.0/mobileconnect/callback OTc3YjMyOGUtZTVlZi00NWY1LTgxYTktOTg5MDA5MWI2NDA3OmUzNTRjMzNjLTdjYTAtNDdjMy04MGUwLWZhZGMxMzIxNDY0Zg== msisdn From a0b7c9b09ac6fc494760bf0309d17187203ae208 Mon Sep 17 00:00:00 2001 From: madushak Date: Wed, 24 May 2017 10:43:20 +0530 Subject: [PATCH 14/26] Added new mobile connect configs and bundle self service portal on pack - IDSDEV-379 --- modules/idsconfig/mobile-connect.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/idsconfig/mobile-connect.xml b/modules/idsconfig/mobile-connect.xml index 57a7769..2a52f1b 100755 --- a/modules/idsconfig/mobile-connect.xml +++ b/modules/idsconfig/mobile-connect.xml @@ -250,8 +250,8 @@ https://localhost:9443/selfserviceportal/api/v1/auth/callback https://localhost:9443/oauth2/userinfo?schema=openid https://localhost:9443/authproxy/oauth2/authorize/operator/${operator} - https://india.discover.mobileconnect.io/gsma/v2/discovery/?Redirect_URL=https://www.goibibo.com/api/auth/v1.0/mobileconnect/callback - OTc3YjMyOGUtZTVlZi00NWY1LTgxYTktOTg5MDA5MWI2NDA3OmUzNTRjMzNjLTdjYTAtNDdjMy04MGUwLWZhZGMxMzIxNDY0Zg== + + msisdn From 311993b88e4ed8748115035228cb703a1896f6c0 Mon Sep 17 00:00:00 2001 From: madushak Date: Wed, 24 May 2017 17:26:45 +0530 Subject: [PATCH 15/26] Added new mobile connect config for msisdn claim - IDSDEV-379 --- modules/idsconfig/mobile-connect.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/idsconfig/mobile-connect.xml b/modules/idsconfig/mobile-connect.xml index 2a52f1b..0d04f23 100755 --- a/modules/idsconfig/mobile-connect.xml +++ b/modules/idsconfig/mobile-connect.xml @@ -243,8 +243,8 @@ - bVU60zFM1SlMufyxGyj6LbPSIcMa - zyrYXaMRkAFUkTrr3GJoDnT2rPYa + + https://localhost:9443/selfserviceportal/#/login https://localhost:9443/oauth2/token https://localhost:9443/selfserviceportal/api/v1/auth/callback From bab1d841cb15c703f29086fc16e17409d6f534a8 Mon Sep 17 00:00:00 2001 From: Ruban Date: Mon, 24 Jul 2017 15:38:32 +0530 Subject: [PATCH 16/26] scope_log Table change --- modules/dbscripts/mig_connectdb.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/dbscripts/mig_connectdb.sql b/modules/dbscripts/mig_connectdb.sql index eaf5d15..a8025b2 100755 --- a/modules/dbscripts/mig_connectdb.sql +++ b/modules/dbscripts/mig_connectdb.sql @@ -424,6 +424,7 @@ DROP TABLE IF EXISTS `scope_log`; CREATE TABLE `scope_log` ( `id` INT(11) NOT NULL AUTO_INCREMENT, `access_token` VARCHAR(125) DEFAULT NULL, + `scope` VARCHAR(255) DEFAULT NULL, `created_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `sub` VARCHAR(200) DEFAULT NULL, PRIMARY KEY (`id`), From 44330f7aef2960ef056e25079de3236b9199bd72 Mon Sep 17 00:00:00 2001 From: nilan Date: Thu, 29 Jun 2017 12:17:10 +0530 Subject: [PATCH 17/26] IDSDEV-606 Add new property to mobile connect XML --- modules/idsconfig/mobile-connect.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/idsconfig/mobile-connect.xml b/modules/idsconfig/mobile-connect.xml index 0d04f23..3ab5be4 100755 --- a/modules/idsconfig/mobile-connect.xml +++ b/modules/idsconfig/mobile-connect.xml @@ -190,7 +190,7 @@ FROM IP:TO IP XX.XX.XX.XX:XX.XX.XX.XX XX.XX.XX.XX:XX.XX.XX.XX - XX.XX.XX.XX:XX.XX.XX.XX + XX.XX.XX.XX:XX.XX.XX.XX @@ -254,4 +254,10 @@ msisdn + + + discovery + https://url + oauthCode + From 52920ca930e4add54501fab2e9b6b174414683cc Mon Sep 17 00:00:00 2001 From: nilan Date: Mon, 3 Jul 2017 12:54:44 +0530 Subject: [PATCH 18/26] IDSDEV-606 Add new property to mobile connect XML --- modules/idsconfig/mobile-connect.xml | 6 ++++++ pom.xml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/idsconfig/mobile-connect.xml b/modules/idsconfig/mobile-connect.xml index 3ab5be4..1d85739 100755 --- a/modules/idsconfig/mobile-connect.xml +++ b/modules/idsconfig/mobile-connect.xml @@ -260,4 +260,10 @@ https://url oauthCode + + 100 + + + 100 + diff --git a/pom.xml b/pom.xml index 766cc76..25699df 100755 --- a/pom.xml +++ b/pom.xml @@ -1368,7 +1368,7 @@ 2.2.0-SNAPSHOT - 2.0.22-SNAPSHOT + 2.0.23-SNAPSHOT 5.2.2 From fb9456c4b44746b79ef7b31fdbd06672e29f0e19 Mon Sep 17 00:00:00 2001 From: nilan Date: Mon, 3 Jul 2017 14:58:21 +0530 Subject: [PATCH 19/26] release version change --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 25699df..2a828ce 100755 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ identity-server-parent pom WSO2 Identity Server - 2.2.0-SNAPSHOT + 2.3.0-SNAPSHOT WSO2Telco Identity Server http://wso2.org/projects/identity From 68bc3f793c75567faad7e911c4017cf8eeb1ebfd Mon Sep 17 00:00:00 2001 From: Wasantha Herath Date: Fri, 14 Jul 2017 11:35:26 +0530 Subject: [PATCH 20/26] Fixing building issue --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2a828ce..25699df 100755 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ identity-server-parent pom WSO2 Identity Server - 2.3.0-SNAPSHOT + 2.2.0-SNAPSHOT WSO2Telco Identity Server http://wso2.org/projects/identity From 17ab20b52680a7dff3163f6ae96d682bc1e41d75 Mon Sep 17 00:00:00 2001 From: nilan Date: Mon, 24 Jul 2017 13:09:37 +0530 Subject: [PATCH 21/26] IDSDEV-647 --- modules/idsconfig/claim-config.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/modules/idsconfig/claim-config.xml b/modules/idsconfig/claim-config.xml index 357929a..5b473a2 100755 --- a/modules/idsconfig/claim-config.xml +++ b/modules/idsconfig/claim-config.xml @@ -25,6 +25,20 @@ LOA + + http://wso2.org/claims/operator + Operator + operator + Operator + + + + http://wso2.org/claims/status + Status + status + Status + + http://wso2.org/claims/challengeQuestion1 Challenge Question1 From 06e7319f5ef61b476e9e6c60c607503a6e48cb4d Mon Sep 17 00:00:00 2001 From: uditha Date: Tue, 18 Apr 2017 14:35:46 +0530 Subject: [PATCH 22/26] IDSDEV-365 Mobile Connect Request Validator Capability in IDGW Related Development --- modules/idsconfig/identity.xml | 5 ++- modules/idsconfig/mobile-connect.out.xml | 0 modules/idsconfig/mobile-connect.xml | 56 ++++++++++++++++++++++++ modules/p2-profile-gen/pom.xml | 48 +++++++++++++++++++- pom.xml | 10 +++++ 5 files changed, 117 insertions(+), 2 deletions(-) create mode 100644 modules/idsconfig/mobile-connect.out.xml diff --git a/modules/idsconfig/identity.xml b/modules/idsconfig/identity.xml index f267126..6b6505d 100755 --- a/modules/idsconfig/identity.xml +++ b/modules/idsconfig/identity.xml @@ -164,7 +164,10 @@ org.wso2.carbon.identity.oauth.tokenprocessor.PlainTextPersistenceProcessor - + + false diff --git a/modules/idsconfig/mobile-connect.out.xml b/modules/idsconfig/mobile-connect.out.xml new file mode 100644 index 0000000..e69de29 diff --git a/modules/idsconfig/mobile-connect.xml b/modules/idsconfig/mobile-connect.xml index 0d04f23..7f758c9 100755 --- a/modules/idsconfig/mobile-connect.xml +++ b/modules/idsconfig/mobile-connect.xml @@ -211,6 +211,61 @@ ssl://localhost:7712 + true + + + https://india.discover.mobileconnect.io/rv/v1/exchange/organizations/gsma/validate + + + https://india.discover.mobileconnect.io/gsma/v2/discovery/ + http://jenkins.wso2telco.com:9763/playground2/oauth2.jsp + 919958713388 + + + + + https://localhost:9443/services/OAuthAdminService + https://localhost:9443/services/IdentityApplicationManagementService + admin + admin + 100 + 2 + + false + true + oauth2 + false + null + oauthConsumerSecret + false + false + PRIMARY + true + LOA + false + LOACompositeAuthenticator + true + local + admin + admin + OAuth-2.0 + authorization_code implicit password client_credentials refresh_token urn:ietf:params:oauth:grant-type:saml2-bearer iwa:ntlm + false + false + + + + + admin + admin + + + + admin + admin + + + airtel @@ -254,4 +309,5 @@ msisdn + diff --git a/modules/p2-profile-gen/pom.xml b/modules/p2-profile-gen/pom.xml index fc91a48..cf76996 100755 --- a/modules/p2-profile-gen/pom.xml +++ b/modules/p2-profile-gen/pom.xml @@ -9,7 +9,7 @@ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software - ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ distributed under the License is distributead on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. @@ -134,6 +134,9 @@ com.wso2telco.ids:com.wso2telco.ids.openidtokenbuilder.feature:${com.wso2telco.ids.version} + + com.wso2telco.ids:com.wso2telco.ids.spseamlessprovision.feature:${com.wso2telco.ids.version} + com.wso2telco.ids:com.wso2telco.ids.authproxyservice.feature:${com.wso2telco.ids.version} @@ -155,6 +158,12 @@ com.wso2telco.ids:com.wso2telco.ids.datapublisher.feature:${com.wso2telco.ids.version} + + com.wso2telco.core:com.wso2telco.core.spprovisionservice.feature:${com.wso2telco.core.version} + + + com.wso2telco.core:com.wso2telco.core.spprovisionservice.feature:${com.wso2telco.core.version} + @@ -458,6 +467,7 @@ org.wso2.carbon.metrics:org.wso2.carbon.metrics.feature:${carbon.metrics.version} + @@ -886,6 +896,10 @@ com.wso2telco.core.mncresolver.feature.group ${com.wso2telco.core.version} + + com.wso2telco.core.spprovisionservice.feature.group + ${com.wso2telco.core.version} + com.wso2telco.ids.sign.ui.feature.group ${com.wso2telco.ids.version} @@ -925,6 +939,11 @@ com.wso2telco.ids.openidtokenbuilder.feature.group ${com.wso2telco.ids.version} + + + com.wso2telco.ids.spseamlessprovision.feature.group + ${com.wso2telco.ids.version} + com.wso2telco.ids.authproxyservice.feature.group @@ -1031,6 +1050,10 @@ com.wso2telco.core.mncresolver.feature.group ${com.wso2telco.core.version} + + com.wso2telco.core.spprovisionservice.feature.group + ${com.wso2telco.core.version} + com.wso2telco.ids.sign.ui.feature.group ${com.wso2telco.ids.version} @@ -1071,6 +1094,11 @@ ${com.wso2telco.ids.version} + + com.wso2telco.ids.spseamlessprovision.feature.group + ${com.wso2telco.ids.version} + + com.wso2telco.ids.authproxyservice.feature.group ${com.wso2telco.ids.version} @@ -1512,6 +1540,10 @@ com.wso2telco.core.mncresolver.feature.group ${com.wso2telco.core.version} + + com.wso2telco.core.spprovisionservice.feature.group + ${com.wso2telco.core.version} + com.wso2telco.ids.sign.ui.feature.group ${com.wso2telco.ids.version} @@ -1551,6 +1583,11 @@ com.wso2telco.ids.openidtokenbuilder.feature.group ${com.wso2telco.ids.version} + + + com.wso2telco.ids.spseamlessprovision.feature.group + ${com.wso2telco.ids.version} + com.wso2telco.ids.authproxyservice.feature.group @@ -1976,6 +2013,10 @@ com.wso2telco.core.mncresolver.feature.group ${com.wso2telco.core.version} + + com.wso2telco.core.spprovisionservice.feature.group + ${com.wso2telco.core.version} + com.wso2telco.ids.sign.ui.feature.group ${com.wso2telco.ids.version} @@ -2015,6 +2056,11 @@ com.wso2telco.ids.openidtokenbuilder.feature.group ${com.wso2telco.ids.version} + + + com.wso2telco.ids.spseamlessprovision.feature.group + ${com.wso2telco.ids.version} + com.wso2telco.ids.authproxyservice.feature.group diff --git a/pom.xml b/pom.xml index 766cc76..4499c8e 100755 --- a/pom.xml +++ b/pom.xml @@ -1130,6 +1130,11 @@ com.wso2telco.core.spconfig.feature ${com.wso2telco.core.version} + + com.wso2telco.core + com.wso2telco.core.spprovisionservice.feature + ${com.wso2telco.core.version} + com.wso2telco.core com.wso2telco.core.mncresolver.feature @@ -1170,6 +1175,11 @@ com.wso2telco.ids.datapublisher.feature ${com.wso2telco.ids.version} + + com.wso2telco.ids + com.wso2telco.ids.spseamlessprovision.feature + ${com.wso2telco.ids.version} + com.wso2telco.ids com.wso2telco.ids.openidtokenbuilder.feature From 6705fab3bf6dcfa41b7f3184c0d3bab0301cd5e6 Mon Sep 17 00:00:00 2001 From: uditha Date: Wed, 7 Jun 2017 08:55:11 +0530 Subject: [PATCH 23/26] IDSDEV-365 Discovery Call modifications --- modules/idsconfig/mobile-connect.xml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/idsconfig/mobile-connect.xml b/modules/idsconfig/mobile-connect.xml index 7f758c9..6709c26 100755 --- a/modules/idsconfig/mobile-connect.xml +++ b/modules/idsconfig/mobile-connect.xml @@ -204,7 +204,7 @@ - true + false admin admin tcp://localhost:7612 @@ -213,8 +213,10 @@ true + J2lAGcsgEILuhiSyPwsljG4OoxzyIiaX + EBmKGJmSsOsniAXY - https://india.discover.mobileconnect.io/rv/v1/exchange/organizations/gsma/validate + https://integration.mobileconnect.io/rv/v1/exchange/organizations/dialog_srilanka/validate https://india.discover.mobileconnect.io/gsma/v2/discovery/ From ce82ebb10e7f7b23e7d7049e1080fb8ec8ccf732 Mon Sep 17 00:00:00 2001 From: nilan Date: Fri, 28 Jul 2017 11:33:21 +0530 Subject: [PATCH 24/26] IDSDEV-658 --- modules/idsconfig/claim-config.xml | 7 ++ modules/idsconfig/mobile-connect.xml | 165 +++++++++++++++------------ 2 files changed, 100 insertions(+), 72 deletions(-) diff --git a/modules/idsconfig/claim-config.xml b/modules/idsconfig/claim-config.xml index 5b473a2..3f38355 100755 --- a/modules/idsconfig/claim-config.xml +++ b/modules/idsconfig/claim-config.xml @@ -39,6 +39,13 @@ Status + + http://wso2.org/claims/regMode + Registration Mode + regMode + RegMode + + http://wso2.org/claims/challengeQuestion1 Challenge Question1 diff --git a/modules/idsconfig/mobile-connect.xml b/modules/idsconfig/mobile-connect.xml index 04349d3..1255859 100755 --- a/modules/idsconfig/mobile-connect.xml +++ b/modules/idsconfig/mobile-connect.xml @@ -22,23 +22,34 @@ false - http://localhost:9763/ussdstub/v1/outbound + http://localhost:9763/ussdstub/v1/outbound + 4442137174b27a9837e745c711f4e31 http://localhost:9763/authenticationendpoint/sms - To login to ${application}, follow this link Do not share as it is unique to you. ${link} - To registration to ${application}, follow this link Do not share as it is unique to you. ${link} + To login to ${application}, follow this link Do not share as it is unique to you. + ${link} + + To registration to ${application}, follow this link Do not share as it is unique to + you. ${link} + - op1 To login to ${application}, follow this link Do not share as it is unique to you. ${link} - op1 To register to ${application}, follow this link Do not share as it is unique to you. ${link} + op1 To login to ${application}, follow this link Do not share as it is unique to + you. ${link} + + op1 To register to ${application}, follow this link Do not share as it is + unique to you. ${link} + - op1 To login to ${application}, follow this link Do not share as it is unique to you. ${link} + op1 To login to ${application}, follow this link Do not share as it is unique to + you. ${link} + @@ -54,13 +65,16 @@ 30 true - Welcome to Mobile Connect - a simple and safer way to login which is always free. Please visit - http://mobileconnect.in to know more. + Welcome to Mobile Connect - a simple and safer way to login which is always free. Please + visit + http://mobileconnect.in to know more. + spark - Spark welcomes you on Mobile Connect - a simple and safer way to login which is always free. Please visit + Spark welcomes you on Mobile Connect - a simple and safer way to login which is always free. + Please visit http://mobileconnect.in to know more. true @@ -75,54 +89,74 @@ http://localhost:9763/ussdstub/v1/outbound Authorization token to access the USSD API - Message content for USSD authentication - Message content for USSD pin authentication + Message content for USSD authentication + + Message content for USSD pin authentication + 1721 123 true Mobile connect Callback URL for USSD authentication - http://localhost:9763/sessionupdater/tnspoints/endpoint/login/ussd - http://localhost:9763/sessionupdater/tnspoints/endpoint/registration/ussd - http://localhost:9763/sessionupdater/tnspoints/endpoint/pin/login/ussd - http://localhost:9763/sessionupdater/tnspoints/endpoint/pin/registration/ussd - Login message for ussd pin ${application} 1. Yes 2. No - Registration message for ussd pin ${application} 1. Yes 2. No + http://localhost:9763/sessionupdater/tnspoints/endpoint/login/ussd + + http://localhost:9763/sessionupdater/tnspoints/endpoint/registration/ussd + + http://localhost:9763/sessionupdater/tnspoints/endpoint/pin/login/ussd + + http://localhost:9763/sessionupdater/tnspoints/endpoint/pin/registration/ussd + + Login message for ussd pin ${application} 1. Yes 2. No + + Registration message for ussd pin ${application} 1. Yes 2. No + - op1 Registration message for ussd pin ${application} 1. Yes 2. No + op1 Registration message for ussd pin ${application} 1. Yes 2. No + op1 Login message for ussd pin ${application} 1. Yes 2. No - op2 Registration message for ussd pin ${application} 1. Yes 2. No + op2 Registration message for ussd pin ${application} 1. Yes 2. No + op2 Login message for ussd pin ${application} 1. Yes 2. No Re-enter your PIN - Invalid format. Please re-enter your pin - Pin mismatch. Please re-enter your pin - Registration Success - Access Denied. You have exceeded maximum number of retry attempts - Access Denied. You have exceeded maximum number of confirmation attempts + Invalid format. Please re-enter your pin + + Pin mismatch. Please re-enter your pin + + Registration Success + + Access Denied. You have exceeded maximum number of retry attempts + + Access Denied. You have exceeded maximum number of confirmation attempts + Callback URL for USSD pin authentication - Message content for USSD registration ${application} 1. Yes 2. No + Message content for USSD registration ${application} 1. Yes 2. No + 4 3 3 - Message content for USSD login ${application} 1. Yes 2. No - 1,yes,ok,y + Message content for USSD login ${application} 1. Yes 2. No + + 1,yes,ok,y + 2,no,n - op1 Message content for USSD registration ${application} 1. Yes 2. No + op1 Message content for USSD registration ${application} 1. Yes 2. No + op1 Message content for USSD login ${application} 1. Yes 2. No - op2 Message content for USSD registration ${application} 1. Yes 2. No + op2 Message content for USSD registration ${application} 1. Yes 2. No + op2 Message content for USSD login ${application} 1. Yes 2. No @@ -134,9 +168,13 @@ - http://localhost:9763/saaserver/services/serverAPI/api/v1/clients/{msisdn}/authenticate - http://localhost:9763/saaserver/services/serverAPI/api/v1/clients/{msisdn}/is_registered - http://localhost:9763/saaserver/services/pushServiceAPI/client/{msisdn}/send + + http://localhost:9763/saaserver/services/serverAPI/api/v1/clients/{msisdn}/authenticate + + http://localhost:9763/saaserver/services/serverAPI/api/v1/clients/{msisdn}/is_registered + + http://localhost:9763/saaserver/services/pushServiceAPI/client/{msisdn}/send + https://localhost:9443/acrengine/ @@ -212,22 +250,24 @@ true - - J2lAGcsgEILuhiSyPwsljG4OoxzyIiaX - EBmKGJmSsOsniAXY - - https://integration.mobileconnect.io/rv/v1/exchange/organizations/dialog_srilanka/validate - - - https://india.discover.mobileconnect.io/gsma/v2/discovery/ - http://jenkins.wso2telco.com:9763/playground2/oauth2.jsp - 919958713388 - - + + J2lAGcsgEILuhiSyPwsljG4OoxzyIiaX + EBmKGJmSsOsniAXY + + https://integration.mobileconnect.io/rv/v1/exchange/organizations/dialog_srilanka/validate + + + + https://india.discover.mobileconnect.io/gsma/v2/discovery/ + http://jenkins.wso2telco.com:9763/playground2/oauth2.jsp + 919958713388 + + https://localhost:9443/services/OAuthAdminService - https://localhost:9443/services/IdentityApplicationManagementService + https://localhost:9443/services/IdentityApplicationManagementService + admin admin 100 @@ -251,7 +291,9 @@ admin admin OAuth-2.0 - authorization_code implicit password client_credentials refresh_token urn:ietf:params:oauth:grant-type:saml2-bearer iwa:ntlm + authorization_code implicit password client_credentials refresh_token + urn:ietf:params:oauth:grant-type:saml2-bearer iwa:ntlm + false false @@ -267,35 +309,14 @@ admin - - airtel - airtel - - - tata - tatadocomo - - - vodafone_india - vodafone - - - idea - idea - - - uninor - telenor - - - aircel - aircel + operator1 + operator1 - spark - spark + operator2 + operator2 @@ -312,7 +333,7 @@ msisdn - + discovery https://url oauthCode From 3a5da651af07cc9c4ab9b4eabc57f42e5055641e Mon Sep 17 00:00:00 2001 From: nilan Date: Fri, 28 Jul 2017 11:39:29 +0530 Subject: [PATCH 25/26] IDSDEV-658 --- modules/idsconfig/mobile-connect.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/idsconfig/mobile-connect.xml b/modules/idsconfig/mobile-connect.xml index 1255859..5b6db56 100755 --- a/modules/idsconfig/mobile-connect.xml +++ b/modules/idsconfig/mobile-connect.xml @@ -318,6 +318,10 @@ operator2 operator2 + + spark + spark + From 5d5fc36fb1b5232eee0247097d3bb50ce7775a1f Mon Sep 17 00:00:00 2001 From: tharsigam Date: Tue, 29 Aug 2017 13:35:31 +0530 Subject: [PATCH 26/26] IDSDEV-678-Add New Publishing Points for Token Failure --- modules/idsconfig/identity.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/idsconfig/identity.xml b/modules/idsconfig/identity.xml index 6b6505d..f21a939 100755 --- a/modules/idsconfig/identity.xml +++ b/modules/idsconfig/identity.xml @@ -192,9 +192,13 @@ - + + + authorization_code + com.wso2telco.openidtokenbuilder.CustomAuthorizationCodeGrantHandler password