123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- * @flow
- */
- import ParseACL from './ParseACL';
- import ParseFile from './ParseFile';
- import ParseGeoPoint from './ParseGeoPoint';
- import ParsePolygon from './ParsePolygon';
- import ParseObject from './ParseObject';
- import { Op } from './ParseOp';
- import ParseRelation from './ParseRelation';
- const toString = Object.prototype.toString;
- function encode(value
- /*: mixed*/
- , disallowObjects
- /*: boolean*/
- , forcePointers
- /*: boolean*/
- , seen
- /*: Array<mixed>*/
- )
- /*: any*/
- {
- if (value instanceof ParseObject) {
- if (disallowObjects) {
- throw new Error('Parse Objects not allowed here');
- }
- const seenEntry = value.id ? value.className + ':' + value.id : value;
- if (forcePointers || !seen || seen.indexOf(seenEntry) > -1 || value.dirty() || Object.keys(value._getServerData()).length < 1) {
- return value.toPointer();
- }
- seen = seen.concat(seenEntry);
- return value._toFullJSON(seen);
- }
- if (value instanceof Op || value instanceof ParseACL || value instanceof ParseGeoPoint || value instanceof ParsePolygon || value instanceof ParseRelation) {
- return value.toJSON();
- }
- if (value instanceof ParseFile) {
- if (!value.url()) {
- throw new Error('Tried to encode an unsaved file.');
- }
- return value.toJSON();
- }
- if (toString.call(value) === '[object Date]') {
- if (isNaN(value)) {
- throw new Error('Tried to encode an invalid date.');
- }
- return {
- __type: 'Date',
- iso: value
- /*: any*/
- .toJSON()
- };
- }
- if (toString.call(value) === '[object RegExp]' && typeof value.source === 'string') {
- return value.source;
- }
- if (Array.isArray(value)) {
- return value.map(v => {
- return encode(v, disallowObjects, forcePointers, seen);
- });
- }
- if (value && typeof value === 'object') {
- const output = {};
- for (const k in value) {
- output[k] = encode(value[k], disallowObjects, forcePointers, seen);
- }
- return output;
- }
- return value;
- }
- export default function (value
- /*: mixed*/
- , disallowObjects
- /*:: ?: boolean*/
- , forcePointers
- /*:: ?: boolean*/
- , seen
- /*:: ?: Array<mixed>*/
- )
- /*: any*/
- {
- return encode(value, !!disallowObjects, !!forcePointers, seen || []);
- }
|