You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-03 04:01:40 +03:00
* (docs) bloom: add jsdocs for all commands * (docs) json: add jsdocs * (docs) search: add jsdocs for all commands * (docs) jsdocs for std commands * (docs) jsdoc comments to time series commands
74 lines
1.6 KiB
TypeScript
74 lines
1.6 KiB
TypeScript
import { CommandParser } from '../client/parser';
|
|
import { RedisArgument, NumberReply, Command } from '../RESP/types';
|
|
import { GeoCoordinates } from './GEOSEARCH';
|
|
|
|
export interface GeoMember extends GeoCoordinates {
|
|
member: RedisArgument;
|
|
}
|
|
|
|
export interface GeoAddOptions {
|
|
condition?: 'NX' | 'XX';
|
|
/**
|
|
* @deprecated Use `{ condition: 'NX' }` instead.
|
|
*/
|
|
NX?: boolean;
|
|
/**
|
|
* @deprecated Use `{ condition: 'XX' }` instead.
|
|
*/
|
|
XX?: boolean;
|
|
CH?: boolean;
|
|
}
|
|
|
|
export default {
|
|
IS_READ_ONLY: false,
|
|
/**
|
|
* Adds geospatial items to the specified key
|
|
* @param parser - The Redis command parser
|
|
* @param key - Key to add the geospatial items to
|
|
* @param toAdd - Geospatial member(s) to add
|
|
* @param options - Options for the GEOADD command
|
|
*/
|
|
parseCommand(
|
|
parser: CommandParser,
|
|
key: RedisArgument,
|
|
toAdd: GeoMember | Array<GeoMember>,
|
|
options?: GeoAddOptions
|
|
) {
|
|
parser.push('GEOADD')
|
|
parser.pushKey(key);
|
|
|
|
if (options?.condition) {
|
|
parser.push(options.condition);
|
|
} else if (options?.NX) {
|
|
parser.push('NX');
|
|
} else if (options?.XX) {
|
|
parser.push('XX');
|
|
}
|
|
|
|
if (options?.CH) {
|
|
parser.push('CH');
|
|
}
|
|
|
|
if (Array.isArray(toAdd)) {
|
|
for (const member of toAdd) {
|
|
pushMember(parser, member);
|
|
}
|
|
} else {
|
|
pushMember(parser, toAdd);
|
|
}
|
|
|
|
},
|
|
transformReply: undefined as unknown as () => NumberReply
|
|
} as const satisfies Command;
|
|
|
|
function pushMember(
|
|
parser: CommandParser,
|
|
{ longitude, latitude, member }: GeoMember
|
|
) {
|
|
parser.push(
|
|
longitude.toString(),
|
|
latitude.toString(),
|
|
member
|
|
);
|
|
}
|