mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Change invoker uri and remove headers
This commit is contained in:
parent
519cb16393
commit
f3a4abb190
@ -8,7 +8,7 @@
|
|||||||
"hostname": "localhost",
|
"hostname": "localhost",
|
||||||
"httpsPort": "9443",
|
"httpsPort": "9443",
|
||||||
"invoker": {
|
"invoker": {
|
||||||
"uri": "/ui-request-handler/invoke",
|
"uri": "/publisher-ui-request-handler/invoke",
|
||||||
"publisher": "/application-mgt-publisher/v1.0",
|
"publisher": "/application-mgt-publisher/v1.0",
|
||||||
"store": "/application-mgt-store/v1.0",
|
"store": "/application-mgt-store/v1.0",
|
||||||
"admin" : ""
|
"admin" : ""
|
||||||
|
|||||||
@ -30,13 +30,9 @@ class DetailedRating extends React.Component{
|
|||||||
}
|
}
|
||||||
|
|
||||||
getData = (type, uuid)=>{
|
getData = (type, uuid)=>{
|
||||||
console.log();
|
|
||||||
|
|
||||||
return axios.get(
|
return axios.get(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.store+"/reviews/"+uuid+"/"+type+"-rating",
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/admin/reviews/"+uuid+"/"+type+"-rating",
|
||||||
{
|
).then(res => {
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
|
||||||
}).then(res => {
|
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
let detailedRating = res.data.data;
|
let detailedRating = res.data.data;
|
||||||
this.setState({
|
this.setState({
|
||||||
|
|||||||
@ -108,9 +108,7 @@ class AppsTable extends React.Component {
|
|||||||
axios.post(
|
axios.post(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/applications",
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/applications",
|
||||||
data,
|
data,
|
||||||
{
|
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
|
||||||
}
|
|
||||||
).then(res => {
|
).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
let apps = [];
|
let apps = [];
|
||||||
|
|||||||
@ -31,7 +31,7 @@ class Reviews extends React.Component {
|
|||||||
const {uuid, type} = this.props;
|
const {uuid, type} = this.props;
|
||||||
|
|
||||||
axios.get(
|
axios.get(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.store+"/reviews/"+type+"/"+uuid,
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/admin/reviews/"+type+"/"+uuid,
|
||||||
{
|
{
|
||||||
headers: {'X-Platform': config.serverConfig.platform}
|
headers: {'X-Platform': config.serverConfig.platform}
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
|
|||||||
@ -22,9 +22,7 @@ class ManageCategories extends React.Component {
|
|||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
axios.get(
|
axios.get(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/applications/categories",
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/applications/categories",
|
||||||
{
|
).then(res => {
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
|
||||||
}).then(res => {
|
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
let categories = JSON.parse(res.data.data);
|
let categories = JSON.parse(res.data.data);
|
||||||
this.setState({
|
this.setState({
|
||||||
@ -59,9 +57,7 @@ class ManageCategories extends React.Component {
|
|||||||
});
|
});
|
||||||
axios.delete(
|
axios.delete(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/admin/applications/categories/"+id,
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/admin/applications/categories/"+id,
|
||||||
{
|
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
|
||||||
}
|
|
||||||
).then(res => {
|
).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
notification["success"]({
|
notification["success"]({
|
||||||
@ -202,9 +198,7 @@ class ManageCategories extends React.Component {
|
|||||||
axios.post(
|
axios.post(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/admin/applications/categories",
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/admin/applications/categories",
|
||||||
data,
|
data,
|
||||||
{
|
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
|
||||||
}
|
|
||||||
).then(res => {
|
).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
notification["success"]({
|
notification["success"]({
|
||||||
@ -267,9 +261,7 @@ class ManageCategories extends React.Component {
|
|||||||
axios.put(
|
axios.put(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/admin/applications/categories/rename?from="+currentlyEditingId+"&to="+editingValue,
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/admin/applications/categories/rename?from="+currentlyEditingId+"&to="+editingValue,
|
||||||
{},
|
{},
|
||||||
{
|
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
|
||||||
}
|
|
||||||
).then(res => {
|
).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
notification["success"]({
|
notification["success"]({
|
||||||
|
|||||||
@ -22,9 +22,7 @@ class ManageTags extends React.Component {
|
|||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
axios.get(
|
axios.get(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/applications/tags",
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/applications/tags",
|
||||||
{
|
).then(res => {
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
|
||||||
}).then(res => {
|
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
let tags = JSON.parse(res.data.data);
|
let tags = JSON.parse(res.data.data);
|
||||||
this.setState({
|
this.setState({
|
||||||
@ -202,9 +200,7 @@ class ManageTags extends React.Component {
|
|||||||
|
|
||||||
axios.post(config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/applications/tags",
|
axios.post(config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/applications/tags",
|
||||||
data,
|
data,
|
||||||
{
|
).then(res => {
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
|
||||||
}).then(res => {
|
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
notification["success"]({
|
notification["success"]({
|
||||||
message: "Done!",
|
message: "Done!",
|
||||||
@ -266,9 +262,7 @@ class ManageTags extends React.Component {
|
|||||||
axios.put(
|
axios.put(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/applications/tags/rename?from="+currentlyEditingId+"&to="+editingValue,
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/applications/tags/rename?from="+currentlyEditingId+"&to="+editingValue,
|
||||||
{},
|
{},
|
||||||
{
|
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
|
||||||
}
|
|
||||||
).then(res => {
|
).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
notification["success"]({
|
notification["success"]({
|
||||||
|
|||||||
@ -9,13 +9,13 @@
|
|||||||
"httpsPort": "9443",
|
"httpsPort": "9443",
|
||||||
"invokerUri": "/ui-request-handler/invoke/application-mgt-store/v1.0",
|
"invokerUri": "/ui-request-handler/invoke/application-mgt-store/v1.0",
|
||||||
"invoker": {
|
"invoker": {
|
||||||
"uri": "/ui-request-handler/invoke",
|
"uri": "/store-ui-request-handler/invoke",
|
||||||
"publisher": "/application-mgt-publisher/v1.0",
|
"publisher": "/application-mgt-publisher/v1.0",
|
||||||
"store": "/application-mgt-store/v1.0",
|
"store": "/application-mgt-store/v1.0",
|
||||||
"admin" : "",
|
"admin" : "",
|
||||||
"deviceMgt" : "/device-mgt/v1.0"
|
"deviceMgt" : "/device-mgt/v1.0"
|
||||||
},
|
},
|
||||||
"loginUri": "/ui-request-handler/login",
|
"loginUri": "/store-ui-request-handler/login",
|
||||||
"platform": "store"
|
"platform": "store"
|
||||||
},
|
},
|
||||||
"defaultPlatformIcons": {
|
"defaultPlatformIcons": {
|
||||||
|
|||||||
@ -43,9 +43,7 @@ class AppList extends React.Component {
|
|||||||
axios.post(
|
axios.post(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.store+"/applications/",
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.store+"/applications/",
|
||||||
payload,
|
payload,
|
||||||
{
|
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
|
||||||
}
|
|
||||||
).then(res => {
|
).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
//todo remove this property check after backend improvement
|
//todo remove this property check after backend improvement
|
||||||
|
|||||||
@ -33,9 +33,7 @@ class DetailedRating extends React.Component{
|
|||||||
|
|
||||||
return axios.get(
|
return axios.get(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.store+"/reviews/"+uuid+"/"+type+"-rating",
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.store+"/reviews/"+uuid+"/"+type+"-rating",
|
||||||
{
|
).then(res => {
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
|
||||||
}).then(res => {
|
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
let detailedRating = res.data.data;
|
let detailedRating = res.data.data;
|
||||||
this.setState({
|
this.setState({
|
||||||
|
|||||||
@ -140,9 +140,7 @@ class DeviceInstall extends React.Component {
|
|||||||
//send request to the invoker
|
//send request to the invoker
|
||||||
axios.get(
|
axios.get(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.deviceMgt+"devices?" + encodedExtraParams,
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.deviceMgt+"devices?" + encodedExtraParams,
|
||||||
{
|
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
|
||||||
}
|
|
||||||
).then(res => {
|
).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
const pagination = {...this.state.pagination};
|
const pagination = {...this.state.pagination};
|
||||||
|
|||||||
@ -29,9 +29,7 @@ class GroupInstall extends React.Component {
|
|||||||
|
|
||||||
axios.post(
|
axios.post(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.deviceMgt+"/groups?name=" + value,
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.deviceMgt+"/groups?name=" + value,
|
||||||
{
|
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
|
||||||
}
|
|
||||||
).then(res => {
|
).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
if (fetchId !== this.lastFetchId) {
|
if (fetchId !== this.lastFetchId) {
|
||||||
|
|||||||
@ -29,9 +29,7 @@ class RoleInstall extends React.Component {
|
|||||||
|
|
||||||
axios.get(
|
axios.get(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.deviceMgt+"/roles?filter=" + value,
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.deviceMgt+"/roles?filter=" + value,
|
||||||
{
|
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
|
||||||
}
|
|
||||||
).then(res => {
|
).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
if (fetchId !== this.lastFetchId) {
|
if (fetchId !== this.lastFetchId) {
|
||||||
|
|||||||
@ -31,9 +31,7 @@ class UserInstall extends React.Component {
|
|||||||
//send request to the invoker
|
//send request to the invoker
|
||||||
axios.get(
|
axios.get(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.deviceMgt+"/users/search?username=" + value,
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.deviceMgt+"/users/search?username=" + value,
|
||||||
{
|
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
|
||||||
}
|
|
||||||
).then(res => {
|
).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
if (fetchId !== this.lastFetchId) {
|
if (fetchId !== this.lastFetchId) {
|
||||||
|
|||||||
@ -57,9 +57,7 @@ class AddReview extends React.Component {
|
|||||||
axios.post(
|
axios.post(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.store+"/reviews/"+uuid,
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.store+"/reviews/"+uuid,
|
||||||
payload,
|
payload,
|
||||||
{
|
).then(res => {
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
|
||||||
}).then(res => {
|
|
||||||
if (res.status === 201) {
|
if (res.status === 201) {
|
||||||
this.setState({
|
this.setState({
|
||||||
loading: false,
|
loading: false,
|
||||||
|
|||||||
@ -39,9 +39,7 @@ class Release extends React.Component {
|
|||||||
//send request to the invoker
|
//send request to the invoker
|
||||||
axios.get(
|
axios.get(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.store+"/applications/"+uuid,
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.store+"/applications/"+uuid,
|
||||||
{
|
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
|
||||||
}
|
|
||||||
).then(res => {
|
).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
let app = res.data.data;
|
let app = res.data.data;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user