ldp 0.7.0 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.circleci/config.yml +84 -0
- data/.github_changelog_generator +2 -0
- data/.rubocop.yml +34 -0
- data/.rubocop_todo.yml +264 -0
- data/CHANGELOG.md +328 -0
- data/CODE_OF_CONDUCT.md +36 -0
- data/CONTRIBUTING.md +45 -21
- data/Gemfile +10 -2
- data/LICENSE.txt +3 -1
- data/README.md +47 -17
- data/Rakefile +1 -1
- data/SUPPORT.md +5 -0
- data/bin/ldp +3 -5
- data/ldp.gemspec +4 -1
- data/lib/ldp/client.rb +8 -9
- data/lib/ldp/client/methods.rb +22 -22
- data/lib/ldp/client/prefer_headers.rb +6 -6
- data/lib/ldp/error.rb +1 -1
- data/lib/ldp/orm.rb +0 -1
- data/lib/ldp/resource.rb +3 -4
- data/lib/ldp/resource/binary_source.rb +7 -2
- data/lib/ldp/resource/rdf_source.rb +35 -39
- data/lib/ldp/response.rb +22 -20
- data/lib/ldp/version.rb +1 -1
- data/spec/lib/ldp/resource/binary_source_spec.rb +23 -6
- data/spec/lib/ldp/resource/rdf_source_spec.rb +27 -0
- data/spec/lib/ldp/response_spec.rb +6 -2
- metadata +57 -10
- data/.travis.yml +0 -14
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
The Samvera community is dedicated to providing a welcoming and
|
2
|
+
positive experience for all its members, whether they are at a formal
|
3
|
+
gathering, in a social setting, or taking part in activities online.
|
4
|
+
The Samvera community welcomes participation from people all over the
|
5
|
+
world and these members bring with them a wide variety of
|
6
|
+
professional, personal and social backgrounds; whatever these may be,
|
7
|
+
we treat colleagues with dignity and respect.
|
8
|
+
|
9
|
+
Community members communicate primarily in English, though for many of
|
10
|
+
them this is not their native language. We therefore strive to express
|
11
|
+
ourselves simply and clearly remembering that unnecessary use of
|
12
|
+
jargon and slang will be a barrier to understanding for many of our
|
13
|
+
colleagues. We are sensitive to the fact that the international
|
14
|
+
nature of the community means that we span many different social norms
|
15
|
+
around language and behaviour and we strive to conduct ourselves,
|
16
|
+
online and in person, in ways that are unlikely to cause offence.
|
17
|
+
|
18
|
+
Samvera conversations are often information-rich and intended to
|
19
|
+
generate discussion and debate. We discuss ideas from a standpoint of
|
20
|
+
mutual respect and reasoned argument.
|
21
|
+
|
22
|
+
Community members work together to promote a respectful and safe
|
23
|
+
community. In the event that someone’s conduct is causing offence or
|
24
|
+
distress, Samvera has a detailed
|
25
|
+
[Anti-Harassment Policy and Protocol](https://wiki.duraspace.org/display/samvera/Anti-Harassment+Policy)
|
26
|
+
which can be applied to address the problem. The first step in dealing
|
27
|
+
with any serious misconduct is to contact a local meeting organizer,
|
28
|
+
the
|
29
|
+
[Samvera community helpers](https://wiki.duraspace.org/display/samvera/Samvera+Community+Helpers)
|
30
|
+
([email](mailto:helpers@samvera.org)), a community member you
|
31
|
+
trust, or the
|
32
|
+
[Samvera Steering Group](https://wiki.duraspace.org/display/samvera/Samvera+Steering+Group+membership)
|
33
|
+
immediately; at Samvera events, these people can be identified by
|
34
|
+
distinctive name badges. The
|
35
|
+
[Policy and Protocol](https://wiki.duraspace.org/display/samvera/Anti-Harassment+Policy)
|
36
|
+
should be consulted for fuller details.
|
data/CONTRIBUTING.md
CHANGED
@@ -1,24 +1,49 @@
|
|
1
1
|
# How to Contribute
|
2
2
|
|
3
|
-
We want your help to make
|
4
|
-
|
3
|
+
We want your help to make the Samvera community great. There are a few guidelines
|
4
|
+
that we need contributors to follow so that we can have a chance of
|
5
|
+
keeping on top of things.
|
5
6
|
|
6
7
|
## Code of Conduct
|
7
8
|
|
8
|
-
The
|
9
|
-
members, whether they are at a formal gathering, in
|
10
|
-
online.
|
11
|
-
for more information.
|
9
|
+
The Samvera Community is dedicated to providing a welcoming and positive
|
10
|
+
experience for all its members, whether they are at a formal gathering, in
|
11
|
+
a social setting, or taking part in activities online. Please see our
|
12
|
+
[Code of Conduct](CODE_OF_CONDUCT.md) for more information.
|
12
13
|
|
13
|
-
##
|
14
|
+
## Samvera Community Intellectual Property Licensing and Ownership
|
14
15
|
|
15
|
-
All code contributors must have an Individual Contributor License Agreement
|
16
|
-
|
16
|
+
All code contributors must have an Individual Contributor License Agreement
|
17
|
+
(iCLA) on file with the Samvera Steering Group. If the contributor works for
|
18
|
+
an institution, the institution must have a Corporate Contributor License
|
19
|
+
Agreement (cCLA) on file.
|
17
20
|
|
18
|
-
https://wiki.duraspace.org/display/
|
21
|
+
https://wiki.duraspace.org/display/samvera/Samvera+Community+Intellectual+Property+Licensing+and+Ownership
|
19
22
|
|
20
23
|
You should also add yourself to the `CONTRIBUTORS.md` file in the root of the project.
|
21
24
|
|
25
|
+
## Language
|
26
|
+
|
27
|
+
The language we use matters. Today, tomorrow, and for years to come
|
28
|
+
people will read the code we write. They will judge us for our
|
29
|
+
design, logic, and the words we use to describe the system.
|
30
|
+
|
31
|
+
Our words should be accessible. Favor descriptive words that give
|
32
|
+
meaning while avoiding reinforcing systemic inequities. For example,
|
33
|
+
in the Samvera community, we should favor using allowed\_list instead
|
34
|
+
of whitelist, denied\_list instead of blacklist, or source/copy
|
35
|
+
instead of master/slave.
|
36
|
+
|
37
|
+
We're going to get it wrong, but this is a call to keep working to
|
38
|
+
make it right. View our code and the words we choose as a chance to
|
39
|
+
have a conversation. A chance to grow an understanding of the systems
|
40
|
+
we develop as well as the systems in which we live.
|
41
|
+
|
42
|
+
See [“Blacklists” and “whitelists”: a salutary warning concerning the
|
43
|
+
prevalence of racist language in discussions of predatory
|
44
|
+
publishing](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6148600/) for
|
45
|
+
further details.
|
46
|
+
|
22
47
|
## Contribution Tasks
|
23
48
|
|
24
49
|
* Reporting Issues
|
@@ -31,7 +56,7 @@ You should also add yourself to the `CONTRIBUTORS.md` file in the root of the pr
|
|
31
56
|
### Reporting Issues
|
32
57
|
|
33
58
|
* Make sure you have a [GitHub account](https://github.com/signup/free)
|
34
|
-
* Submit a [Github issue](
|
59
|
+
* Submit a [Github issue](https://github.com/samvera/ldp/issues/) by:
|
35
60
|
* Clearly describing the issue
|
36
61
|
* Provide a descriptive summary
|
37
62
|
* Explain the expected behavior
|
@@ -48,7 +73,7 @@ You should also add yourself to the `CONTRIBUTORS.md` file in the root of the pr
|
|
48
73
|
* Please avoid working directly on the `master` branch.
|
49
74
|
* You may find the [hub suite of commands](https://github.com/defunkt/hub) helpful
|
50
75
|
* Make sure you have added sufficient tests and documentation for your changes.
|
51
|
-
* Test functionality with RSpec;
|
76
|
+
* Test functionality with RSpec; Test features / UI with Capybara.
|
52
77
|
* Run _all_ the tests to assure nothing else was accidentally broken.
|
53
78
|
|
54
79
|
### Documenting Code
|
@@ -60,15 +85,11 @@ You should also add yourself to the `CONTRIBUTORS.md` file in the root of the pr
|
|
60
85
|
* If you don't know exactly what a bit of code does, it is extra likely that it needs to be documented. Take a stab at it and ask for feedback in your pull request. You can use the 'blame' button on GitHub to identify the original developer of the code and @mention them in your comment.
|
61
86
|
* This work greatly increases the usability of the code base and supports the on-ramping of new committers.
|
62
87
|
* We will all be understanding of one another's time constraints in this area.
|
63
|
-
* YARD examples:
|
64
|
-
* [Hydra::Works::RemoveGenericFile](https://github.com/projecthydra-labs/hydra-works/blob/master/lib/hydra/works/services/generic_work/remove_generic_file.rb)
|
65
|
-
* [ActiveTriples::LocalName::Minter](https://github.com/ActiveTriples/active_triples-local_name/blob/master/lib/active_triples/local_name/minter.rb)
|
66
88
|
* [Getting started with YARD](http://www.rubydoc.info/gems/yard/file/docs/GettingStarted.md)
|
67
89
|
|
68
90
|
### Committing changes
|
69
91
|
|
70
92
|
* Make commits of logical units.
|
71
|
-
* Your commit should include a high level description of your work in HISTORY.textile
|
72
93
|
* Check for unnecessary whitespace with `git diff --check` before committing.
|
73
94
|
* Make sure your commit messages are [well formed](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
|
74
95
|
* If you created an issue, you can close it by including "Closes #issue" in your commit message. See [Github's blog post for more details](https://github.com/blog/1386-closing-issues-via-commit-messages)
|
@@ -103,6 +124,10 @@ You should also add yourself to the `CONTRIBUTORS.md` file in the root of the pr
|
|
103
124
|
long to fit in 72 characters
|
104
125
|
```
|
105
126
|
|
127
|
+
* Make sure you have added the necessary tests for your changes.
|
128
|
+
* Run _all_ the tests to assure nothing else was accidentally broken.
|
129
|
+
* When you are ready to submit a pull request
|
130
|
+
|
106
131
|
### Submitting Changes
|
107
132
|
|
108
133
|
* Read the article ["Using Pull Requests"](https://help.github.com/articles/using-pull-requests) on GitHub.
|
@@ -125,9 +150,7 @@ We adopted [Github's Pull Request Review](https://help.github.com/articles/about
|
|
125
150
|
Common checks that may occur in our repositories:
|
126
151
|
|
127
152
|
1. Travis CI - where our automated tests are running
|
128
|
-
2.
|
129
|
-
3. Approval Required - Github enforces at least one person approve a pull request. Also, all reviewers that have chimed in must approve.
|
130
|
-
4. CodeClimate - is our code remaining healthy (at least according to static code analysis)
|
153
|
+
2. Approval Required - Github enforces at least one person approve a pull request. Also, all reviewers that have chimed in must approve.
|
131
154
|
|
132
155
|
If one or more of the required checks failed (or are incomplete), the code should not be merged (and the UI will not allow it). If all of the checks have passed, then anyone on the project (including the pull request submitter) may merge the code.
|
133
156
|
|
@@ -144,16 +167,17 @@ First, the person contributing the code is putting themselves out there. Be mind
|
|
144
167
|
This is your chance for a mentoring moment of another developer. Take time to give an honest and thorough review of what has changed. Things to consider:
|
145
168
|
|
146
169
|
* Does the commit message explain what is going on?
|
147
|
-
* Does the code changes have tests? _Not all changes need new tests, some changes are
|
170
|
+
* Does the code changes have tests? _Not all changes need new tests, some changes are refactorings_
|
148
171
|
* Do new or changed methods, modules, and classes have documentation?
|
149
172
|
* Does the commit contain more than it should? Are two separate concerns being addressed in one commit?
|
150
173
|
* Does the description of the new/changed specs match your understanding of what the spec is doing?
|
174
|
+
* Did the Travis tests complete successfully?
|
151
175
|
|
152
176
|
If you are uncertain, bring other contributors into the conversation by assigning them as a reviewer.
|
153
177
|
|
154
178
|
# Additional Resources
|
155
179
|
|
156
180
|
* [General GitHub documentation](http://help.github.com/)
|
157
|
-
* [GitHub pull request documentation](
|
181
|
+
* [GitHub pull request documentation](https://help.github.com/articles/about-pull-requests/)
|
158
182
|
* [Pro Git](http://git-scm.com/book) is both a free and excellent book about Git.
|
159
183
|
* [A Git Config for Contributing](http://ndlib.github.io/practices/my-typical-per-project-git-config/)
|
data/Gemfile
CHANGED
@@ -3,8 +3,16 @@ source 'https://rubygems.org'
|
|
3
3
|
# Specify your gem's dependencies in ldp-client.gemspec
|
4
4
|
gemspec
|
5
5
|
|
6
|
-
gem 'slop', '~> 3.6' if RUBY_PLATFORM == "java"
|
6
|
+
# gem 'slop', '~> 3.6' if RUBY_PLATFORM == "java"
|
7
7
|
gem 'byebug', platforms: [:mri]
|
8
8
|
gem 'activesupport'
|
9
9
|
gem 'capybara_discoball', '~> 0.0.2'
|
10
|
-
gem 'derby', '~>
|
10
|
+
gem 'derby', '~> 1.0'
|
11
|
+
|
12
|
+
if ENV['RAILS_VERSION']
|
13
|
+
if ENV['RAILS_VERSION'] == 'edge'
|
14
|
+
gem 'rails', github: 'rails/rails'
|
15
|
+
else
|
16
|
+
gem 'rails', ENV['RAILS_VERSION']
|
17
|
+
end
|
18
|
+
end
|
data/LICENSE.txt
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
-
Copyright
|
1
|
+
Copyright 2013 Chris Beer
|
2
|
+
Copyright 2014 Data Curation Experts
|
3
|
+
Additional copyright may be held by others, as reflected in the commit history.
|
2
4
|
|
3
5
|
Licensed under the Apache License, Version 2.0 (the "License");
|
4
6
|
you may not use this file except in compliance with the License.
|
data/README.md
CHANGED
@@ -1,12 +1,34 @@
|
|
1
1
|
# Ldp.rb
|
2
2
|
|
3
|
-
|
3
|
+
Code:
|
4
|
+
[![Build Status](https://circleci.com/gh/samvera/ldp.svg?style=svg)](https://circleci.com/gh/samvera/ldp)
|
4
5
|
[![Version](https://badge.fury.io/rb/ldp.png)](http://badge.fury.io/rb/ldp)
|
5
|
-
[![
|
6
|
-
|
6
|
+
[![Coverage Status](https://coveralls.io/repos/github/samvera/ldp/badge.svg?branch=master)](https://coveralls.io/github/samvera/ldp?branch=master)
|
7
|
+
|
8
|
+
Docs:
|
9
|
+
[![Contribution Guidelines](http://img.shields.io/badge/CONTRIBUTING-Guidelines-blue.svg)](./CONTRIBUTING.md)
|
10
|
+
[![Apache 2.0 License](http://img.shields.io/badge/APACHE2-license-blue.svg)](./LICENSE.txt)
|
11
|
+
|
12
|
+
Jump In: [![Slack Status](http://slack.samvera.org/badge.svg)](http://slack.samvera.org/)
|
13
|
+
|
14
|
+
# What is ldp?
|
7
15
|
|
8
16
|
Linked Data Platform client library for Ruby
|
9
17
|
|
18
|
+
## Product Owner & Maintenance
|
19
|
+
|
20
|
+
**ldp** is a Core Component of the Samvera community. The documentation for
|
21
|
+
what this means can be found
|
22
|
+
[here](http://samvera.github.io/core_components.html#requirements-for-a-core-component).
|
23
|
+
|
24
|
+
### Product Owner
|
25
|
+
|
26
|
+
[randalldfloyd](https://github.com/randalldfloyd)
|
27
|
+
|
28
|
+
# Help
|
29
|
+
|
30
|
+
The Samvera community is here to help. Please see our [support guide](./SUPPORT.md).
|
31
|
+
|
10
32
|
## Installation
|
11
33
|
|
12
34
|
Add this line to your application's Gemfile:
|
@@ -39,22 +61,30 @@ orm.graph.insert([orm.resource.subject_uri, RDF::DC11.title, 'a new title'])
|
|
39
61
|
# save changes
|
40
62
|
orm.save
|
41
63
|
```
|
64
|
+
## Testing:
|
65
|
+
|
66
|
+
- Set Rails version you want to test against. For example:
|
67
|
+
|
68
|
+
- `export RAILS_VERSION=5.1.4`
|
69
|
+
|
70
|
+
- Ensure that the correct version of Rails is installed: `bundle update`
|
42
71
|
|
43
|
-
|
44
|
-
Due to some discrepancies with alpha version of Fedora Commons, you may need to do some things differently:
|
45
|
-
* [Can't load resources from Fedora 4](https://github.com/projecthydra/ldp/issues/1)
|
46
|
-
* [orm.save with an rdf:type doesn't work with Fedora 4.0.0-alpha-3](https://github.com/projecthydra/ldp/issues/2)
|
72
|
+
- And run tests: `bundle exec rake rspec`
|
47
73
|
|
48
|
-
##
|
74
|
+
## Releasing
|
49
75
|
|
50
|
-
1.
|
51
|
-
2.
|
52
|
-
3.
|
53
|
-
4.
|
54
|
-
|
76
|
+
1. `bundle install`
|
77
|
+
2. Increase the version number in `lib/ldp/version.rb`
|
78
|
+
3. Increase the same version number in `.github_changelog_generator`
|
79
|
+
4. Update `CHANGELOG.md` by running this command:
|
80
|
+
```
|
81
|
+
github_changelog_generator --user samvera --project ldp --token YOUR_GITHUB_TOKEN_HERE
|
82
|
+
```
|
83
|
+
5. Commit these changes to the master branch
|
84
|
+
6. Run `rake release`
|
55
85
|
|
56
|
-
#
|
57
|
-
This software has been developed by and is brought to you by the
|
58
|
-
[
|
86
|
+
# Acknowledgments
|
87
|
+
This software has been developed by and is brought to you by the Samvera community. Learn more at the
|
88
|
+
[Samvera website](http://samvera.org)
|
59
89
|
|
60
|
-
![
|
90
|
+
![Samvera Logo](https://wiki.duraspace.org/download/thumbnails/87459292/samvera-fall-font2-200w.png?version=1&modificationDate=1498550535816&api=v2)
|
data/Rakefile
CHANGED
data/SUPPORT.md
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
If you would like to report an issue, first search [the list of issues](https://github.com/samvera/ldp/issues/) to see if someone else has already reported it, and then feel free to [create a new issue](https://github.com/samvera/ldp/issues/new).
|
2
|
+
|
3
|
+
If you have questions or need help, please email [the Samvera community tech list](https://groups.google.com/forum/#!forum/samvera-tech) or stop by the #dev channel in [the Samvera community Slack team](https://wiki.duraspace.org/pages/viewpage.action?pageId=87460391#Getintouch!-Slack).
|
4
|
+
|
5
|
+
You can learn more about the various Samvera communication channels on the [Get in touch!](https://wiki.duraspace.org/pages/viewpage.action?pageId=87460391) wiki page.
|
data/bin/ldp
CHANGED
@@ -17,13 +17,11 @@ rescue Ldp::NotFound
|
|
17
17
|
end
|
18
18
|
|
19
19
|
do_help = lambda do |x|
|
20
|
-
|
21
20
|
x.command 'help' do
|
22
21
|
run do |opts, args|
|
23
22
|
puts opts.help
|
24
23
|
end
|
25
24
|
end
|
26
|
-
|
27
25
|
end
|
28
26
|
|
29
27
|
Slop.parse do
|
@@ -34,7 +32,7 @@ Slop.parse do
|
|
34
32
|
end
|
35
33
|
|
36
34
|
on :host=, "Host"
|
37
|
-
|
35
|
+
|
38
36
|
do_help.call(self)
|
39
37
|
|
40
38
|
command 'get' do
|
@@ -92,7 +90,7 @@ Slop.parse do
|
|
92
90
|
on :host=, "Host"
|
93
91
|
do_help.call(self)
|
94
92
|
|
95
|
-
run do |opts, (path,file)|
|
93
|
+
run do |opts, (path, file)|
|
96
94
|
with_error_handling do
|
97
95
|
host = opts[:host] || ENV['LDP_HOST']
|
98
96
|
if file.nil?
|
@@ -112,7 +110,7 @@ Slop.parse do
|
|
112
110
|
on :host=, "Host"
|
113
111
|
do_help.call(self)
|
114
112
|
|
115
|
-
run do |opts, (path,file)|
|
113
|
+
run do |opts, (path, file)|
|
116
114
|
with_error_handling do
|
117
115
|
host = opts[:host] || ENV['LDP_HOST']
|
118
116
|
if file.nil?
|
data/ldp.gemspec
CHANGED
@@ -28,9 +28,12 @@ Gem::Specification.new do |spec|
|
|
28
28
|
spec.add_dependency "http_logger"
|
29
29
|
spec.add_dependency "deprecation"
|
30
30
|
spec.add_dependency "slop"
|
31
|
-
spec.add_development_dependency "bundler", "~>
|
31
|
+
spec.add_development_dependency "bundler", "~> 2.0"
|
32
32
|
spec.add_development_dependency "rake"
|
33
33
|
spec.add_development_dependency "rspec"
|
34
34
|
spec.add_development_dependency "coveralls"
|
35
35
|
spec.add_development_dependency "simplecov"
|
36
|
+
spec.add_development_dependency "rspec_junit_formatter"
|
37
|
+
spec.add_development_dependency 'bixby', '~> 3.0.0'
|
38
|
+
spec.add_development_dependency 'github_changelog_generator'
|
36
39
|
end
|
data/lib/ldp/client.rb
CHANGED
@@ -2,7 +2,6 @@
|
|
2
2
|
# LDP client for presenting an ORM on top of an LDP resource
|
3
3
|
module Ldp
|
4
4
|
class Client
|
5
|
-
|
6
5
|
require 'ldp/client/methods'
|
7
6
|
require 'ldp/client/prefer_headers'
|
8
7
|
include Ldp::Client::Methods
|
@@ -11,14 +10,14 @@ module Ldp
|
|
11
10
|
|
12
11
|
def initialize(*args)
|
13
12
|
http_client, options = if args.length == 2
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
13
|
+
args
|
14
|
+
elsif args.length == 1 && args.first.is_a?(Faraday::Connection)
|
15
|
+
[args.first, {}]
|
16
|
+
elsif args.length == 1
|
17
|
+
[nil, args.first]
|
18
|
+
else
|
19
|
+
raise ArgumentError
|
20
|
+
end
|
22
21
|
|
23
22
|
@options = options
|
24
23
|
|
data/lib/ldp/client/methods.rb
CHANGED
@@ -3,7 +3,6 @@ require 'faraday'
|
|
3
3
|
##
|
4
4
|
# HTTP client methods for making requests to an LDP resource and getting a response back.
|
5
5
|
module Ldp::Client::Methods
|
6
|
-
|
7
6
|
attr_reader :http
|
8
7
|
def initialize_http_client *http_client
|
9
8
|
if http_client.length == 1 and http_client.first.is_a? Faraday::Connection
|
@@ -117,36 +116,37 @@ module Ldp::Client::Methods
|
|
117
116
|
resp.tap do |resp|
|
118
117
|
unless resp.status < 400
|
119
118
|
raise case resp.status
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
119
|
+
when 400
|
120
|
+
if resp.env.method == :head
|
121
|
+
# If the request was a HEAD request (which only retrieves HTTP headers),
|
122
|
+
# re-run it as a GET in order to retrieve a message body (which is passed on as the error message)
|
123
|
+
get(resp.env.url.path)
|
124
|
+
else
|
125
|
+
Ldp::BadRequest.new(resp.body)
|
126
|
+
end
|
127
|
+
when 404
|
128
|
+
Ldp::NotFound.new(resp.body)
|
129
|
+
when 409
|
130
|
+
Ldp::Conflict.new(resp.body)
|
131
|
+
when 410
|
132
|
+
Ldp::Gone.new(resp.body)
|
133
|
+
when 412
|
134
|
+
Ldp::PreconditionFailed.new(resp.body)
|
135
|
+
else
|
136
|
+
Ldp::HttpError.new("STATUS: #{resp.status} #{resp.body[0, 1000]}...")
|
137
|
+
end
|
139
138
|
end
|
140
139
|
end
|
141
140
|
end
|
142
141
|
|
143
142
|
def default_headers
|
144
|
-
{"Content-Type"=>"text/turtle"}
|
143
|
+
{ "Content-Type" => "text/turtle" }
|
145
144
|
end
|
146
145
|
|
147
146
|
def default_patch_headers
|
148
|
-
{"Content-Type"=>"application/sparql-update"}
|
147
|
+
{ "Content-Type" => "application/sparql-update" }
|
149
148
|
end
|
149
|
+
|
150
150
|
##
|
151
151
|
# Some valid query paths can be mistaken for absolute URIs
|
152
152
|
# with an alternative scheme. If the scheme isn't HTTP(S), assume
|