Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
37fa69d8ee | ||
|
|
e6c7fbe3ad | ||
|
|
355bb98b28 | ||
|
|
8f9efa4373 | ||
|
|
94c5e804a8 | ||
|
|
8282a7c339 | ||
|
|
ea15132d59 | ||
|
|
d9fe36cdde |
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module external.linked.project.id="DeightonAR" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$/app" external.system.id="GRADLE" type="JAVA_MODULE" version="4">
|
||||
<module external.linked.project.id="DeightonAR" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" type="JAVA_MODULE" version="4">
|
||||
<component name="FacetManager">
|
||||
<facet type="java-gradle" name="Java-Gradle">
|
||||
<configuration>
|
||||
@@ -8,7 +8,7 @@
|
||||
</configuration>
|
||||
</facet>
|
||||
</component>
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
</configuration>
|
||||
</facet>
|
||||
</component>
|
||||
<component name="NewModuleRootManager">
|
||||
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7">
|
||||
<output url="file://$MODULE_DIR$/build/intermediates/classes/debug" />
|
||||
<output-test url="file://$MODULE_DIR$/build/intermediates/classes/test/debug" />
|
||||
<exclude-output />
|
||||
@@ -103,7 +103,7 @@
|
||||
<excludeFolder url="file://$MODULE_DIR$/build/reports" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/build/tmp" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="jdk" jdkName="Android API 27 Platform" jdkType="Android SDK" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
<orderEntry type="library" name="Gradle: com.android.support:support-fragment-25.0.0" level="project" />
|
||||
<orderEntry type="library" name="Gradle: com.facebook.fresco:fbcore-1.3.0" level="project" />
|
||||
@@ -149,6 +149,5 @@
|
||||
<orderEntry type="module" module-name="react-native-maps" />
|
||||
<orderEntry type="module" module-name="react-native-image-resizer" />
|
||||
<orderEntry type="module" module-name="react-native-image-picker" />
|
||||
<orderEntry type="library" name="Gradle: android-android-27" level="project" />
|
||||
</component>
|
||||
</module>
|
||||
@@ -101,8 +101,8 @@ android {
|
||||
applicationId "com.deightonar"
|
||||
minSdkVersion 24
|
||||
targetSdkVersion 27
|
||||
versionCode 12
|
||||
versionName "1.3.0"
|
||||
versionCode 15
|
||||
versionName "1.4.2"
|
||||
ndk {
|
||||
abiFilters "armeabi-v7a", "x86"
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.deightonar"
|
||||
android:versionCode="11"
|
||||
android:versionName="1.3.0">
|
||||
android:versionCode="15"
|
||||
android:versionName="1.4.2">
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
||||
|
||||
@@ -19,11 +19,11 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.3.0</string>
|
||||
<string>1.4.2</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>20180604.0</string>
|
||||
<string>20180628.0</string>
|
||||
<key>LSRequiresIPhoneOS</key>
|
||||
<true/>
|
||||
<key>NSAppTransportSecurity</key>
|
||||
|
||||
@@ -1,10 +1,7 @@
|
||||
import React from "react"
|
||||
import {
|
||||
StyleSheet,
|
||||
Text,
|
||||
TextInput,
|
||||
SectionList,
|
||||
Image,
|
||||
View,
|
||||
TouchableOpacity,
|
||||
TouchableHighlight,
|
||||
@@ -31,12 +28,8 @@ import KeyboardSpacer from "react-native-keyboard-spacer"
|
||||
import hardhatPinImage from "./images/hardhat-pin.png"
|
||||
import clipboardPinImage from "./images/clipboard-pin.png"
|
||||
import questionPinImage from "./images/question-pin.png"
|
||||
import locationImage from "./images/location.png"
|
||||
import moment from "moment"
|
||||
|
||||
const neverAskForLocationPermissionKeyName = "NeverAskForLocationPermission"
|
||||
const neverAskForCameraKeyName = "NeverAskForCameraPermission"
|
||||
|
||||
export class Home extends React.Component {
|
||||
constructor(props) {
|
||||
super(props)
|
||||
@@ -48,8 +41,8 @@ export class Home extends React.Component {
|
||||
showWorkItems: true,
|
||||
haveCameraPermission: false,
|
||||
haveLocationPermission: false,
|
||||
currentPosition: null,
|
||||
}
|
||||
this.currentPosition = null
|
||||
this.isMapReady = false
|
||||
this.goToRegionWhenReady = false
|
||||
this.region = null
|
||||
@@ -97,6 +90,7 @@ export class Home extends React.Component {
|
||||
}
|
||||
)
|
||||
} else {
|
||||
navigator.geolocation.requestAuthorization()
|
||||
this.state.haveLocationPermission = true
|
||||
this.state.haveCameraPermission = true
|
||||
}
|
||||
@@ -176,8 +170,8 @@ export class Home extends React.Component {
|
||||
}
|
||||
|
||||
handleWorkItemsListPress() {
|
||||
if (this.state.currentPosition) {
|
||||
const { coords } = this.state.currentPosition
|
||||
if (this.currentPosition) {
|
||||
const { coords } = this.currentPosition
|
||||
|
||||
this.props.history.push(
|
||||
`/workItemList?latLng=${coords.latitude},${coords.longitude}`
|
||||
@@ -210,13 +204,13 @@ export class Home extends React.Component {
|
||||
}
|
||||
|
||||
handleGlassesPress() {
|
||||
const { sections: workItems, currentPosition } = this.state
|
||||
const { sections: workItems } = this.state
|
||||
|
||||
if (currentPosition) {
|
||||
if (this.currentPosition) {
|
||||
const {
|
||||
latitude: latitude1,
|
||||
longitude: longitude1,
|
||||
} = currentPosition.coords
|
||||
} = this.currentPosition.coords
|
||||
let closestWorkItem = config.alwaysShowWorkItemInAR ? workItems[0] : null
|
||||
let shortestDistance = config.minDistanceToItem
|
||||
|
||||
@@ -248,10 +242,8 @@ export class Home extends React.Component {
|
||||
}
|
||||
|
||||
handleMyLocationPress() {
|
||||
const { currentPosition } = this.state
|
||||
|
||||
if (currentPosition && this.isMapReady) {
|
||||
const { coords } = currentPosition
|
||||
if (this.currentPosition && this.isMapReady) {
|
||||
const { coords } = this.currentPosition
|
||||
|
||||
this.mapView.animateToCoordinate({
|
||||
latitude: coords.latitude,
|
||||
@@ -281,14 +273,12 @@ export class Home extends React.Component {
|
||||
}
|
||||
|
||||
handlePositionUpdate(position) {
|
||||
this.setState({ currentPosition: position })
|
||||
this.currentPosition = position
|
||||
}
|
||||
|
||||
getCoordinateDistance(coordinate) {
|
||||
const { currentPosition } = this.state
|
||||
|
||||
if (currentPosition) {
|
||||
const { coords } = currentPosition
|
||||
if (this.currentPosition) {
|
||||
const { coords } = this.currentPosition
|
||||
const { latitude, longitude } = coordinate
|
||||
|
||||
return (
|
||||
@@ -313,7 +303,6 @@ export class Home extends React.Component {
|
||||
waitModal,
|
||||
haveCameraPermission,
|
||||
haveLocationPermission,
|
||||
currentPosition,
|
||||
} = this.state
|
||||
|
||||
return (
|
||||
@@ -340,7 +329,7 @@ export class Home extends React.Component {
|
||||
showWorkItems && { height: "40%" },
|
||||
!showWorkItems && { flexGrow: 1 },
|
||||
]}
|
||||
showsUserLocation={false}
|
||||
showsUserLocation
|
||||
showsBuildings={false}
|
||||
showsTraffic={false}
|
||||
showsIndoors={false}
|
||||
@@ -376,14 +365,6 @@ export class Home extends React.Component {
|
||||
</Callout>
|
||||
</Marker>
|
||||
))}
|
||||
{currentPosition && (
|
||||
<Marker
|
||||
key={sections.length}
|
||||
coordinate={currentPosition.coords}
|
||||
anchor={{ x: 0.5, y: 0.5 }}
|
||||
image={locationImage}
|
||||
/>
|
||||
)}
|
||||
</MapView>
|
||||
<View
|
||||
style={{
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.5 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 3.4 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 5.5 KiB |
@@ -1,6 +1,6 @@
|
||||
export const config = {
|
||||
localIPAddr: "192.168.1.175",
|
||||
//localIPAddr: "192.168.1.14",
|
||||
// localIPAddr: "192.168.1.175",
|
||||
localIPAddr: "192.168.1.14",
|
||||
viroAPIKey: "06F37B6A-74DA-4A83-965A-7DE2209A5C46",
|
||||
googleGeocodeAPIKey: "AIzaSyCs4JVT6gysnY5dAJ7KjVJYeykLv_xz1GI",
|
||||
googleGeocodeURL: "https://maps.googleapis.com/maps/api/geocode/json",
|
||||
@@ -32,6 +32,4 @@ export const config = {
|
||||
// },
|
||||
|
||||
// alwaysShowWorkItemInAR: true,
|
||||
|
||||
geoSampleDelay: 3000,
|
||||
}
|
||||
|
||||
@@ -20,7 +20,7 @@ export class BubbleLoader extends React.Component {
|
||||
this.animatedScales.map((value, i) =>
|
||||
Animated.sequence([
|
||||
Animated.timing(value, {
|
||||
toValue: 0.0,
|
||||
toValue: 0.01,
|
||||
duration: 800,
|
||||
delay: 200 * i,
|
||||
easing: Easing.out(Easing.sin),
|
||||
|
||||
@@ -15,36 +15,43 @@ export class Geolocation extends Component {
|
||||
|
||||
constructor(props) {
|
||||
super(props)
|
||||
reactAutoBind(this)
|
||||
|
||||
if (props.watch) {
|
||||
this.intervalId = setInterval(this.updateLocation, config.geoSampleDelay)
|
||||
} else {
|
||||
this.intervalId = -1
|
||||
}
|
||||
this.watchId = -1
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
this.updateLocation()
|
||||
}
|
||||
|
||||
componentWillUnmount() {
|
||||
if (this.intervalId !== -1) {
|
||||
clearInterval(this.intervalId)
|
||||
this.intervalId = -1
|
||||
}
|
||||
}
|
||||
|
||||
updateLocation() {
|
||||
navigator.geolocation.getCurrentPosition(
|
||||
(position) => {
|
||||
this.props.onUpdate(position)
|
||||
|
||||
if (this.props.watch) {
|
||||
;(this.watchId = navigator.geolocation.watchPosition((position) =>
|
||||
this.props.onUpdate(position)
|
||||
)),
|
||||
null,
|
||||
{
|
||||
distanceFilter: 5,
|
||||
maximumAge: 0,
|
||||
timeout: 20000,
|
||||
}
|
||||
}
|
||||
},
|
||||
null,
|
||||
{ distanceFilter: 5, maximumAge: 0, enableHighAccuracy: true }
|
||||
{
|
||||
distanceFilter: 5,
|
||||
maximumAge: 0,
|
||||
timeout: 20000,
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
componentWillUnmount() {
|
||||
if (this.watchId !== -1) {
|
||||
navigator.geolocation.clearWatch(this.watchId)
|
||||
navigator.geolocation.stopObserving()
|
||||
this.watchId = -1
|
||||
}
|
||||
}
|
||||
|
||||
render() {
|
||||
return null
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
export const versionInfo = {
|
||||
version: '1.3.0',
|
||||
fullVersion: '1.3.0-20180604.0',
|
||||
version: '1.4.2',
|
||||
fullVersion: '1.4.2-20180628.0',
|
||||
title: 'Deighton AR System',
|
||||
copyright: '© 2018, Kingston Software Solutions.',
|
||||
supportEmail: 'support@kss.us.com',
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "deighton-ar",
|
||||
"version": "1.3.0",
|
||||
"version": "1.4.2",
|
||||
"description": "Deighton AR Training System",
|
||||
"main": "index.js",
|
||||
"repository": {
|
||||
|
||||
2
server/out.csv
Normal file
2
server/out.csv
Normal file
@@ -0,0 +1,2 @@
|
||||
hello,foo
|
||||
"x,y","a,b"
|
||||
|
48
server/package-lock.json
generated
48
server/package-lock.json
generated
@@ -126,7 +126,6 @@
|
||||
"version": "1.0.10",
|
||||
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
||||
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"sprintf-js": "~1.0.2"
|
||||
}
|
||||
@@ -1560,6 +1559,16 @@
|
||||
"cssom": "0.3.x"
|
||||
}
|
||||
},
|
||||
"csv-write-stream": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/csv-write-stream/-/csv-write-stream-2.0.0.tgz",
|
||||
"integrity": "sha1-/C2iGkjW6l+MF/3jnPuRHk8CkrA=",
|
||||
"requires": {
|
||||
"argparse": "^1.0.7",
|
||||
"generate-object-property": "^1.0.0",
|
||||
"ndjson": "^1.3.0"
|
||||
}
|
||||
},
|
||||
"d": {
|
||||
"version": "0.1.1",
|
||||
"resolved": "https://registry.npmjs.org/d/-/d-0.1.1.tgz",
|
||||
@@ -3270,6 +3279,14 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"generate-object-property": {
|
||||
"version": "1.2.0",
|
||||
"resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz",
|
||||
"integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=",
|
||||
"requires": {
|
||||
"is-property": "^1.0.0"
|
||||
}
|
||||
},
|
||||
"get-caller-file": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz",
|
||||
@@ -3674,6 +3691,11 @@
|
||||
"integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=",
|
||||
"dev": true
|
||||
},
|
||||
"is-property": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz",
|
||||
"integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ="
|
||||
},
|
||||
"is-stream": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
|
||||
@@ -4495,8 +4517,7 @@
|
||||
"json-stringify-safe": {
|
||||
"version": "5.0.1",
|
||||
"resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
|
||||
"integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=",
|
||||
"dev": true
|
||||
"integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus="
|
||||
},
|
||||
"json5": {
|
||||
"version": "0.5.1",
|
||||
@@ -4972,6 +4993,24 @@
|
||||
"integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
|
||||
"dev": true
|
||||
},
|
||||
"ndjson": {
|
||||
"version": "1.5.0",
|
||||
"resolved": "https://registry.npmjs.org/ndjson/-/ndjson-1.5.0.tgz",
|
||||
"integrity": "sha1-rmA7NrE0vOw0e0UkIrC/mNWDLsg=",
|
||||
"requires": {
|
||||
"json-stringify-safe": "^5.0.1",
|
||||
"minimist": "^1.2.0",
|
||||
"split2": "^2.1.0",
|
||||
"through2": "^2.0.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"minimist": {
|
||||
"version": "1.2.0",
|
||||
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
|
||||
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
|
||||
}
|
||||
}
|
||||
},
|
||||
"negotiator": {
|
||||
"version": "0.6.1",
|
||||
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz",
|
||||
@@ -6124,8 +6163,7 @@
|
||||
"sprintf-js": {
|
||||
"version": "1.0.3",
|
||||
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
|
||||
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
|
||||
"dev": true
|
||||
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
|
||||
},
|
||||
"sshpk": {
|
||||
"version": "1.13.1",
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
"config": "^1.25.1",
|
||||
"cors": "^2.8.3",
|
||||
"credential": "^2.0.0",
|
||||
"csv-write-stream": "^2.0.0",
|
||||
"deepmerge": "^2.1.0",
|
||||
"express": "^4.15.2",
|
||||
"gridfs-stream": "jlyonsmith/gridfs-stream",
|
||||
|
||||
@@ -4,6 +4,7 @@ import autobind from "autobind-decorator"
|
||||
import zlib from "zlib"
|
||||
import { Readable } from "stream"
|
||||
import { catchAll, BaseRoutes } from "."
|
||||
import csvWriter from "csv-write-stream"
|
||||
|
||||
@autobind
|
||||
export class TeamRoutes extends BaseRoutes {
|
||||
@@ -29,30 +30,50 @@ export class TeamRoutes extends BaseRoutes {
|
||||
throw createError.Forbidden()
|
||||
}
|
||||
|
||||
res.writeHead(200, {
|
||||
"Content-Type": "application/gzip",
|
||||
"Content-Disposition": 'attachment; filename="team-data.csv.gzip"',
|
||||
})
|
||||
const gzip = zlib.createGzip()
|
||||
const writeable = csvWriter({
|
||||
headers: [
|
||||
"Team Name",
|
||||
"Start Time",
|
||||
"Activity Status",
|
||||
"Activity Created",
|
||||
"WorkItem Ticket",
|
||||
"WorkItem Type",
|
||||
"Activity Resolution",
|
||||
"Activity Notes",
|
||||
],
|
||||
})
|
||||
|
||||
writeable.pipe(gzip).pipe(res)
|
||||
|
||||
const Team = this.db.Team
|
||||
const WorkItem = this.db.WorkItem
|
||||
const Activity = this.db.Activity
|
||||
let teams = await Team.find({}).exec()
|
||||
|
||||
teams = teams.map((doc) => doc.toObject({ versionKey: false }))
|
||||
|
||||
for (let team of teams) {
|
||||
let activities = await Activity.find({ team: team._id }).exec()
|
||||
|
||||
team.activities = activities.map((doc) =>
|
||||
doc.toObject({ versionKey: false })
|
||||
)
|
||||
}
|
||||
for (let activity of activities) {
|
||||
const workItem = await WorkItem.findById(activity.workItem).exec()
|
||||
|
||||
const gzip = zlib.createGzip()
|
||||
let readable = new Readable()
|
||||
|
||||
readable.push(JSON.stringify(teams, null, " "))
|
||||
readable.push(null)
|
||||
|
||||
res.writeHead(200, {
|
||||
"Content-Type": "application/gzip",
|
||||
"Content-Disposition": 'attachment; filename="team-scores.json.gzip"',
|
||||
})
|
||||
readable.pipe(gzip).pipe(res)
|
||||
writeable.write([
|
||||
team.name,
|
||||
team.start,
|
||||
activity.status,
|
||||
activity.createdAt,
|
||||
workItem.ticketNumber,
|
||||
workItem.workItemType,
|
||||
activity.resolution,
|
||||
activity.notes,
|
||||
])
|
||||
}
|
||||
}
|
||||
|
||||
writeable.end()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
export const versionInfo = {
|
||||
version: '1.3.0',
|
||||
fullVersion: '1.3.0-20180604.0',
|
||||
version: '1.4.2',
|
||||
fullVersion: '1.4.2-20180628.0',
|
||||
title: 'Deighton AR System',
|
||||
copyright: '© 2018, Kingston Software Solutions.',
|
||||
supportEmail: 'support@kss.us.com',
|
||||
|
||||
@@ -15,11 +15,11 @@
|
||||
buildFormat: "full",
|
||||
tags: {
|
||||
major: 1,
|
||||
minor: 3,
|
||||
patch: 0,
|
||||
build: 20180604,
|
||||
minor: 4,
|
||||
patch: 2,
|
||||
build: 20180628,
|
||||
revision: 0,
|
||||
sequence: 12,
|
||||
sequence: 15,
|
||||
tz: "America/Los_Angeles",
|
||||
title: "Deighton AR System",
|
||||
copyright: "© 2018, Kingston Software Solutions.",
|
||||
@@ -93,7 +93,7 @@
|
||||
glob: "**/AndroidManifest.xml",
|
||||
updates: [
|
||||
{
|
||||
search: "(?<begin>android:versionCode=\")\\d?(?<end>\")",
|
||||
search: "(?<begin>android:versionCode=\")\\d+(?<end>\")",
|
||||
replace: "${begin}${sequence}${end}"
|
||||
},
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
export const versionInfo = {
|
||||
version: '1.3.0',
|
||||
fullVersion: '1.3.0-20180604.0',
|
||||
version: '1.4.2',
|
||||
fullVersion: '1.4.2-20180628.0',
|
||||
title: 'Deighton AR System',
|
||||
copyright: '© 2018, Kingston Software Solutions.',
|
||||
supportEmail: 'support@kss.us.com',
|
||||
|
||||
Reference in New Issue
Block a user