Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
discovery
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
谢捷峰
discovery
Commits
bb04aed3
Commit
bb04aed3
authored
Jun 28, 2018
by
Nepxion
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加路由中心
parent
4b62dce0
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
144 additions
and
86 deletions
+144
-86
discovery-plugin-framework/src/main/java/com/nepxion/discovery/plugin/framework/configuration/PluginAutoConfiguration.java
+0
-14
discovery-plugin-framework/src/main/java/com/nepxion/discovery/plugin/framework/entity/RouterEntity.java
+4
-4
discovery-plugin-router-center/pom.xml
+24
-0
discovery-plugin-router-center/src/main/java/com/nepxion/discovery/plugin/routercenter/configuration/RouterAutoConfiguration.java
+32
-0
discovery-plugin-router-center/src/main/java/com/nepxion/discovery/plugin/routercenter/controller/RouterController.java
+68
-66
discovery-plugin-starter/pom.xml
+6
-0
discovery-plugin-starter/src/main/resources/META-INF/spring.factories
+3
-2
pom.xml
+7
-0
No files found.
discovery-plugin-framework/src/main/java/com/nepxion/discovery/plugin/framework/configuration/PluginAutoConfiguration.java
View file @
bb04aed3
...
...
@@ -12,13 +12,10 @@ package com.nepxion.discovery.plugin.framework.configuration;
import
java.util.concurrent.locks.ReentrantReadWriteLock
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.ComponentScan
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.web.client.RestTemplate
;
import
com.nepxion.discovery.plugin.framework.context.PluginContainerInitializedHandler
;
import
com.nepxion.discovery.plugin.framework.context.PluginContextAware
;
import
com.nepxion.discovery.plugin.framework.controller.PluginRouterController
;
import
com.nepxion.discovery.plugin.framework.entity.RuleEntity
;
import
com.nepxion.discovery.plugin.framework.event.PluginPublisher
;
import
com.nepxion.discovery.plugin.framework.listener.DiscoveryListenerExecutor
;
...
...
@@ -28,7 +25,6 @@ import com.nepxion.discovery.plugin.framework.listener.impl.IpAddressFilterRegis
import
com.nepxion.discovery.plugin.framework.listener.impl.VersionFilterDiscoveryListener
;
@Configuration
@ComponentScan
(
basePackages
=
{
"com.nepxion.discovery.plugin.framework.controller"
})
public
class
PluginAutoConfiguration
{
static
{
System
.
out
.
println
(
""
);
...
...
@@ -45,11 +41,6 @@ public class PluginAutoConfiguration {
}
@Bean
public
RestTemplate
pluginRestTemplate
()
{
return
new
RestTemplate
();
}
@Bean
public
PluginContainerInitializedHandler
pluginContainerInitializedHandler
()
{
return
new
PluginContainerInitializedHandler
();
}
...
...
@@ -65,11 +56,6 @@ public class PluginAutoConfiguration {
}
@Bean
public
PluginRouterController
pluginRouterController
()
{
return
new
PluginRouterController
();
}
@Bean
public
RuleEntity
ruleEntity
()
{
return
new
RuleEntity
();
}
...
...
discovery-plugin-framework/src/main/java/com/nepxion/discovery/plugin/framework/entity/RouteEntity.java
→
discovery-plugin-framework/src/main/java/com/nepxion/discovery/plugin/framework/entity/Route
r
Entity.java
View file @
bb04aed3
...
...
@@ -20,7 +20,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
import
com.nepxion.discovery.plugin.framework.constant.PluginConstant
;
public
class
RouteEntity
implements
Serializable
{
public
class
Route
r
Entity
implements
Serializable
{
private
static
final
long
serialVersionUID
=
-
4480475963615166799L
;
private
String
serviceId
;
...
...
@@ -28,7 +28,7 @@ public class RouteEntity implements Serializable {
private
String
host
;
private
int
port
;
private
List
<
Route
Entity
>
nexts
=
new
ArrayList
<
Route
Entity
>();
private
List
<
Route
rEntity
>
nexts
=
new
ArrayList
<
Router
Entity
>();
public
String
getServiceId
()
{
return
serviceId
;
...
...
@@ -62,11 +62,11 @@ public class RouteEntity implements Serializable {
this
.
port
=
port
;
}
public
List
<
RouteEntity
>
getNexts
()
{
public
List
<
Route
r
Entity
>
getNexts
()
{
return
nexts
;
}
public
void
setNexts
(
List
<
RouteEntity
>
nexts
)
{
public
void
setNexts
(
List
<
Route
r
Entity
>
nexts
)
{
this
.
nexts
=
nexts
;
}
...
...
discovery-plugin-router-center/pom.xml
0 → 100644
View file @
bb04aed3
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<artifactId>
discovery-plugin-router-center
</artifactId>
<name>
Nepxion Discovery Plugin Router Center
</name>
<packaging>
jar
</packaging>
<modelVersion>
4.0.0
</modelVersion>
<description>
Nepxion Discovery is an enhancement for Spring Cloud Discovery
</description>
<url>
http://www.nepxion.com
</url>
<parent>
<groupId>
com.nepxion
</groupId>
<artifactId>
discovery
</artifactId>
<version>
2.0.10
</version>
</parent>
<dependencies>
<dependency>
<groupId>
${project.groupId}
</groupId>
<artifactId>
discovery-plugin-framework
</artifactId>
</dependency>
</dependencies>
</project>
\ No newline at end of file
discovery-plugin-router-center/src/main/java/com/nepxion/discovery/plugin/routercenter/configuration/RouterAutoConfiguration.java
0 → 100644
View file @
bb04aed3
package
com
.
nepxion
.
discovery
.
plugin
.
routercenter
.
configuration
;
/**
* <p>Title: Nepxion Discovery</p>
* <p>Description: Nepxion Discovery</p>
* <p>Copyright: Copyright (c) 2017-2050</p>
* <p>Company: Nepxion</p>
* @author Haojun Ren
* @version 1.0
*/
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.ComponentScan
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.web.client.RestTemplate
;
import
com.nepxion.discovery.plugin.routercenter.controller.RouterController
;
@Configuration
@ComponentScan
(
basePackages
=
{
"com.nepxion.discovery.plugin.routercenter.controller"
})
public
class
RouterAutoConfiguration
{
@Bean
public
RestTemplate
routerRestTemplate
()
{
return
new
RestTemplate
();
}
@Bean
public
RouterController
routerController
()
{
return
new
RouterController
();
}
}
\ No newline at end of file
discovery-plugin-
framework/src/main/java/com/nepxion/discovery/plugin/framework/controller/Plugin
RouterController.java
→
discovery-plugin-
router-center/src/main/java/com/nepxion/discovery/plugin/routercenter/controller/
RouterController.java
View file @
bb04aed3
package
com
.
nepxion
.
discovery
.
plugin
.
framework
.
controller
;
package
com
.
nepxion
.
discovery
.
plugin
.
routercenter
.
controller
;
/**
* <p>Title: Nepxion Discovery</p>
...
...
@@ -30,12 +30,12 @@ import org.springframework.web.client.RestTemplate;
import
com.nepxion.discovery.plugin.framework.constant.PluginConstant
;
import
com.nepxion.discovery.plugin.framework.context.PluginContainerInitializedHandler
;
import
com.nepxion.discovery.plugin.framework.context.PluginContextAware
;
import
com.nepxion.discovery.plugin.framework.entity.RouteEntity
;
import
com.nepxion.discovery.plugin.framework.entity.Route
r
Entity
;
import
com.nepxion.discovery.plugin.framework.exception.PluginException
;
import
com.nepxion.eventbus.util.HostUtil
;
@RestController
public
class
Plugin
RouterController
{
public
class
RouterController
{
@Autowired
private
PluginContainerInitializedHandler
pluginContainerInitializedHandler
;
...
...
@@ -43,7 +43,7 @@ public class PluginRouterController {
private
PluginContextAware
pluginContextAware
;
@Autowired
private
RestTemplate
plugin
RestTemplate
;
private
RestTemplate
router
RestTemplate
;
@Autowired
private
DiscoveryClient
discoveryClient
;
...
...
@@ -56,25 +56,25 @@ public class PluginRouterController {
// 获取本地节点的路由信息
@RequestMapping
(
path
=
"/info"
,
method
=
RequestMethod
.
GET
)
public
RouteEntity
info
()
{
return
getRouteEntity
();
public
Route
r
Entity
info
()
{
return
getRoute
r
Entity
();
}
// 获取本地节点可访问其他节点(根据服务名)的路由信息列表
@RequestMapping
(
path
=
"/routes/{routeServiceId}"
,
method
=
RequestMethod
.
GET
)
public
List
<
RouteEntity
>
routes
(
@PathVariable
(
value
=
"routeServiceId"
)
String
routeServiceId
)
{
return
getRouteEntityList
(
routeServiceId
);
public
List
<
Route
r
Entity
>
routes
(
@PathVariable
(
value
=
"routeServiceId"
)
String
routeServiceId
)
{
return
getRoute
r
EntityList
(
routeServiceId
);
}
// 获取指定节点(根据IP和端口)可访问其他节点(根据服务名)的路由信息列表
@RequestMapping
(
path
=
"/routes/{routeServiceId}/{routeHost}/{routePort}"
,
method
=
RequestMethod
.
GET
)
public
List
<
RouteEntity
>
routes
(
@PathVariable
(
value
=
"routeServiceId"
)
String
routeServiceId
,
@PathVariable
(
value
=
"routeHost"
)
String
routeHost
,
@PathVariable
(
value
=
"routePort"
)
int
routePort
)
{
return
getRouteEntityList
(
routeServiceId
,
routeHost
,
routePort
);
public
List
<
Route
r
Entity
>
routes
(
@PathVariable
(
value
=
"routeServiceId"
)
String
routeServiceId
,
@PathVariable
(
value
=
"routeHost"
)
String
routeHost
,
@PathVariable
(
value
=
"routePort"
)
int
routePort
)
{
return
getRoute
r
EntityList
(
routeServiceId
,
routeHost
,
routePort
);
}
// 获取全路径的路由信息
@RequestMapping
(
path
=
"/routeAll"
,
method
=
RequestMethod
.
POST
)
public
RouteEntity
routeAll
(
@RequestBody
String
serviceIds
)
{
public
Route
r
Entity
routeAll
(
@RequestBody
String
serviceIds
)
{
return
route
(
serviceIds
);
}
...
...
@@ -82,22 +82,22 @@ public class PluginRouterController {
return
discoveryClient
.
getInstances
(
serviceId
);
}
public
Route
Entity
getRoute
Entity
()
{
public
Route
rEntity
getRouter
Entity
()
{
String
serviceId
=
pluginContextAware
.
getEnvironment
().
getProperty
(
PluginConstant
.
SPRING_APPLICATION_NAME
);
String
version
=
pluginContextAware
.
getEnvironment
().
getProperty
(
PluginConstant
.
EUREKA_METADATA_VERSION
);
String
host
=
HostUtil
.
getLocalhost
();
int
port
=
pluginContainerInitializedHandler
.
getPort
();
Route
Entity
routeEntity
=
new
Route
Entity
();
routeEntity
.
setServiceId
(
serviceId
);
routeEntity
.
setVersion
(
version
);
routeEntity
.
setHost
(
host
);
routeEntity
.
setPort
(
port
);
Route
rEntity
routerEntity
=
new
Router
Entity
();
route
r
Entity
.
setServiceId
(
serviceId
);
route
r
Entity
.
setVersion
(
version
);
route
r
Entity
.
setHost
(
host
);
route
r
Entity
.
setPort
(
port
);
return
routeEntity
;
return
route
r
Entity
;
}
public
List
<
Route
Entity
>
getRoute
EntityList
(
String
routeServiceId
)
{
public
List
<
Route
rEntity
>
getRouter
EntityList
(
String
routeServiceId
)
{
List
<
ServiceInstance
>
instanceList
=
null
;
try
{
...
...
@@ -110,32 +110,32 @@ public class PluginRouterController {
return
null
;
}
List
<
Route
Entity
>
routeEntityList
=
new
ArrayList
<
Route
Entity
>();
List
<
Route
rEntity
>
routerEntityList
=
new
ArrayList
<
Router
Entity
>();
for
(
ServiceInstance
instance
:
instanceList
)
{
String
serviceId
=
instance
.
getServiceId
().
toLowerCase
();
String
version
=
instance
.
getMetadata
().
get
(
PluginConstant
.
VERSION
);
String
host
=
instance
.
getHost
();
int
port
=
instance
.
getPort
();
Route
Entity
routeEntity
=
new
Route
Entity
();
routeEntity
.
setServiceId
(
serviceId
);
routeEntity
.
setVersion
(
version
);
routeEntity
.
setHost
(
host
);
routeEntity
.
setPort
(
port
);
Route
rEntity
routerEntity
=
new
Router
Entity
();
route
r
Entity
.
setServiceId
(
serviceId
);
route
r
Entity
.
setVersion
(
version
);
route
r
Entity
.
setHost
(
host
);
route
r
Entity
.
setPort
(
port
);
route
EntityList
.
add
(
route
Entity
);
route
rEntityList
.
add
(
router
Entity
);
}
return
routeEntityList
;
return
route
r
EntityList
;
}
@SuppressWarnings
(
"unchecked"
)
public
List
<
Route
Entity
>
getRoute
EntityList
(
String
routeServiceId
,
String
routeHost
,
int
routePort
)
{
public
List
<
Route
rEntity
>
getRouter
EntityList
(
String
routeServiceId
,
String
routeHost
,
int
routePort
)
{
String
url
=
"http://"
+
routeHost
+
":"
+
routePort
+
"/"
+
PluginConstant
.
INSTANCES
+
"/"
+
routeServiceId
;
List
<
Map
<
String
,
?>>
instanceList
=
null
;
try
{
instanceList
=
plugin
RestTemplate
.
getForEntity
(
url
,
List
.
class
).
getBody
();
instanceList
=
router
RestTemplate
.
getForEntity
(
url
,
List
.
class
).
getBody
();
}
catch
(
RestClientException
e
)
{
throw
new
PluginException
(
"Get instance list for serviceId="
+
routeServiceId
+
" with url="
+
url
+
" failed"
,
e
);
}
...
...
@@ -144,26 +144,26 @@ public class PluginRouterController {
return
null
;
}
List
<
Route
Entity
>
routeEntityList
=
new
ArrayList
<
Route
Entity
>();
List
<
Route
rEntity
>
routerEntityList
=
new
ArrayList
<
Router
Entity
>();
for
(
Map
<
String
,
?>
instance
:
instanceList
)
{
String
serviceId
=
instance
.
get
(
PluginConstant
.
SERVICE_ID
).
toString
().
toLowerCase
();
String
version
=
((
Map
<
String
,
String
>)
instance
.
get
(
PluginConstant
.
METADATA
)).
get
(
PluginConstant
.
VERSION
);
String
host
=
instance
.
get
(
PluginConstant
.
HOST
).
toString
();
Integer
port
=
(
Integer
)
instance
.
get
(
PluginConstant
.
PORT
);
Route
Entity
routeEntity
=
new
Route
Entity
();
routeEntity
.
setServiceId
(
serviceId
);
routeEntity
.
setVersion
(
version
);
routeEntity
.
setHost
(
host
);
routeEntity
.
setPort
(
port
);
Route
rEntity
routerEntity
=
new
Router
Entity
();
route
r
Entity
.
setServiceId
(
serviceId
);
route
r
Entity
.
setVersion
(
version
);
route
r
Entity
.
setHost
(
host
);
route
r
Entity
.
setPort
(
port
);
route
EntityList
.
add
(
route
Entity
);
route
rEntityList
.
add
(
router
Entity
);
}
return
routeEntityList
;
return
route
r
EntityList
;
}
public
RouteEntity
route
(
String
serviceIds
)
{
public
Route
r
Entity
route
(
String
serviceIds
)
{
if
(
StringUtils
.
isEmpty
(
serviceIds
))
{
throw
new
PluginException
(
"Service ids is empty"
);
}
...
...
@@ -175,55 +175,56 @@ public class PluginRouterController {
throw
new
PluginException
(
"Service ids must be separated with '"
+
PluginConstant
.
SEPARATE
+
"'"
,
e
);
}
Route
Entity
firstRouteEntity
=
getRoute
Entity
();
Route
rEntity
firstRouterEntity
=
getRouter
Entity
();
HashMap
<
String
,
List
<
RouteEntity
>>
routeEntityMap
=
new
HashMap
<
String
,
List
<
RouteEntity
>>();
String
previousServiceId
=
null
;
// 路由深度为Key
HashMap
<
Integer
,
List
<
RouterEntity
>>
routerEntityMap
=
new
HashMap
<
Integer
,
List
<
RouterEntity
>>();
int
routerDepth
=
0
;
for
(
String
serviceId
:
serviceIdArray
)
{
serviceId
=
serviceId
.
toLowerCase
().
trim
();
if
(
previousServiceId
==
null
)
{
routeFirst
(
firstRouteEntity
,
serviceId
);
if
(
routerDepth
==
0
)
{
routeFirst
(
firstRoute
r
Entity
,
serviceId
);
retrieveRoute
EntityList
(
routeEntityMap
,
serviceId
).
addAll
(
firstRoute
Entity
.
getNexts
());
retrieveRoute
rEntityList
(
routerEntityMap
,
routerDepth
).
addAll
(
firstRouter
Entity
.
getNexts
());
}
else
{
List
<
Route
Entity
>
routeEntityList
=
retrieveRouteEntityList
(
routeEntityMap
,
previousServiceId
);
for
(
Route
Entity
routeEntity
:
route
EntityList
)
{
String
routeHost
=
routeEntity
.
getHost
();
int
routePort
=
routeEntity
.
getPort
();
List
<
Route
rEntity
>
routerEntityList
=
retrieveRouterEntityList
(
routerEntityMap
,
routerDepth
-
1
);
for
(
Route
rEntity
routerEntity
:
router
EntityList
)
{
String
routeHost
=
route
r
Entity
.
getHost
();
int
routePort
=
route
r
Entity
.
getPort
();
route
(
routeEntity
,
serviceId
,
routeHost
,
routePort
);
route
(
route
r
Entity
,
serviceId
,
routeHost
,
routePort
);
retrieveRoute
EntityList
(
routeEntityMap
,
serviceId
).
addAll
(
route
Entity
.
getNexts
());
retrieveRoute
rEntityList
(
routerEntityMap
,
routerDepth
).
addAll
(
router
Entity
.
getNexts
());
}
}
previousServiceId
=
serviceId
;
routerDepth
++
;
}
return
firstRouteEntity
;
return
firstRoute
r
Entity
;
}
private
void
routeFirst
(
Route
Entity
route
Entity
,
String
routeServiceId
)
{
List
<
Route
Entity
>
routeEntityList
=
getRoute
EntityList
(
routeServiceId
);
if
(
CollectionUtils
.
isNotEmpty
(
routeEntityList
))
{
route
Entity
.
getNexts
().
addAll
(
route
EntityList
);
private
void
routeFirst
(
Route
rEntity
router
Entity
,
String
routeServiceId
)
{
List
<
Route
rEntity
>
routerEntityList
=
getRouter
EntityList
(
routeServiceId
);
if
(
CollectionUtils
.
isNotEmpty
(
route
r
EntityList
))
{
route
rEntity
.
getNexts
().
addAll
(
router
EntityList
);
}
}
private
void
route
(
Route
Entity
route
Entity
,
String
routeServiceId
,
String
routeHost
,
int
routePort
)
{
List
<
Route
Entity
>
routeEntityList
=
getRoute
EntityList
(
routeServiceId
,
routeHost
,
routePort
);
if
(
CollectionUtils
.
isNotEmpty
(
routeEntityList
))
{
route
Entity
.
getNexts
().
addAll
(
route
EntityList
);
private
void
route
(
Route
rEntity
router
Entity
,
String
routeServiceId
,
String
routeHost
,
int
routePort
)
{
List
<
Route
rEntity
>
routerEntityList
=
getRouter
EntityList
(
routeServiceId
,
routeHost
,
routePort
);
if
(
CollectionUtils
.
isNotEmpty
(
route
r
EntityList
))
{
route
rEntity
.
getNexts
().
addAll
(
router
EntityList
);
}
}
private
List
<
Route
Entity
>
retrieveRouteEntityList
(
HashMap
<
String
,
List
<
RouteEntity
>>
routeEntityMap
,
String
serviceId
)
{
List
<
Route
Entity
>
routeEntityList
=
routeEntityMap
.
get
(
serviceId
);
if
(
routeEntityList
==
null
)
{
route
EntityList
=
new
ArrayList
<
Route
Entity
>();
route
EntityMap
.
put
(
serviceId
,
route
EntityList
);
private
List
<
Route
rEntity
>
retrieveRouterEntityList
(
HashMap
<
Integer
,
List
<
RouterEntity
>>
routerEntityMap
,
int
routerDepth
)
{
List
<
Route
rEntity
>
routerEntityList
=
routerEntityMap
.
get
(
routerDepth
);
if
(
route
r
EntityList
==
null
)
{
route
rEntityList
=
new
ArrayList
<
Router
Entity
>();
route
rEntityMap
.
put
(
routerDepth
,
router
EntityList
);
}
return
routeEntityList
;
return
route
r
EntityList
;
}
}
\ No newline at end of file
discovery-plugin-starter/pom.xml
View file @
bb04aed3
...
...
@@ -24,5 +24,10 @@
<groupId>
${project.groupId}
</groupId>
<artifactId>
discovery-plugin-admin-center
</artifactId>
</dependency>
<dependency>
<groupId>
${project.groupId}
</groupId>
<artifactId>
discovery-plugin-router-center
</artifactId>
</dependency>
</dependencies>
</project>
\ No newline at end of file
discovery-plugin-starter/src/main/resources/META-INF/spring.factories
View file @
bb04aed3
...
...
@@ -4,4 +4,5 @@ com.nepxion.discovery.plugin.framework.context.PluginApplicationContextInitializ
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
com.nepxion.discovery.plugin.framework.configuration.PluginAutoConfiguration,\
com.nepxion.discovery.plugin.configcenter.configuration.ConfigAutoConfiguration,\
com.nepxion.discovery.plugin.admincenter.configuration.AdminAutoConfiguration
\ No newline at end of file
com.nepxion.discovery.plugin.admincenter.configuration.AdminAutoConfiguration,\
com.nepxion.discovery.plugin.routercenter.configuration.RouterAutoConfiguration
\ No newline at end of file
pom.xml
View file @
bb04aed3
...
...
@@ -14,6 +14,7 @@
<module>
discovery-plugin-framework
</module>
<module>
discovery-plugin-config-center
</module>
<module>
discovery-plugin-admin-center
</module>
<module>
discovery-plugin-router-center
</module>
<module>
discovery-plugin-starter
</module>
<module>
discovery-springcloud-example-a
</module>
<module>
discovery-springcloud-example-b
</module>
...
...
@@ -57,6 +58,12 @@
<dependency>
<groupId>
${project.groupId}
</groupId>
<artifactId>
discovery-plugin-router-center
</artifactId>
<version>
${project.version}
</version>
</dependency>
<dependency>
<groupId>
${project.groupId}
</groupId>
<artifactId>
discovery-plugin-starter
</artifactId>
<version>
${project.version}
</version>
</dependency>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment