-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.rules.bolt
137 lines (113 loc) · 2.99 KB
/
database.rules.bolt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
//Types
type BaseOperator {
vehicleId: String,
vehicleNo: String,
vehicleType: String
}
type Operator extends BaseOperator {
lastUpdated: Number | Null
token: String,
currentPath: String | Null
riders: Number,
orders: OperatorOrder[] | Null
}
type OrderOperator extends BaseOperator {
location: Location,
distance: Number,
operatorName: String,
phone: String,
photoUrl: String,
}
type VehicleLocation {
g: String,
l: Location
validate() { this.g.length < 12 }
}
type Location {
"0": Number,
"1": Number
validate() { (this["0"]+"").test(/^-?([0-8]?[0-9]|90)(\.[0-9]{1,10})$/) && (this["1"]+"").test(/^-?([0-9]{1,2}|1[0-7][0-9]|180)(\.[0-9]{1,10})$/) && prior(this) != this }
}
type OperatorOrder {
status: Boolean,
recievedAt: Number
validate() { (prior(this) == null && this.recievedAt == now) || prior(this) != null }
}
type Order {
createdAt: Number
status: Number
type: String
vehicleType: String
passengers: Number
locations: OrderLocation[]
bounds: Location[]
polyline: String
user: User
vehicle: OrderOperator | Null
validate() { (prior(this) == null
&& this.createdAt == now
&& this.type == "regular" || "shared" || "hire" || "intercity"
&& this.vehicleType == "eRickshaw" || "autoRickshaw" || "motorcycle"
&& this.passengers >= 1
&& this.locations.length >= 1
) || (prior(this) != null
&& prior(this).createdAt == this.createdAt
&& prior(this).type == this.type
&& prior(this).vehicleType == this.vehicleType
&& prior(this).passengers == this.passengers
&& prior(this).locations == this.locations
&& prior(this).bounds == this.bounds
&& prior(this).polyline == this.polyline
&& prior(this).user == this.user
&& prior(this).vehicle == this.vehicle
&& prior(this).status != this.status
)}
}
type OrderLocation extends Location {
"2": String
}
type User {
id: String,
name: String,
phone: String,
photoUrl: String,
token: String,
}
//Paths
path /eRickshaw {
/{operatorId} is VehicleLocation {
read() { auth != null }
write() { isUser(operatorId) }
}
index() {['g']}
}
path /autoRickshaw {
/{operatorId} is VehicleLocation {
read() { auth != null }
write() { isUser(operatorId) }
}
index() {['g']}
}
path /motorcycle {
/{operatorId} is VehicleLocation {
read() { auth != null }
write() { isUser(operatorId) }
}
index() {['g']}
}
path /operators/{operatorId} is Operator {
read() { isUser(operatorId) }
write() { isUser(operatorId) }
}
path /orders {
read() {query.orderByChild == 'user/id' && query.equalTo == auth.uid }
/{orderId} is Order {
read() { (this != null && (isUser(this.user.id) || isUser(this.vehicle.operatorId)) && root.operators[auth.uid].orders[orderId] != null) || (this == null && auth != null)}
create() { false }
update() { prior(this) != null && isUser(prior(this).vehicle.operatorId) }
delete() { false }
}
index() {['user/id']}
}
//Functions
isUser(uid) { auth != null && auth.uid == uid }