prism-mongodb.js 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. (function (Prism) {
  2. var operators = [
  3. // query and projection
  4. '$eq', '$gt', '$gte', '$in', '$lt', '$lte', '$ne', '$nin', '$and', '$not', '$nor', '$or',
  5. '$exists', '$type', '$expr', '$jsonSchema', '$mod', '$regex', '$text', '$where', '$geoIntersects',
  6. '$geoWithin', '$near', '$nearSphere', '$all', '$elemMatch', '$size', '$bitsAllClear', '$bitsAllSet',
  7. '$bitsAnyClear', '$bitsAnySet', '$comment', '$elemMatch', '$meta', '$slice',
  8. // update
  9. '$currentDate', '$inc', '$min', '$max', '$mul', '$rename', '$set', '$setOnInsert', '$unset',
  10. '$addToSet', '$pop', '$pull', '$push', '$pullAll', '$each', '$position', '$slice', '$sort', '$bit',
  11. // aggregation pipeline stages
  12. '$addFields', '$bucket', '$bucketAuto', '$collStats', '$count', '$currentOp', '$facet', '$geoNear',
  13. '$graphLookup', '$group', '$indexStats', '$limit', '$listLocalSessions', '$listSessions', '$lookup',
  14. '$match', '$merge', '$out', '$planCacheStats', '$project', '$redact', '$replaceRoot', '$replaceWith',
  15. '$sample', '$set', '$skip', '$sort', '$sortByCount', '$unionWith', '$unset', '$unwind', '$setWindowFields',
  16. // aggregation pipeline operators
  17. '$abs', '$accumulator', '$acos', '$acosh', '$add', '$addToSet', '$allElementsTrue', '$and',
  18. '$anyElementTrue', '$arrayElemAt', '$arrayToObject', '$asin', '$asinh', '$atan', '$atan2',
  19. '$atanh', '$avg', '$binarySize', '$bsonSize', '$ceil', '$cmp', '$concat', '$concatArrays', '$cond',
  20. '$convert', '$cos', '$dateFromParts', '$dateToParts', '$dateFromString', '$dateToString', '$dayOfMonth',
  21. '$dayOfWeek', '$dayOfYear', '$degreesToRadians', '$divide', '$eq', '$exp', '$filter', '$first',
  22. '$floor', '$function', '$gt', '$gte', '$hour', '$ifNull', '$in', '$indexOfArray', '$indexOfBytes',
  23. '$indexOfCP', '$isArray', '$isNumber', '$isoDayOfWeek', '$isoWeek', '$isoWeekYear', '$last',
  24. '$last', '$let', '$literal', '$ln', '$log', '$log10', '$lt', '$lte', '$ltrim', '$map', '$max',
  25. '$mergeObjects', '$meta', '$min', '$millisecond', '$minute', '$mod', '$month', '$multiply', '$ne',
  26. '$not', '$objectToArray', '$or', '$pow', '$push', '$radiansToDegrees', '$range', '$reduce',
  27. '$regexFind', '$regexFindAll', '$regexMatch', '$replaceOne', '$replaceAll', '$reverseArray', '$round',
  28. '$rtrim', '$second', '$setDifference', '$setEquals', '$setIntersection', '$setIsSubset', '$setUnion',
  29. '$size', '$sin', '$slice', '$split', '$sqrt', '$stdDevPop', '$stdDevSamp', '$strcasecmp', '$strLenBytes',
  30. '$strLenCP', '$substr', '$substrBytes', '$substrCP', '$subtract', '$sum', '$switch', '$tan',
  31. '$toBool', '$toDate', '$toDecimal', '$toDouble', '$toInt', '$toLong', '$toObjectId', '$toString',
  32. '$toLower', '$toUpper', '$trim', '$trunc', '$type', '$week', '$year', '$zip', '$count', '$dateAdd',
  33. '$dateDiff', '$dateSubtract', '$dateTrunc', '$getField', '$rand', '$sampleRate', '$setField', '$unsetField',
  34. // aggregation pipeline query modifiers
  35. '$comment', '$explain', '$hint', '$max', '$maxTimeMS', '$min', '$orderby', '$query',
  36. '$returnKey', '$showDiskLoc', '$natural',
  37. ];
  38. var builtinFunctions = [
  39. 'ObjectId',
  40. 'Code',
  41. 'BinData',
  42. 'DBRef',
  43. 'Timestamp',
  44. 'NumberLong',
  45. 'NumberDecimal',
  46. 'MaxKey',
  47. 'MinKey',
  48. 'RegExp',
  49. 'ISODate',
  50. 'UUID',
  51. ];
  52. operators = operators.map(function (operator) {
  53. return operator.replace('$', '\\$');
  54. });
  55. var operatorsSource = '(?:' + operators.join('|') + ')\\b';
  56. Prism.languages.mongodb = Prism.languages.extend('javascript', {});
  57. Prism.languages.insertBefore('mongodb', 'string', {
  58. 'property': {
  59. pattern: /(?:(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1|(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)(?=\s*:)/,
  60. greedy: true,
  61. inside: {
  62. 'keyword': RegExp('^([\'"])?' + operatorsSource + '(?:\\1)?$')
  63. }
  64. }
  65. });
  66. Prism.languages.mongodb.string.inside = {
  67. url: {
  68. // url pattern
  69. pattern: /https?:\/\/[-\w@:%.+~#=]{1,256}\.[a-z0-9()]{1,6}\b[-\w()@:%+.~#?&/=]*/i,
  70. greedy: true
  71. },
  72. entity: {
  73. // ipv4
  74. pattern: /\b(?:(?:[01]?\d\d?|2[0-4]\d|25[0-5])\.){3}(?:[01]?\d\d?|2[0-4]\d|25[0-5])\b/,
  75. greedy: true
  76. }
  77. };
  78. Prism.languages.insertBefore('mongodb', 'constant', {
  79. 'builtin': {
  80. pattern: RegExp('\\b(?:' + builtinFunctions.join('|') + ')\\b'),
  81. alias: 'keyword'
  82. }
  83. });
  84. }(Prism));