Sha256: 13c07d3675d89200cbe87888f6ad40a8c6c7447d4775ab788698b05d7cc9413e

Contents?: true

Size: 1.52 KB

Versions: 21

Compression:

Stored size: 1.52 KB

Contents

module Neo4j::Core
  module CypherTranslator
    # Cypher Helper
     def escape_value(value)
       result = case value
         when String
           sanitized = sanitize_escape_sequences(value)
           "'#{escape_quotes(sanitized)}'"
         else
           value
       end
       result
     end

     # Only following escape sequence characters are allowed in Cypher:
     #
     # \t Tab
     # \b Backspace
     # \n Newline
     # \r Carriage return
     # \f Form feed
     # \' Single quote
     # \" Double quote
     # \\ Backslash
     #
     # From:
     # http://docs.neo4j.org/chunked/stable/cypher-expressions.html#_note_on_string_literals
     SANITIZE_ESCAPED_REGEXP = /(?<!\\)\\(\\\\)*(?![futbnr'"\\])/
     def sanitize_escape_sequences(s)
       s.gsub SANITIZE_ESCAPED_REGEXP, ''
     end

     def escape_quotes(s)
       s.gsub("'", %q(\\\'))
     end

    # Cypher Helper
    def cypher_prop_list(props)
      return "" unless props

      properties_to_set = props.reject {|k,v| v.nil? }

      list = properties_to_set.map{|k,v| "#{k} : #{escape_value(v)}"}.join(',')
      "{#{list}}"
    end

    # Stolen from keymaker
    # https://github.com/therubymug/keymaker/blob/master/lib/keymaker/parsers/cypher_response_parser.rb
    def self.translate_response(response_body, result)
      Hashie::Mash.new(Hash[sanitized_column_names(response_body).zip(result)])
    end

    def self.sanitized_column_names(response_body)
      response_body.columns.map do |column|
        column[/[^\.]+$/]
      end
    end

  end

end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
neo4j-core-3.0.8 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.7 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.6 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.5 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.4 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.3 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.2 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.1 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.0 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.0.rc.5 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.0.rc.4 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.0.rc.1 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.0.alpha.19 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.0.alpha.18 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.0.alpha.17 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.0.alpha.16 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.0.alpha.15 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.0.alpha.14 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.0.alpha.13 lib/neo4j-core/cypher_translator.rb
neo4j-core-3.0.0.alpha.12 lib/neo4j-core/cypher_translator.rb