Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
frontend
Commits
4a32e7de
Unverified
Commit
4a32e7de
authored
Sep 06, 2022
by
tom goriunov
Committed by
GitHub
Sep 06, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #126 from blockscout/csp
csp and some security
parents
e564b95f
09c79f4a
Changes
20
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
193 additions
and
32 deletions
+193
-32
.env.example
.env.example
+2
-0
headers.js
configs/nextjs/headers.js
+26
-0
getCspPolicy.js
lib/csp/getCspPolicy.js
+124
-0
availableNetworks.ts
lib/networks/availableNetworks.ts
+7
-17
getAvailablePaths.ts
lib/networks/getAvailablePaths.ts
+5
-0
isAccountRoute.ts
lib/networks/isAccountRoute.ts
+5
-0
parseNetworkConfig.js
lib/networks/parseNetworkConfig.js
+10
-0
next.config.js
next.config.js
+3
-0
api_key.tsx
pages/[network_type]/[network_sub_type]/account/api_key.tsx
+1
-1
custom_abi.tsx
.../[network_type]/[network_sub_type]/account/custom_abi.tsx
+1
-1
public_tags_request.tsx
..._type]/[network_sub_type]/account/public_tags_request.tsx
+1
-1
tag_address.tsx
...[network_type]/[network_sub_type]/account/tag_address.tsx
+1
-1
tag_transaction.tsx
...work_type]/[network_sub_type]/account/tag_transaction.tsx
+1
-1
watchlist.tsx
...s/[network_type]/[network_sub_type]/account/watchlist.tsx
+1
-1
profile.tsx
pages/[network_type]/[network_sub_type]/auth/profile.tsx
+1
-1
index.tsx
pages/[network_type]/[network_sub_type]/index.tsx
+1
-1
_document.tsx
pages/_document.tsx
+0
-4
NetworkMenuContentDesktop.tsx
ui/blocks/networkMenu/NetworkMenuContentDesktop.tsx
+1
-1
NetworkMenuContentMobile.tsx
ui/blocks/networkMenu/NetworkMenuContentMobile.tsx
+1
-1
NetworkMenuLink.tsx
ui/blocks/networkMenu/NetworkMenuLink.tsx
+1
-1
No files found.
.env.example
View file @
4a32e7de
...
@@ -4,6 +4,8 @@ NEXT_PUBLIC_SENTRY_DSN=xxx
...
@@ -4,6 +4,8 @@ NEXT_PUBLIC_SENTRY_DSN=xxx
SENTRY_ORG=block-scout
SENTRY_ORG=block-scout
SENTRY_PROJECT=new-ui
SENTRY_PROJECT=new-ui
SENTRY_AUTH_TOKEN=xxx
SENTRY_AUTH_TOKEN=xxx
SENTRY_IGNORE_API_RESOLUTION_ERROR=1
SENTRY_CSP_REPORT_URI=xxx
NEXT_PUBLIC_BLOCKSCOUT_VERSION=xxx
NEXT_PUBLIC_BLOCKSCOUT_VERSION=xxx
NEXT_PUBLIC_FOOTER_GITHUB_LINK=https://github.com/blockscout/blockscout
NEXT_PUBLIC_FOOTER_GITHUB_LINK=https://github.com/blockscout/blockscout
NEXT_PUBLIC_FOOTER_TWITTER_LINK=https://www.twitter.com/blockscoutcom
NEXT_PUBLIC_FOOTER_TWITTER_LINK=https://www.twitter.com/blockscoutcom
...
...
configs/nextjs/headers.js
0 → 100644
View file @
4a32e7de
const
getCspPolicy
=
require
(
'
../../lib/csp/getCspPolicy
'
);
async
function
headers
()
{
return
[
{
source
:
'
/:path*
'
,
headers
:
[
// security headers from here - https://nextjs.org/docs/advanced-features/security-headers
{
key
:
'
X-Frame-Options
'
,
value
:
'
SAMEORIGIN
'
,
},
{
key
:
'
X-Content-Type-Options
'
,
value
:
'
nosniff
'
,
},
{
key
:
'
Content-Security-Policy-Report-Only
'
,
value
:
getCspPolicy
(),
},
],
},
];
}
module
.
exports
=
headers
;
lib/csp/getCspPolicy.js
0 → 100644
View file @
4a32e7de
const
parseNetworkConfig
=
require
(
'
../networks/parseNetworkConfig
'
);
const
KEY_WORDS
=
{
BLOB
:
'
blob:
'
,
DATA
:
'
data:
'
,
NONE
:
'
\'
none
\'
'
,
REPORT_SAMPLE
:
`'report-sample'`
,
SELF
:
'
\'
self
\'
'
,
STRICT_DYNAMIC
:
`'strict-dynamic'`
,
UNSAFE_INLINE
:
'
\'
unsafe-inline
\'
'
,
UNSAFE_EVAL
:
'
\'
unsafe-eval
\'
'
,
};
const
MAIN_DOMAINS
=
[
'
*.blockscout.com
'
,
'
blockscout.com
'
];
const
isDev
=
process
.
env
.
NODE_ENV
===
'
development
'
;
function
getNetworksExternalAssets
()
{
const
icons
=
parseNetworkConfig
()
.
filter
(({
icon
})
=>
typeof
icon
===
'
string
'
)
.
map
(({
icon
})
=>
new
URL
(
icon
));
return
icons
;
}
function
makePolicyMap
()
{
const
networkExternalAssets
=
getNetworksExternalAssets
();
return
{
'
default-src
'
:
[
KEY_WORDS
.
NONE
,
],
'
connect-src
'
:
[
KEY_WORDS
.
SELF
,
// webpack hmr in safari doesn't recognize localhost as 'self' for some reason
isDev
?
'
ws://localhost:3000/_next/webpack-hmr
'
:
''
,
// client error monitoring
'
sentry.io
'
,
'
*.sentry.io
'
,
],
'
script-src
'
:
[
KEY_WORDS
.
SELF
,
// next.js generates and rebuilds source maps in dev using eval()
// https://github.com/vercel/next.js/issues/14221#issuecomment-657258278
isDev
?
KEY_WORDS
.
UNSAFE_EVAL
:
''
,
...
MAIN_DOMAINS
,
// hash of ColorModeScript
'
\'
sha256-e7MRMmTzLsLQvIy1iizO1lXf7VWYoQ6ysj5fuUzvRwE=
\'
'
,
],
'
style-src
'
:
[
KEY_WORDS
.
SELF
,
...
MAIN_DOMAINS
,
// google fonts
'
fonts.googleapis.com
'
,
// yes, it is unsafe as it stands, but
// - we cannot use hashes because all styles are generated dynamically
// - we cannot use nonces since we are not following along SSR path
// - and still there is very small damage that can be cause by CSS-based XSS-attacks
// so we hope we are fine here till the first major incident :)
KEY_WORDS
.
UNSAFE_INLINE
,
],
'
img-src
'
:
[
KEY_WORDS
.
SELF
,
KEY_WORDS
.
DATA
,
...
MAIN_DOMAINS
,
// github avatars
'
avatars.githubusercontent.com
'
,
// network assets
...
networkExternalAssets
.
map
((
url
)
=>
url
.
host
),
],
'
font-src
'
:
[
KEY_WORDS
.
DATA
,
// google fonts
'
*.gstatic.com
'
,
'
fonts.googleapis.com
'
,
],
'
object-src
'
:
[
KEY_WORDS
.
NONE
,
],
'
base-uri
'
:
[
KEY_WORDS
.
NONE
,
],
'
report-uri
'
:
[
process
.
env
.
SENTRY_CSP_REPORT_URI
,
],
};
}
function
getCspPolicy
()
{
const
policyMap
=
makePolicyMap
();
const
policyString
=
Object
.
entries
(
policyMap
)
.
map
(([
key
,
value
])
=>
{
if
(
!
value
||
value
.
length
===
0
)
{
return
;
}
return
[
key
,
value
.
join
(
'
'
)
].
join
(
'
'
);
})
.
filter
(
Boolean
)
.
join
(
'
;
'
);
return
policyString
;
}
module
.
exports
=
getCspPolicy
;
lib/networks.ts
→
lib/networks
/availableNetworks
.ts
View file @
4a32e7de
...
@@ -10,6 +10,8 @@ import poaSokolIcon from 'icons/networks/poa-sokol.svg';
...
@@ -10,6 +10,8 @@ import poaSokolIcon from 'icons/networks/poa-sokol.svg';
import
poaIcon
from
'
icons/networks/poa.svg
'
;
import
poaIcon
from
'
icons/networks/poa.svg
'
;
import
rskIcon
from
'
icons/networks/rsk.svg
'
;
import
rskIcon
from
'
icons/networks/rsk.svg
'
;
import
parseNetworkConfig
from
'
./parseNetworkConfig
'
;
// will change later when we agree how to host network icons
// will change later when we agree how to host network icons
const
ICONS
:
Record
<
string
,
React
.
FunctionComponent
<
React
.
SVGAttributes
<
SVGElement
>>>
=
{
const
ICONS
:
Record
<
string
,
React
.
FunctionComponent
<
React
.
SVGAttributes
<
SVGElement
>>>
=
{
'
xdai/mainnet
'
:
gnosisIcon
,
'
xdai/mainnet
'
:
gnosisIcon
,
...
@@ -24,15 +26,13 @@ const ICONS: Record<string, React.FunctionComponent<React.SVGAttributes<SVGEleme
...
@@ -24,15 +26,13 @@ const ICONS: Record<string, React.FunctionComponent<React.SVGAttributes<SVGEleme
'
artis/sigma1
'
:
artisIcon
,
'
artis/sigma1
'
:
artisIcon
,
};
};
export
const
NETWORKS
:
Array
<
Network
>
=
(()
=>
{
const
NETWORKS
:
Array
<
Network
>
=
(()
=>
{
try
{
const
networksFromConfig
:
Array
<
Network
>
=
parseNetworkConfig
();
const
networksFromConfig
:
Array
<
Network
>
=
JSON
.
parse
(
process
.
env
.
NEXT_PUBLIC_SUPPORTED_NETWORKS
||
'
[]
'
);
return
networksFromConfig
.
map
((
network
)
=>
({
...
network
,
icon
:
network
.
icon
||
ICONS
[
`
${
network
.
type
}
/
${
network
.
subType
}
`
]
}));
return
networksFromConfig
.
map
((
network
)
=>
({
...
network
,
icon
:
network
.
icon
||
ICONS
[
`
${
network
.
type
}
/
${
network
.
subType
}
`
]
}));
}
catch
(
error
)
{
return
[];
}
})();
})();
export
default
NETWORKS
;
// for easy env creation
// for easy env creation
// const FOR_CONFIG = [
// const FOR_CONFIG = [
// {
// {
...
@@ -105,13 +105,3 @@ export const NETWORKS: Array<Network> = (() => {
...
@@ -105,13 +105,3 @@ export const NETWORKS: Array<Network> = (() => {
// group: 'other',
// group: 'other',
// },
// },
// ];
// ];
export
const
ACCOUNT_ROUTES
=
[
'
/watchlist
'
,
'
/tag_address
'
,
'
/tag_transaction
'
,
'
/public_tags_request
'
,
'
/api_key
'
,
'
/custom_abi
'
];
export
function
isAccountRoute
(
route
:
string
)
{
return
ACCOUNT_ROUTES
.
includes
(
route
);
}
export
function
getAvailablePaths
()
{
return
NETWORKS
.
map
(({
type
,
subType
})
=>
({
params
:
{
network_type
:
type
,
network_sub_type
:
subType
}
}));
}
lib/networks/getAvailablePaths.ts
0 → 100644
View file @
4a32e7de
import
NETWORKS
from
'
./availableNetworks
'
;
export
default
function
getAvailablePaths
()
{
return
NETWORKS
.
map
(({
type
,
subType
})
=>
({
params
:
{
network_type
:
type
,
network_sub_type
:
subType
}
}));
}
lib/networks/isAccountRoute.ts
0 → 100644
View file @
4a32e7de
export
const
ACCOUNT_ROUTES
=
[
'
/watchlist
'
,
'
/tag_address
'
,
'
/tag_transaction
'
,
'
/public_tags_request
'
,
'
/api_key
'
,
'
/custom_abi
'
];
export
default
function
isAccountRoute
(
route
:
string
)
{
return
ACCOUNT_ROUTES
.
includes
(
route
);
}
lib/networks/parseNetworkConfig.js
0 → 100644
View file @
4a32e7de
// should be CommonJS module since it used for next.config.js
function
parseNetworkConfig
()
{
try
{
return
JSON
.
parse
(
process
.
env
.
NEXT_PUBLIC_SUPPORTED_NETWORKS
||
'
[]
'
);
}
catch
(
error
)
{
return
[];
}
}
module
.
exports
=
parseNetworkConfig
;
next.config.js
View file @
4a32e7de
...
@@ -2,6 +2,8 @@ const { withSentryConfig } = require('@sentry/nextjs');
...
@@ -2,6 +2,8 @@ const { withSentryConfig } = require('@sentry/nextjs');
const
withReactSvg
=
require
(
'
next-react-svg
'
);
const
withReactSvg
=
require
(
'
next-react-svg
'
);
const
path
=
require
(
'
path
'
);
const
path
=
require
(
'
path
'
);
const
headers
=
require
(
'
./configs/nextjs/headers
'
);
const
moduleExports
=
{
const
moduleExports
=
{
include
:
path
.
resolve
(
__dirname
,
'
icons
'
),
include
:
path
.
resolve
(
__dirname
,
'
icons
'
),
reactStrictMode
:
true
,
reactStrictMode
:
true
,
...
@@ -17,6 +19,7 @@ const moduleExports = {
...
@@ -17,6 +19,7 @@ const moduleExports = {
},
},
];
];
},
},
headers
,
output
:
'
standalone
'
,
output
:
'
standalone
'
,
};
};
...
...
pages/[network_type]/[network_sub_type]/account/api_key.tsx
View file @
4a32e7de
...
@@ -2,7 +2,7 @@ import type { NextPage, GetStaticPaths } from 'next';
...
@@ -2,7 +2,7 @@ import type { NextPage, GetStaticPaths } from 'next';
import
Head
from
'
next/head
'
;
import
Head
from
'
next/head
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
{
getAvailablePaths
}
from
'
lib/network
s
'
;
import
getAvailablePaths
from
'
lib/networks/getAvailablePath
s
'
;
import
ApiKeys
from
'
ui/pages/ApiKeys
'
;
import
ApiKeys
from
'
ui/pages/ApiKeys
'
;
const
ApiKeysPage
:
NextPage
=
()
=>
{
const
ApiKeysPage
:
NextPage
=
()
=>
{
...
...
pages/[network_type]/[network_sub_type]/account/custom_abi.tsx
View file @
4a32e7de
...
@@ -2,7 +2,7 @@ import type { NextPage, GetStaticPaths } from 'next';
...
@@ -2,7 +2,7 @@ import type { NextPage, GetStaticPaths } from 'next';
import
Head
from
'
next/head
'
;
import
Head
from
'
next/head
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
{
getAvailablePaths
}
from
'
lib/network
s
'
;
import
getAvailablePaths
from
'
lib/networks/getAvailablePath
s
'
;
import
CustomAbi
from
'
ui/pages/CustomAbi
'
;
import
CustomAbi
from
'
ui/pages/CustomAbi
'
;
const
CustomAbiPage
:
NextPage
=
()
=>
{
const
CustomAbiPage
:
NextPage
=
()
=>
{
...
...
pages/[network_type]/[network_sub_type]/account/public_tags_request.tsx
View file @
4a32e7de
...
@@ -2,7 +2,7 @@ import type { NextPage, GetStaticPaths } from 'next';
...
@@ -2,7 +2,7 @@ import type { NextPage, GetStaticPaths } from 'next';
import
Head
from
'
next/head
'
;
import
Head
from
'
next/head
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
{
getAvailablePaths
}
from
'
lib/network
s
'
;
import
getAvailablePaths
from
'
lib/networks/getAvailablePath
s
'
;
import
PublicTags
from
'
ui/pages/PublicTags
'
;
import
PublicTags
from
'
ui/pages/PublicTags
'
;
const
PublicTagsPage
:
NextPage
=
()
=>
{
const
PublicTagsPage
:
NextPage
=
()
=>
{
...
...
pages/[network_type]/[network_sub_type]/account/tag_address.tsx
View file @
4a32e7de
...
@@ -2,7 +2,7 @@ import type { NextPage, GetStaticPaths } from 'next';
...
@@ -2,7 +2,7 @@ import type { NextPage, GetStaticPaths } from 'next';
import
Head
from
'
next/head
'
;
import
Head
from
'
next/head
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
{
getAvailablePaths
}
from
'
lib/network
s
'
;
import
getAvailablePaths
from
'
lib/networks/getAvailablePath
s
'
;
import
PrivateTags
from
'
ui/pages/PrivateTags
'
;
import
PrivateTags
from
'
ui/pages/PrivateTags
'
;
const
AddressTagsPage
:
NextPage
=
()
=>
{
const
AddressTagsPage
:
NextPage
=
()
=>
{
...
...
pages/[network_type]/[network_sub_type]/account/tag_transaction.tsx
View file @
4a32e7de
...
@@ -2,7 +2,7 @@ import type { NextPage, GetStaticPaths } from 'next';
...
@@ -2,7 +2,7 @@ import type { NextPage, GetStaticPaths } from 'next';
import
Head
from
'
next/head
'
;
import
Head
from
'
next/head
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
{
getAvailablePaths
}
from
'
lib/network
s
'
;
import
getAvailablePaths
from
'
lib/networks/getAvailablePath
s
'
;
import
PrivateTags
from
'
ui/pages/PrivateTags
'
;
import
PrivateTags
from
'
ui/pages/PrivateTags
'
;
const
TransactionTagsPage
:
NextPage
=
()
=>
{
const
TransactionTagsPage
:
NextPage
=
()
=>
{
...
...
pages/[network_type]/[network_sub_type]/account/watchlist.tsx
View file @
4a32e7de
...
@@ -2,7 +2,7 @@ import type { NextPage, GetStaticPaths } from 'next';
...
@@ -2,7 +2,7 @@ import type { NextPage, GetStaticPaths } from 'next';
import
Head
from
'
next/head
'
;
import
Head
from
'
next/head
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
{
getAvailablePaths
}
from
'
lib/network
s
'
;
import
getAvailablePaths
from
'
lib/networks/getAvailablePath
s
'
;
import
WatchList
from
'
ui/pages/Watchlist
'
;
import
WatchList
from
'
ui/pages/Watchlist
'
;
const
WatchListPage
:
NextPage
=
()
=>
{
const
WatchListPage
:
NextPage
=
()
=>
{
...
...
pages/[network_type]/[network_sub_type]/auth/profile.tsx
View file @
4a32e7de
...
@@ -2,7 +2,7 @@ import type { NextPage, GetStaticPaths } from 'next';
...
@@ -2,7 +2,7 @@ import type { NextPage, GetStaticPaths } from 'next';
import
Head
from
'
next/head
'
;
import
Head
from
'
next/head
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
{
getAvailablePaths
}
from
'
lib/network
s
'
;
import
getAvailablePaths
from
'
lib/networks/getAvailablePath
s
'
;
import
MyProfile
from
'
ui/pages/MyProfile
'
;
import
MyProfile
from
'
ui/pages/MyProfile
'
;
const
MyProfilePage
:
NextPage
=
()
=>
{
const
MyProfilePage
:
NextPage
=
()
=>
{
...
...
pages/[network_type]/[network_sub_type]/index.tsx
View file @
4a32e7de
...
@@ -3,7 +3,7 @@ import type { NextPage, GetStaticPaths } from 'next';
...
@@ -3,7 +3,7 @@ import type { NextPage, GetStaticPaths } from 'next';
import
{
useRouter
}
from
'
next/router
'
;
import
{
useRouter
}
from
'
next/router
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
{
getAvailablePaths
}
from
'
lib/network
s
'
;
import
getAvailablePaths
from
'
lib/networks/getAvailablePath
s
'
;
import
Page
from
'
ui/shared/Page/Page
'
;
import
Page
from
'
ui/shared/Page/Page
'
;
const
Home
:
NextPage
=
()
=>
{
const
Home
:
NextPage
=
()
=>
{
...
...
pages/_document.tsx
View file @
4a32e7de
...
@@ -13,10 +13,6 @@ class MyDocument extends Document {
...
@@ -13,10 +13,6 @@ class MyDocument extends Document {
href=
"https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap"
href=
"https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap"
rel=
"stylesheet"
rel=
"stylesheet"
/>
/>
<
link
href=
"https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,500;0,600;1,400&display=swap"
rel=
"stylesheet"
/>
</
Head
>
</
Head
>
<
body
>
<
body
>
<
ColorModeScript
initialColorMode=
{
theme
.
config
.
initialColorMode
}
/>
<
ColorModeScript
initialColorMode=
{
theme
.
config
.
initialColorMode
}
/>
...
...
ui/blocks/networkMenu/NetworkMenuContentDesktop.tsx
View file @
4a32e7de
...
@@ -4,7 +4,7 @@ import React from 'react';
...
@@ -4,7 +4,7 @@ import React from 'react';
import
type
{
NetworkGroup
}
from
'
types/networks
'
;
import
type
{
NetworkGroup
}
from
'
types/networks
'
;
import
{
NETWORKS
}
from
'
lib/n
etworks
'
;
import
NETWORKS
from
'
lib/networks/availableN
etworks
'
;
import
NetworkMenuLink
from
'
./NetworkMenuLink
'
;
import
NetworkMenuLink
from
'
./NetworkMenuLink
'
;
...
...
ui/blocks/networkMenu/NetworkMenuContentMobile.tsx
View file @
4a32e7de
...
@@ -5,7 +5,7 @@ import React from 'react';
...
@@ -5,7 +5,7 @@ import React from 'react';
import
type
{
NetworkGroup
}
from
'
types/networks
'
;
import
type
{
NetworkGroup
}
from
'
types/networks
'
;
import
{
NETWORKS
}
from
'
lib/n
etworks
'
;
import
NETWORKS
from
'
lib/networks/availableN
etworks
'
;
import
NetworkMenuLink
from
'
./NetworkMenuLink
'
;
import
NetworkMenuLink
from
'
./NetworkMenuLink
'
;
...
...
ui/blocks/networkMenu/NetworkMenuLink.tsx
View file @
4a32e7de
...
@@ -6,7 +6,7 @@ import type { Network } from 'types/networks';
...
@@ -6,7 +6,7 @@ import type { Network } from 'types/networks';
import
checkIcon
from
'
icons/check.svg
'
;
import
checkIcon
from
'
icons/check.svg
'
;
import
placeholderIcon
from
'
icons/networks/placeholder.svg
'
;
import
placeholderIcon
from
'
icons/networks/placeholder.svg
'
;
import
{
isAccountRoute
}
from
'
lib/networks
'
;
import
isAccountRoute
from
'
lib/networks/isAccountRoute
'
;
import
useColors
from
'
./useColors
'
;
import
useColors
from
'
./useColors
'
;
...
...
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