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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 | 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 442x 442x 442x 442x 442x 442x 442x 442x 442x 442x 442x 442x 12x 12x 12x 12x 771x 12x 107x 107x 12x 220x 220x 12x 75x 75x 42x 33x 12x 695x 12x 136x 136x 12x 55x 55x 27x 28x 12x 365x 12x 12x 107x 107x 12x 2609x 12x 430x 430x 430x 430x 430x 430x 430x 430x 430x 430x 430x 430x 430x 430x 12x 12x 48x 48x 48x 48x 48x 12x 119x 119x 119x 119x 119x 12x 113x 113x 113x 113x 113x 59x 59x 54x 54x 113x 12x 85x 85x 85x 85x 85x 38x 38x 47x 47x 85x 12x 65x 65x 65x 12x 3054x 3054x 3054x 711x 711x 463x 3054x 566x 566x 310x 3054x 1246x 1246x 1246x 1246x 3054x 142x 3054x 12x 4843x 12x 692x 12x 305x 161x 144x 107x 37x 12x 13x 13x 13x 13x 12x | /** * Copyright 2017 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { assert } from '@firebase/util'; import { MIN_NAME, MAX_NAME } from '../util/util'; import { KEY_INDEX } from '../snap/indexes/KeyIndex'; import { PRIORITY_INDEX } from '../snap/indexes/PriorityIndex'; import { VALUE_INDEX } from '../snap/indexes/ValueIndex'; import { PathIndex } from '../snap/indexes/PathIndex'; import { IndexedFilter } from './filter/IndexedFilter'; import { LimitedFilter } from './filter/LimitedFilter'; import { RangedFilter } from './filter/RangedFilter'; import { stringify } from '@firebase/util'; import { NodeFilter } from './filter/NodeFilter'; import { Index } from '../snap/indexes/Index'; /** * This class is an immutable-from-the-public-api struct containing a set of query parameters defining a * range to be returned for a particular location. It is assumed that validation of parameters is done at the * user-facing API level, so it is not done here. * @constructor */ export class QueryParams { private limitSet_ = false; private startSet_ = false; private startNameSet_ = false; private endSet_ = false; private endNameSet_ = false; private limit_ = 0; private viewFrom_ = ''; private indexStartValue_: any | null = null; private indexStartName_ = ''; private indexEndValue_: any | null = null; private indexEndName_ = ''; private index_ = PRIORITY_INDEX; /** * Wire Protocol Constants * @const * @enum {string} * @private */ private static readonly WIRE_PROTOCOL_CONSTANTS_ = { INDEX_START_VALUE: 'sp', INDEX_START_NAME: 'sn', INDEX_END_VALUE: 'ep', INDEX_END_NAME: 'en', LIMIT: 'l', VIEW_FROM: 'vf', VIEW_FROM_LEFT: 'l', VIEW_FROM_RIGHT: 'r', INDEX: 'i' }; /** * REST Query Constants * @const * @enum {string} * @private */ private static readonly REST_QUERY_CONSTANTS_ = { ORDER_BY: 'orderBy', PRIORITY_INDEX: '$priority', VALUE_INDEX: '$value', KEY_INDEX: '$key', START_AT: 'startAt', END_AT: 'endAt', LIMIT_TO_FIRST: 'limitToFirst', LIMIT_TO_LAST: 'limitToLast' }; /** * Default, empty query parameters * @type {!QueryParams} * @const */ static readonly DEFAULT = new QueryParams(); /** * @return {boolean} */ hasStart(): boolean { return this.startSet_; } /** * @return {boolean} True if it would return from left. */ isViewFromLeft(): boolean { Iif (this.viewFrom_ === '') { // limit(), rather than limitToFirst or limitToLast was called. // This means that only one of startSet_ and endSet_ is true. Use them // to calculate which side of the view to anchor to. If neither is set, // anchor to the end. return this.startSet_; } else { return ( this.viewFrom_ === QueryParams.WIRE_PROTOCOL_CONSTANTS_.VIEW_FROM_LEFT ); } } /** * Only valid to call if hasStart() returns true * @return {*} */ getIndexStartValue(): any { assert(this.startSet_, 'Only valid if start has been set'); return this.indexStartValue_; } /** * Only valid to call if hasStart() returns true. * Returns the starting key name for the range defined by these query parameters * @return {!string} */ getIndexStartName(): string { assert(this.startSet_, 'Only valid if start has been set'); if (this.startNameSet_) { return this.indexStartName_; } else { return MIN_NAME; } } /** * @return {boolean} */ hasEnd(): boolean { return this.endSet_; } /** * Only valid to call if hasEnd() returns true. * @return {*} */ getIndexEndValue(): any { assert(this.endSet_, 'Only valid if end has been set'); return this.indexEndValue_; } /** * Only valid to call if hasEnd() returns true. * Returns the end key name for the range defined by these query parameters * @return {!string} */ getIndexEndName(): string { assert(this.endSet_, 'Only valid if end has been set'); if (this.endNameSet_) { return this.indexEndName_; } else { return MAX_NAME; } } /** * @return {boolean} */ hasLimit(): boolean { return this.limitSet_; } /** * @return {boolean} True if a limit has been set and it has been explicitly anchored */ hasAnchoredLimit(): boolean { return this.limitSet_ && this.viewFrom_ !== ''; } /** * Only valid to call if hasLimit() returns true * @return {!number} */ getLimit(): number { assert(this.limitSet_, 'Only valid if limit has been set'); return this.limit_; } /** * @return {!Index} */ getIndex(): Index { return this.index_; } /** * @return {!QueryParams} * @private */ private copy_(): QueryParams { const copy = new QueryParams(); copy.limitSet_ = this.limitSet_; copy.limit_ = this.limit_; copy.startSet_ = this.startSet_; copy.indexStartValue_ = this.indexStartValue_; copy.startNameSet_ = this.startNameSet_; copy.indexStartName_ = this.indexStartName_; copy.endSet_ = this.endSet_; copy.indexEndValue_ = this.indexEndValue_; copy.endNameSet_ = this.endNameSet_; copy.indexEndName_ = this.indexEndName_; copy.index_ = this.index_; copy.viewFrom_ = this.viewFrom_; return copy; } /** * @param {!number} newLimit * @return {!QueryParams} */ limit(newLimit: number): QueryParams { const newParams = this.copy_(); newParams.limitSet_ = true; newParams.limit_ = newLimit; newParams.viewFrom_ = ''; return newParams; } /** * @param {!number} newLimit * @return {!QueryParams} */ limitToFirst(newLimit: number): QueryParams { const newParams = this.copy_(); newParams.limitSet_ = true; newParams.limit_ = newLimit; newParams.viewFrom_ = QueryParams.WIRE_PROTOCOL_CONSTANTS_.VIEW_FROM_LEFT; return newParams; } /** * @param {!number} newLimit * @return {!QueryParams} */ limitToLast(newLimit: number): QueryParams { const newParams = this.copy_(); newParams.limitSet_ = true; newParams.limit_ = newLimit; newParams.viewFrom_ = QueryParams.WIRE_PROTOCOL_CONSTANTS_.VIEW_FROM_RIGHT; return newParams; } /** * @param {*} indexValue * @param {?string=} key * @return {!QueryParams} */ startAt(indexValue: any, key?: string | null): QueryParams { const newParams = this.copy_(); newParams.startSet_ = true; Iif (!(indexValue !== undefined)) { indexValue = null; } newParams.indexStartValue_ = indexValue; if (key != null) { newParams.startNameSet_ = true; newParams.indexStartName_ = key; } else { newParams.startNameSet_ = false; newParams.indexStartName_ = ''; } return newParams; } /** * @param {*} indexValue * @param {?string=} key * @return {!QueryParams} */ endAt(indexValue: any, key?: string | null): QueryParams { const newParams = this.copy_(); newParams.endSet_ = true; Iif (!(indexValue !== undefined)) { indexValue = null; } newParams.indexEndValue_ = indexValue; if (key !== undefined) { newParams.endNameSet_ = true; newParams.indexEndName_ = key; } else { newParams.endNameSet_ = false; newParams.indexEndName_ = ''; } return newParams; } /** * @param {!Index} index * @return {!QueryParams} */ orderBy(index: Index): QueryParams { const newParams = this.copy_(); newParams.index_ = index; return newParams; } /** * @return {!Object} */ getQueryObject(): Object { const WIRE_PROTOCOL_CONSTANTS = QueryParams.WIRE_PROTOCOL_CONSTANTS_; const obj: { [k: string]: any } = {}; if (this.startSet_) { obj[WIRE_PROTOCOL_CONSTANTS.INDEX_START_VALUE] = this.indexStartValue_; if (this.startNameSet_) { obj[WIRE_PROTOCOL_CONSTANTS.INDEX_START_NAME] = this.indexStartName_; } } if (this.endSet_) { obj[WIRE_PROTOCOL_CONSTANTS.INDEX_END_VALUE] = this.indexEndValue_; if (this.endNameSet_) { obj[WIRE_PROTOCOL_CONSTANTS.INDEX_END_NAME] = this.indexEndName_; } } if (this.limitSet_) { obj[WIRE_PROTOCOL_CONSTANTS.LIMIT] = this.limit_; let viewFrom = this.viewFrom_; Iif (viewFrom === '') { if (this.isViewFromLeft()) { viewFrom = WIRE_PROTOCOL_CONSTANTS.VIEW_FROM_LEFT; } else { viewFrom = WIRE_PROTOCOL_CONSTANTS.VIEW_FROM_RIGHT; } } obj[WIRE_PROTOCOL_CONSTANTS.VIEW_FROM] = viewFrom; } // For now, priority index is the default, so we only specify if it's some other index if (this.index_ !== PRIORITY_INDEX) { obj[WIRE_PROTOCOL_CONSTANTS.INDEX] = this.index_.toString(); } return obj; } /** * @return {boolean} */ loadsAllData(): boolean { return !(this.startSet_ || this.endSet_ || this.limitSet_); } /** * @return {boolean} */ isDefault(): boolean { return this.loadsAllData() && this.index_ == PRIORITY_INDEX; } /** * @return {!NodeFilter} */ getNodeFilter(): NodeFilter { if (this.loadsAllData()) { return new IndexedFilter(this.getIndex()); } else if (this.hasLimit()) { return new LimitedFilter(this); } else { return new RangedFilter(this); } } /** * Returns a set of REST query string parameters representing this query. * * @return {!Object.<string,*>} query string parameters */ toRestQueryStringParameters(): { [k: string]: any } { const REST_CONSTANTS = QueryParams.REST_QUERY_CONSTANTS_; const qs: { [k: string]: string | number } = {}; Eif (this.isDefault()) { return qs; } let orderBy; if (this.index_ === PRIORITY_INDEX) { orderBy = REST_CONSTANTS.PRIORITY_INDEX; } else if (this.index_ === VALUE_INDEX) { orderBy = REST_CONSTANTS.VALUE_INDEX; } else if (this.index_ === KEY_INDEX) { orderBy = REST_CONSTANTS.KEY_INDEX; } else { assert(this.index_ instanceof PathIndex, 'Unrecognized index type!'); orderBy = this.index_.toString(); } qs[REST_CONSTANTS.ORDER_BY] = stringify(orderBy); if (this.startSet_) { qs[REST_CONSTANTS.START_AT] = stringify(this.indexStartValue_); if (this.startNameSet_) { qs[REST_CONSTANTS.START_AT] += ',' + stringify(this.indexStartName_); } } if (this.endSet_) { qs[REST_CONSTANTS.END_AT] = stringify(this.indexEndValue_); if (this.endNameSet_) { qs[REST_CONSTANTS.END_AT] += ',' + stringify(this.indexEndName_); } } if (this.limitSet_) { if (this.isViewFromLeft()) { qs[REST_CONSTANTS.LIMIT_TO_FIRST] = this.limit_; } else { qs[REST_CONSTANTS.LIMIT_TO_LAST] = this.limit_; } } return qs; } } |