Juan Batiz-Benet
247649969e
Merge pull request #726 from kevinwallace/gateway_hostname
...
gateway: attempt to resolve hostname to ipfs path
2015-02-12 18:52:16 -08:00
Juan Batiz-Benet
0198b3155c
Merge pull request #776 from jbenet/fix/mdag-panic
...
fix a panic caused by context cancelling closing a promise channel
2015-02-12 18:34:58 -08:00
Jeromy
de057f60dd
fix a panic caused by context cancelling closing a promise channel
2015-02-12 23:47:11 +00:00
Jeromy Johnson
6eb5d8ea77
Merge pull request #774 from jbenet/block-put-fix
...
Fixed 'ipfs block put' panic
2015-02-11 20:21:11 -08:00
Jeromy Johnson
188c37e2ba
Merge pull request #773 from jbenet/feat/builder-master
...
implement nodebuilder
2015-02-11 15:25:24 -08:00
Matt Bell
bbca9a1c37
Fixed 'ipfs block put' panic
2015-02-11 14:56:36 -08:00
Juan Batiz-Benet
e397e52195
Merge pull request #772 from jbenet/dial-respect-ctx
...
p2p/net/conn: respect context on dialing
2015-02-11 14:16:36 -08:00
Jeromy
7a2545a14b
implement nodebuilder
2015-02-11 21:47:07 +00:00
Juan Batiz-Benet
5171d3df6b
p2p/net/conn: respect context on dialing
...
We were half-way with this. there's no way for net.Dialers
to respect contexts, so we have to let the dial finish in
the background.
2015-02-11 09:12:15 -08:00
Juan Batiz-Benet
6f166529dd
added AUTHORS file
2015-02-11 07:42:21 -08:00
Juan Batiz-Benet
8be756313a
Merge pull request #770 from jbenet/pkg-docs
...
document some packages
2015-02-10 16:06:22 -08:00
Jeromy
140c70d772
document some packages
2015-02-10 22:59:10 +00:00
Juan Batiz-Benet
f6a336cc04
Merge pull request #766 from jbenet/ctx-done-fixes
...
ctx.Done fixes
2015-02-09 23:52:32 -08:00
Juan Batiz-Benet
1811f1efac
ctx.Done fixes
...
thanks @whyrusleeping for finding these.
2015-02-09 23:18:23 -08:00
Juan Batiz-Benet
931cff2c70
Merge pull request #764 from jbenet/use_multihash_not_shasum
...
Use multihash not shasum
2015-02-08 16:15:48 -08:00
Kevin Wallace
e5abf0764c
corehttp: add test for gateway with mocked namesys
...
License: MIT
Signed-off-by: Kevin Wallace <kevin@pentabarf.net>
2015-02-08 12:54:43 -08:00
Kevin Wallace
794b7b7b3e
corehttp: tear off makeHandler, for tests
...
License: MIT
Signed-off-by: Kevin Wallace <kevin@pentabarf.net>
2015-02-08 12:50:47 -08:00
Kevin Wallace
084cdc3ed8
gateway: attempt to resolve hostname to ipfs path
...
This allows someone to host a static site by pointing a TXT record at their
content in IPFS, and a CNAME record at an IPFS gateway.
Note that such a setup technically violates RFC1912 (section 2.4; "A CNAME
record is not allowed to coexist with any other data."), but tends to work in
practice.
We may want to consider changing the DNS->IPFS resolution scheme to allow this
scenario to be RFC-compliant (e.g. store the mapping on a well-known subdomain
to allow CNAME records on the domain itself).
License: MIT
Signed-off-by: Kevin Wallace <kevin@pentabarf.net>
2015-02-08 11:27:06 -08:00
Kevin Wallace
fbd76ebb5b
corehttp: ServeOption supports chaining muxes
...
Each option now additionally returns the mux to be used by future options. If
every options returns the mux it was passed, the current behavior is unchanged.
However, if the option returns an a new mux, it can mediate requests to handlers
provided by future options:
return func(n *core.IpfsNode, mux *http.ServeMux) (*http.ServeMux, error) {
childMux := http.NewServeMux()
mux.Handle("/", handlerThatDelegatesToChildMux)
return childMux, nil
}
License: MIT
Signed-off-by: Kevin Wallace <kevin@pentabarf.net>
2015-02-08 11:27:06 -08:00
Christian Couder
391b5a3c89
t0040: use multihash instead of shasum in tests
...
License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-02-08 13:36:37 +01:00
Christian Couder
fe1ba2bf18
test: use multihash instead of shasum in tests
...
As shasum is not installed on all machines and
we use multihash anyway in the code base, it
removes one dependency to use shasum instead of
shasum in the tests.
Now that there are sharness tests in multihash
it is also safe to use it.
License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-02-08 13:35:45 +01:00
Juan Batiz-Benet
3e635e57af
Merge pull request #763 from jbenet/update-multihash
...
go-multihash update
2015-02-07 12:59:41 -08:00
Juan Batiz-Benet
a4c522bcd4
go-multihash update
2015-02-07 12:53:10 -08:00
Juan Batiz-Benet
757a71f2bf
Merge pull request #762 from jbenet/ipns-gateway-fix
...
gateway: dont cache ipns paths
2015-02-07 12:11:07 -08:00
Juan Batiz-Benet
872c64dd79
gateway: dont cache ipns paths
...
ipns paths are mutable and should not be cached. this error is
a byproduct of the currently messy gateway route. We should split
the /ipfs and /ipns routes up.
2015-02-07 10:10:05 -08:00
Juan Batiz-Benet
03c910f97a
Merge pull request #755 from jbenet/fix-ratelimiter-use
...
ratelimiter: fixing rate limiter use
2015-02-06 11:57:24 -08:00
Juan Batiz-Benet
91a79bc203
ratelimiter: fixing rate limiter use
...
Use of the ratelimiter should be conscious of the ratelimiter's
potential closing. any loops that add work to ratelimiter
should (a) only do so if the rate limiter is not closed,
or (b) prevent limiter while work is added
(i.e. use limiter.Go(addWorkHere))
2015-02-06 10:59:03 -08:00
Brian Tiger Chow
8558838d00
fix(core) check nil for _all_ owned resources
...
since construction can fail, and construction is non-trivial, it's
probably safer to never assume resource exists.
cc @jbenet @whyrusleeping
2015-02-06 11:22:43 -07:00
Brian Tiger Chow
bbcb670ef2
rename binary
2015-02-06 08:28:53 -08:00
Brian Tiger Chow
1d01c0354f
refactor(cmd/daemon) more compact representation!
...
exposed the Decider to make configuration nicer @mappum
2015-02-06 08:14:14 -08:00
Brian Tiger Chow
db644fe1b7
allow access to the field for convenience
...
decalarative configuration is superior. the thread-safety because
important during normal operation
2015-02-06 08:13:15 -08:00
Brian Tiger Chow
4bc2713a28
more compact respresentation
2015-02-06 08:13:15 -08:00
Juan Batiz-Benet
94c64c577b
Merge pull request #751 from jbenet/fix-webui-history
...
corehttp: allow all webui paths we published.
2015-02-06 07:41:10 -08:00
Juan Batiz-Benet
64a4c27913
corehttp: allow all webui paths we published.
...
Otherwise we break users links! cc @mappum
2015-02-06 07:30:42 -08:00
Juan Batiz-Benet
28079bdc26
Merge pull request #747 from jbenet/obs-addr-natfix
...
p2p/protocol/identity: smarter tracking observed addrs
2015-02-05 10:20:44 -08:00
Juan Batiz-Benet
ee4a9a2711
p2p/protocol/identity: smarter tracking observed addrs
...
- time them out (already was doing that with addrbook)
- keep count to counter symmetric nats
2015-02-05 10:15:16 -08:00
Juan Batiz-Benet
3448b4c18f
Merge pull request #746 from jbenet/kbucket-race
...
routing/kbucket: fix data race
2015-02-05 06:42:40 -08:00
Juan Batiz-Benet
e92a33f442
routing/kbucket: cleaner "public" interface for bucket
2015-02-05 06:22:44 -08:00
Juan Batiz-Benet
be2be853c7
kbucket: fix data race
2015-02-05 04:53:23 -08:00
Juan Batiz-Benet
0de13b071d
Merge pull request #743 from jbenet/misc-2-2
...
Gateway Changes
2015-02-05 00:05:43 -08:00
Matt Bell
0195c03664
core/corehttp: Updated WebUI hash
2015-02-04 23:51:06 -08:00
Juan Batiz-Benet
739abea36b
Merge pull request #647 from chriscool/ipfs_test_lib
...
Add ipfs-test-lib.sh
2015-02-04 19:31:23 -08:00
Matt Bell
2d173c3a25
core/corehttp: Return 403 for blocked requests instead of 404
2015-02-04 18:46:59 -08:00
Matt Bell
09e4224aa7
test/sharness: Fixed gateway tests
2015-02-04 18:46:59 -08:00
Matt Bell
e8bbf1dcdf
commands/http: Made command HTTP API only accept requests from referers on the same server
2015-02-04 18:46:59 -08:00
Matt Bell
b1ca07d6c5
core/corehttp: Added gateway path whitelisting
2015-02-04 18:46:54 -08:00
Brian Tiger Chow
6599756168
Merge pull request #741 from jbenet/feat/blocklist
...
add blocklist to gateway executable
2015-02-04 18:44:03 -08:00
Matt Bell
a16e0bba2f
repo/config: Added default gateway address to initial config
2015-02-04 16:53:24 -08:00
Matt Bell
262e78122a
core/corehttp: Added Suborigin header to gateway responses
2015-02-04 16:53:24 -08:00
Matt Bell
a7de81b818
commands: URL escape filenames in multipart files, resolves #654
2015-02-04 16:53:24 -08:00