@@ -29,12 +29,12 @@ permissions can be written as:
29
29
[ all_access.bolt] ( ../samples/all_access.bolt )
30
30
``` javascript
31
31
path / {
32
- read () = true ;
33
- write () = true ;
32
+ read () { true }
33
+ write () { true }
34
34
}
35
35
```
36
36
37
- The ` read() = true ` and ` write() = true ` methods allow everyone to read and write this location
37
+ The ` read() { true } ` and ` write() { true } ` methods allow everyone to read and write this location
38
38
(and all children under this location). You can also use more complex expressions instead of
39
39
` true ` . When the expression evaluates to ` true ` the read or write operation is allowed.
40
40
@@ -97,16 +97,16 @@ _posts.bolt_
97
97
``` javascript
98
98
// Allow anyone to read the list of Posts.
99
99
path / posts {
100
- read () = true ;
100
+ read () { true }
101
101
}
102
102
103
103
// All individual Posts are writable by anyone.
104
104
path / posts/ {id} is Post {
105
- write () = true ;
105
+ write () { true }
106
106
}
107
107
108
108
type Post {
109
- validate () = this .message .length <= 140 ;
109
+ validate () { this .message .length <= 140 }
110
110
111
111
message: String ,
112
112
from: String
@@ -124,7 +124,7 @@ captured variable `id` being equal to (the string) '123'.
124
124
The Post type allows for exactly two string properties in each post (message and
125
125
from). It also ensures that no message is longer than 140 characters.
126
126
127
- Bolt type statements can contain a ` validate() ` method (defined as ` validate() = <expression> ` ,
127
+ Bolt type statements can contain a ` validate() ` method (defined as ` validate() { <expression> } ` ,
128
128
where the expression evaluates to ` true ` if the data is valid (can be saved to the
129
129
database). When the expression evaluates to ` false ` , the attempt to write the data will return
130
130
an error to the Firebase client and the database will be unmodified.
@@ -220,7 +220,7 @@ type Room {
220
220
}
221
221
222
222
type NameString extends String {
223
- validate () = this .length > 0 && this .length <= 32 ;
223
+ validate () { this .length > 0 && this .length <= 32 }
224
224
}
225
225
```
226
226
@@ -273,8 +273,8 @@ definitions look just like _type_ and _path_ methods, except they can also accep
273
273
274
274
``` javascript
275
275
path / users/ {userid} is User {
276
- read () = true ;
277
- write () = isCurrentUser (userid);
276
+ read () { true }
277
+ write () { isCurrentUser (userid) }
278
278
}
279
279
280
280
type User {
@@ -284,7 +284,7 @@ type User {
284
284
285
285
// Define isCurrentUser() function to test if the given user id
286
286
// matches the currently signed-in user.
287
- isCurrentUser (uid) = auth != null && auth .uid == uid;
287
+ isCurrentUser (uid ) { auth != null && auth .uid == uid }
288
288
```
289
289
290
290
``` JSON
@@ -326,7 +326,7 @@ path /posts/{id} is Post;
326
326
327
327
type Post {
328
328
// Make sure that the only value allowed to be written is now.
329
- validate () = this .modified == now;
329
+ validate () { this .modified == now }
330
330
331
331
message: String ,
332
332
modified: Number
@@ -340,8 +340,8 @@ A handy way to express this is to use a user-defined type for the CurrentTimesta
340
340
341
341
``` javascript
342
342
path / posts/ {id} is Post {
343
- read () = true ;
344
- write () = true ;
343
+ read () { true }
344
+ write () { true }
345
345
}
346
346
347
347
type Post {
@@ -350,7 +350,7 @@ type Post {
350
350
}
351
351
352
352
type CurrentTimestamp extends Number {
353
- validate () = this == now;
353
+ validate () { this == now }
354
354
}
355
355
```
356
356
@@ -359,8 +359,8 @@ when first written, and never change thereafter:
359
359
360
360
``` javascript
361
361
path / posts/ {id} is Post {
362
- read () = true ;
363
- write () = true ;
362
+ read () { true }
363
+ write () { true }
364
364
}
365
365
366
366
type Post {
@@ -370,16 +370,16 @@ type Post {
370
370
}
371
371
372
372
type CurrentTimestamp extends Number {
373
- validate () = this == now;
373
+ validate () { this == now }
374
374
}
375
375
376
376
type InitialTimestamp extends Number {
377
- validate () = initial (this , now);
377
+ validate () { initial (this , now) }
378
378
}
379
379
380
380
// Returns true if the value is intialized to init, or if it retains it's prior
381
381
// value, otherwise.
382
- initial (value, init) = value == (prior (value) == null ? init : prior (value));
382
+ initial (value , init ) { value == (prior (value) == null ? init : prior (value)) }
383
383
```
384
384
385
385
Note the special function ` prior(ref) ` - returns the previous value stored at a given database location
@@ -419,8 +419,8 @@ to define the Timestamp example above is:
419
419
``` javascript
420
420
// Note the use of Timestamped version of a Post type.
421
421
path / posts/ {id} is Timestamped< Post> {
422
- read () = true ;
423
- write () = true ;
422
+ read () { true }
423
+ write () { true }
424
424
}
425
425
426
426
type Post {
@@ -433,16 +433,16 @@ type Timestamped<T> extends T {
433
433
}
434
434
435
435
type CurrentTimestamp extends Number {
436
- validate () = this == now;
436
+ validate () { this == now }
437
437
}
438
438
439
439
type InitialTimestamp extends Number {
440
- validate () = initial (this , now);
440
+ validate () { initial (this , now) }
441
441
}
442
442
443
443
// Returns true if the value is intialized to init, or retains it's prior
444
444
// value, otherwise.
445
- initial (value, init) = value == (prior (value) == null ? init : prior (value));
445
+ initial (value , init ) { value == (prior (value) == null ? init : prior (value)) }
446
446
```
447
447
448
448
``` JSON
@@ -481,34 +481,34 @@ Rules](https://www.firebase.com/docs/security/guide/user-security.html#section-r
481
481
// Room Names
482
482
//
483
483
path / rooms_names is String [] {
484
- read () = isSignedIn ();
484
+ read () { isSignedIn () }
485
485
}
486
486
487
- getRoomName (id) = prior (root .room_names [id]);
487
+ getRoomName (id ) { prior (root .room_names [id]) }
488
488
489
489
//
490
490
// Room Members
491
491
//
492
492
path / members/ {room_id} {
493
- read () = isRoomMember (room_id);
493
+ read () { isRoomMember (room_id) }
494
494
}
495
495
496
496
path / members/ {room_id}/ {user_id} is NameString {
497
- write () = isCurrentUser (user_id);
497
+ write () { isCurrentUser (user_id) }
498
498
}
499
499
500
- isRoomMember (room_id) = isSignedIn () && prior (root .members [room_id][auth .uid ]) != null ;
500
+ isRoomMember (room_id ) { isSignedIn () && prior (root .members [room_id][auth .uid ]) != null }
501
501
502
502
//
503
503
// Messages
504
504
//
505
505
path / messages/ {room_id} {
506
- read () = isRoomMember (room_id);
507
- validate () = getRoomName (room_id) != null ;
506
+ read () { isRoomMember (room_id) }
507
+ validate () { getRoomName (room_id) != null }
508
508
}
509
509
510
510
path / messages/ {room_id}/ {message_id} is Message {
511
- write () = createOnly (this ) && isRoomMember (room_id);
511
+ write () { createOnly (this ) && isRoomMember (room_id) }
512
512
}
513
513
514
514
type Message {
@@ -518,26 +518,26 @@ type Message {
518
518
}
519
519
520
520
type MessageString extends String {
521
- validate () = this .length > 0 && this .length < 50 ;
521
+ validate () { this .length > 0 && this .length < 50 }
522
522
}
523
523
524
524
//
525
525
// Helper Types
526
526
//
527
527
type CurrentTimestamp extends Number {
528
- validate () = this == now;
528
+ validate () { this == now }
529
529
}
530
530
531
531
type NameString {
532
- validate () = this .length > 0 && this .length < 20 ;
532
+ validate () { this .length > 0 && this .length < 20 }
533
533
}
534
534
535
535
//
536
536
// Helper Functions
537
537
//
538
- isCurrentUser (uid) = isSignedIn () && auth .uid == uid;
539
- isSignedIn () = auth != null ;
540
- createOnly (value) = prior (value) == null && value != null ;
538
+ isCurrentUser (uid ) { isSignedIn () && auth .uid == uid }
539
+ isSignedIn () { auth != null }
540
+ createOnly (value ) { prior (value) == null && value != null }
541
541
```
542
542
543
543
``` JSON
0 commit comments