graphql-cache 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 0a6471af94c883d9025dc2e18513cbbef183e0631b5f925e26c0e79a36fc34cf
4
+ data.tar.gz: 6123889054b69975e2c62a2bd697f371fc933b45fe3e26f1a13474a6eec430c1
5
+ SHA512:
6
+ metadata.gz: 0c5836a00c4550885deaa4c26c429dd9701aae84695bc8761c85f0fdc9637a0fe8851ada50df115c3d43faf0a5f1542026a8865ec9245468fcfec7e28c6196af
7
+ data.tar.gz: e6856c09ac0576dc7dc40d1040d915f5857142bd07b5f90a439f40b65750c53b0b3b42850a0c65e149102f1725b3f53edc34f93093d10f5cbd52f23957d0325d
@@ -0,0 +1,13 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
12
+
13
+ *.gem
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.5.0
5
+ before_install: gem install bundler -v 1.16.1
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at michaelkelly322@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in graphql-cache.gemspec
6
+ gemspec
@@ -0,0 +1,37 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ graphql-cache (0.1.0)
5
+ graphql (= 1.8.0.pre11)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ diff-lcs (1.3)
11
+ graphql (1.8.0.pre11)
12
+ rake (10.5.0)
13
+ rspec (3.7.0)
14
+ rspec-core (~> 3.7.0)
15
+ rspec-expectations (~> 3.7.0)
16
+ rspec-mocks (~> 3.7.0)
17
+ rspec-core (3.7.1)
18
+ rspec-support (~> 3.7.0)
19
+ rspec-expectations (3.7.0)
20
+ diff-lcs (>= 1.2.0, < 2.0)
21
+ rspec-support (~> 3.7.0)
22
+ rspec-mocks (3.7.0)
23
+ diff-lcs (>= 1.2.0, < 2.0)
24
+ rspec-support (~> 3.7.0)
25
+ rspec-support (3.7.1)
26
+
27
+ PLATFORMS
28
+ ruby
29
+
30
+ DEPENDENCIES
31
+ bundler (~> 1.16)
32
+ graphql-cache!
33
+ rake (~> 10.0)
34
+ rspec (~> 3.0)
35
+
36
+ BUNDLED WITH
37
+ 1.16.1
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Michael Kelly
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,50 @@
1
+ # Graphql Cache
2
+
3
+ GraphQL Cache is a custom middleware for graphql-ruby providing field-level caching
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'graphql-cache'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install graphql-cache
20
+
21
+ ## Setup
22
+
23
+ 1. Add `middleware GraphQL::Cache::Middleware` to your schema
24
+ 2. Add `field_class GraphQL::Cache::Field` to your base object type
25
+
26
+ ## Usage
27
+
28
+ Any object, list, or connection field can be cached by simply adding `cache: true` to the field definition:
29
+
30
+ ```ruby
31
+ field :calculated_field, Int, cache: true
32
+ ```
33
+
34
+ ## Development
35
+
36
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
37
+
38
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
39
+
40
+ ## Contributing
41
+
42
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/graphql-cache. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
43
+
44
+ ## License
45
+
46
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
47
+
48
+ ## Code of Conduct
49
+
50
+ Everyone interacting in the Graphql::Cache project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/graphql-cache/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "graphql/cache"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,27 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "graphql/cache/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "graphql-cache"
8
+ spec.version = GraphQL::Cache::VERSION
9
+ spec.authors = ["Michael Kelly"]
10
+ spec.email = ["michaelkelly322@gmail.com"]
11
+
12
+ spec.summary = %q{Caching middleware for graphql-ruby}
13
+ spec.description = %q{Provides middleware field-level caching for graphql-ruby}
14
+ spec.homepage = "https://github.com/Leanstack/graphql-cache"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.16"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "rspec", "~> 3.0"
25
+
26
+ spec.add_dependency 'graphql', '~> 1.8.0.pre10'
27
+ end
@@ -0,0 +1,101 @@
1
+ require 'graphql/cache/version'
2
+ require 'graphql/cache/middleware'
3
+ require 'graphql/cache/field'
4
+
5
+ module GraphQL
6
+ module Cache
7
+ ConfigurationError = Class.new(StandardError)
8
+
9
+ @@expiry = 5400 # 90 minutes
10
+ def self.expiry; @@expiry; end
11
+ def self.expiry=(obj); @@expiry=obj; end
12
+
13
+ @@force = false
14
+ def self.force; @@force; end
15
+ def self.force=(obj); @@force=obj; end
16
+
17
+ @@namespace = self.name
18
+ def self.namespace; @@namespace; end
19
+ def self.namespace=(obj); @@namespace=obj; end
20
+
21
+ @@cache = nil
22
+ def self.cache; @@cache; end
23
+ def self.cache=(obj); @@cache=obj; end
24
+
25
+ @@logger = nil
26
+ def self.logger; @@logger; end
27
+ def self.logger=(obj); @@logger=obj; end
28
+
29
+ @@log_level = nil
30
+ def self.log_level; @@log_level; end
31
+ def self.log_level=(obj); @@log_level=obj; @@logger.try(:level=, obj); end
32
+
33
+ def self.configure
34
+ yield self
35
+ end
36
+
37
+ def self.fetch(key, config: {}, &block)
38
+ return block.call unless config[:cache]
39
+
40
+ cached = cache.read(key)
41
+
42
+ if cached.nil?
43
+ logger.debug "Cache miss: (#{key})"
44
+ marshal_to_cache(key, config, &block)
45
+ else
46
+ logger.debug "Cache hit: (#{key})"
47
+ marshal_from_cache(cached, config)
48
+ end
49
+ end
50
+
51
+ def self.marshal_to_cache(key, config, &block)
52
+ raw = block.call
53
+
54
+ marshaled = case raw.class.name
55
+ when 'Array'
56
+ raw.map(&:object)
57
+ when 'GraphQL::Relay::RelationConnection'
58
+ raw.nodes
59
+ else
60
+ raw.try(:object) || raw
61
+ end
62
+
63
+ cache.write(key, marshaled, expires_in: config[:expiry] || GraphQL::Cache.expiry)
64
+ raw
65
+ end
66
+
67
+ def self.marshal_from_cache(cached, config = {})
68
+ case cached.class.name
69
+ when 'Array'
70
+ cached.map do |raw|
71
+ config[:field_definition].type.unwrap.graphql_definition.metadata[:type_class].new(
72
+ raw,
73
+ config[:query_context]
74
+ )
75
+ end
76
+ when 'ActiveRecord::Associations::CollectionProxy'
77
+ GraphQL::Relay::RelationConnection.new(
78
+ cached,
79
+ config[:field_args],
80
+ field: config[:query_context].field,
81
+ parent: config[:parent_object].object,
82
+ context: config[:query_context]
83
+ )
84
+ else
85
+ klass = config[:field_definition].type.unwrap.graphql_definition.metadata[:type_class]
86
+ if klass
87
+ new(
88
+ cached,
89
+ config[:query_context]
90
+ )
91
+ else
92
+ cached.class.new(
93
+ cached
94
+ )
95
+ end
96
+ end
97
+ end
98
+ end
99
+ end
100
+
101
+ require 'graphql/cache/rails' if defined?(::Rails::Engine)
@@ -0,0 +1,26 @@
1
+ module GraphQL
2
+ module Cache
3
+ class Field < GraphQL::Schema::Field
4
+ # Override #initialize to take a new argument:
5
+ def initialize(
6
+ *args,
7
+ cache: false,
8
+ expiry: nil,
9
+ **kwargs,
10
+ &block
11
+ )
12
+ @cache_config = {
13
+ cache: cache,
14
+ expiry: expiry
15
+ }
16
+ super(*args, **kwargs, &block)
17
+ end
18
+
19
+ def to_graphql
20
+ field_defn = super # Returns a GraphQL::Field
21
+ field_defn.metadata[:cache_config] = @cache_config
22
+ field_defn
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,60 @@
1
+ # frozen_string_literal: true
2
+
3
+ module GraphQL
4
+ module Cache
5
+ class Middleware
6
+ attr_accessor :parent_type, :parent_object, :object, :cache,
7
+ :field_definition, :field_args, :query_context,
8
+
9
+ def self.call(*args, &block)
10
+ new(*args).call(&block)
11
+ end
12
+
13
+ def initialize(parent_type, parent_object, field_definition, field_args, query_context)
14
+ self.parent_type = parent_type
15
+ self.parent_object = parent_object
16
+ self.field_definition = field_definition
17
+ self.field_args = field_args
18
+ self.query_context = query_context
19
+ self.object = parent_object.try(:object)
20
+ self.cache = ::GraphQL::Cache.cache
21
+ end
22
+
23
+ def cache_config
24
+ {
25
+ parent_type: parent_type,
26
+ parent_object: parent_object,
27
+ field_definition: field_definition,
28
+ field_args: field_args,
29
+ query_context: query_context,
30
+ object: object
31
+ }.merge(field_definition.metadata[:cache_config] || {})
32
+ end
33
+
34
+ def call(&block)
35
+ GraphQL::Cache.fetch(
36
+ cache_key,
37
+ config: cache_config,
38
+ &block
39
+ )
40
+ end
41
+
42
+ def cache_key
43
+ @cache_key ||= [
44
+ GraphQL::Cache.namespace,
45
+ object_key,
46
+ field_definition.name,
47
+ field_args.keys
48
+ ].flatten
49
+ end
50
+
51
+ def object_key
52
+ return nil unless object
53
+
54
+ id_from_object = object.try(:id) || object.try(:fetch, :id, nil) || object.try(:fetch, 'id', nil)
55
+
56
+ "#{object.class.name}:#{id_from_object}"
57
+ end
58
+ end
59
+ end
60
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module GraphQL
4
+ module Cache
5
+ class Rails < ::Rails::Engine
6
+ config.after_initialize do
7
+ # default values for cache and logger in Rails if not set in initializer
8
+ GraphQL::Cache.cache = ::Rails.cache unless GraphQL::Cache.cache
9
+ GraphQL::Cache.logger = ::Rails.logger unless GraphQL::Cache.logger
10
+ end
11
+ end if defined?(::Rails)
12
+ end
13
+ end
@@ -0,0 +1,5 @@
1
+ module GraphQL
2
+ module Cache
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,117 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: graphql-cache
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Michael Kelly
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-05-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: graphql
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 1.8.0.pre10
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 1.8.0.pre10
69
+ description: Provides middleware field-level caching for graphql-ruby
70
+ email:
71
+ - michaelkelly322@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".rspec"
78
+ - ".travis.yml"
79
+ - CODE_OF_CONDUCT.md
80
+ - Gemfile
81
+ - Gemfile.lock
82
+ - LICENSE.txt
83
+ - README.md
84
+ - Rakefile
85
+ - bin/console
86
+ - bin/setup
87
+ - graphql-cache.gemspec
88
+ - lib/graphql/cache.rb
89
+ - lib/graphql/cache/field.rb
90
+ - lib/graphql/cache/middleware.rb
91
+ - lib/graphql/cache/rails.rb
92
+ - lib/graphql/cache/version.rb
93
+ homepage: https://github.com/Leanstack/graphql-cache
94
+ licenses:
95
+ - MIT
96
+ metadata: {}
97
+ post_install_message:
98
+ rdoc_options: []
99
+ require_paths:
100
+ - lib
101
+ required_ruby_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ required_rubygems_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ requirements: []
112
+ rubyforge_project:
113
+ rubygems_version: 2.7.3
114
+ signing_key:
115
+ specification_version: 4
116
+ summary: Caching middleware for graphql-ruby
117
+ test_files: []