Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzuaa
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzuaa
提交
4954d427
提交
4954d427
编写于
6月 23, 2020
作者:
sq3536
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
默认的addr
上级
8abd0cbf
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
44 行增加
和
5 行删除
+44
-5
SysAppService.java
...cn/ibizlab/core/uaa/extensions/service/SysAppService.java
+32
-4
UAACoreResource.java
.../java/cn/ibizlab/api/rest/extensions/UAACoreResource.java
+12
-1
未找到文件。
ibzuaa-core/src/main/java/cn/ibizlab/core/uaa/extensions/service/SysAppService.java
浏览文件 @
4954d427
...
...
@@ -13,7 +13,11 @@ import cn.ibizlab.util.security.AuthenticationUser;
import
cn.ibizlab.util.service.IBZConfigService
;
import
com.alibaba.fastjson.JSONArray
;
import
com.alibaba.fastjson.JSONObject
;
import
com.alibaba.nacos.api.naming.NamingFactory
;
import
com.alibaba.nacos.api.naming.NamingService
;
import
com.alibaba.nacos.api.naming.pojo.Instance
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.cache.annotation.CacheEvict
;
import
org.springframework.cache.annotation.Cacheable
;
import
org.springframework.context.annotation.Primary
;
...
...
@@ -22,10 +26,7 @@ import org.springframework.data.domain.PageImpl;
import
org.springframework.stereotype.Service
;
import
org.springframework.util.StringUtils
;
import
java.util.ArrayList
;
import
java.util.LinkedHashMap
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.*
;
@Primary
@Service
...
...
@@ -41,6 +42,8 @@ public class SysAppService extends SysAppServiceImpl
@Autowired
private
UAACoreService
uaaCoreService
;
@Value
(
"${spring.cloud.nacos.discovery.server-addr:127.0.0.1:8848}"
)
private
String
serverAddr
;
//@Cacheable( value="ibzuaa_switcher",key = "'id:'+#p0+'||'+#p1")
public
JSONObject
getAppSwitcher
(
String
id
,
String
userId
)
...
...
@@ -79,6 +82,31 @@ public class SysAppService extends SysAppServiceImpl
sysApp
.
setVisabled
(
0
);
list
.
add
(
sysApp
);
});
try
{
Properties
properties
=
new
Properties
();
properties
.
setProperty
(
"serverAddr"
,
serverAddr
);
NamingService
naming
=
NamingFactory
.
createNamingService
(
properties
);
list
.
forEach
(
sysApp
->
{
if
(
StringUtils
.
isEmpty
(
sysApp
.
getAddr
()))
{
try
{
Instance
instance
=
naming
.
selectOneHealthyInstance
(
sysApp
.
getId
());
if
(
instance
!=
null
)
{
String
domains
=
"http://"
+
instance
.
getIp
();
if
(
instance
.
getPort
()!=
80
)
domains
=
domains
+
":"
+
instance
.
getPort
();
sysApp
.
setAddr
(
domains
);
}
}
catch
(
Exception
ex
){}
}
});
}
catch
(
Exception
ex
){}
jo
.
remove
(
"model"
);
jo
.
put
(
"model"
,
JSONArray
.
toJSON
(
list
));
return
jo
;
...
...
ibzuaa-provider/ibzuaa-provider-api/src/main/java/cn/ibizlab/api/rest/extensions/UAACoreResource.java
浏览文件 @
4954d427
...
...
@@ -17,11 +17,14 @@ import com.alibaba.fastjson.JSONObject;
import
io.swagger.annotations.ApiOperation
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.context.annotation.Lazy
;
import
org.springframework.http.HttpRequest
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.util.StringUtils
;
import
org.springframework.validation.annotation.Validated
;
import
org.springframework.web.bind.annotation.*
;
import
javax.servlet.http.HttpServletRequest
;
import
javax.validation.constraints.NotBlank
;
import
java.util.List
;
import
java.util.Map
;
...
...
@@ -82,8 +85,16 @@ public class UAACoreResource {
private
SysAppService
sysAppService
;
@GetMapping
(
value
=
"uaa/access-center/app-switcher/{id}"
)
public
ResponseEntity
<
JSONObject
>
appswitcher
(
@PathVariable
(
"id"
)
String
id
)
public
ResponseEntity
<
JSONObject
>
appswitcher
(
@PathVariable
(
"id"
)
String
id
,
HttpServletRequest
request
)
{
String
proto
=
request
.
getHeader
(
"x-forwarded-proto"
);
String
hosts
=
request
.
getHeader
(
"x-forwarded-for"
);
String
domains
=
""
;
if
(
StringUtils
.
isEmpty
(
proto
))
proto
=
"http"
;
if
(!
StringUtils
.
isEmpty
(
hosts
))
domains
=
proto
+
"://"
+
hosts
;
return
ResponseEntity
.
ok
(
sysAppService
.
getAppSwitcher
(
id
,
AuthenticationUser
.
getAuthenticationUser
().
getUserid
()));
}
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录