s/creekorful/darkspot(-org)/

pull/143/head
Aloïs Micard 3 years ago
parent f9b8dad298
commit 6f79af997f
No known key found for this signature in database
GPG Key ID: 1A0EB82F071F5EFE

@ -51,41 +51,41 @@ dockers:
- goos: linux
goarch: amd64
image_templates:
- "creekorful/bs-blacklister:latest"
- "creekorful/bs-blacklister:{{ replace .Tag \"v\" \"\" }}"
- "creekorful/bs-blacklister:{{ .Major }}"
- "darkspot/bs-blacklister:latest"
- "darkspot/bs-blacklister:{{ replace .Tag \"v\" \"\" }}"
- "darkspot/bs-blacklister:{{ .Major }}"
skip_push: false
dockerfile: build/docker/Dockerfile.blacklister
- goos: linux
goarch: amd64
image_templates:
- "creekorful/bs-configapi:latest"
- "creekorful/bs-configapi:{{ replace .Tag \"v\" \"\" }}"
- "creekorful/bs-configapi:{{ .Major }}"
- "darkspot/bs-configapi:latest"
- "darkspot/bs-configapi:{{ replace .Tag \"v\" \"\" }}"
- "darkspot/bs-configapi:{{ .Major }}"
skip_push: false
dockerfile: build/docker/Dockerfile.configapi
- goos: linux
goarch: amd64
image_templates:
- "creekorful/bs-crawler:latest"
- "creekorful/bs-crawler:{{ replace .Tag \"v\" \"\" }}"
- "creekorful/bs-crawler:{{ .Major }}"
- "darkspot/bs-crawler:latest"
- "darkspot/bs-crawler:{{ replace .Tag \"v\" \"\" }}"
- "darkspot/bs-crawler:{{ .Major }}"
skip_push: false
dockerfile: build/docker/Dockerfile.crawler
- goos: linux
goarch: amd64
image_templates:
- "creekorful/bs-indexer:latest"
- "creekorful/bs-indexer:{{ replace .Tag \"v\" \"\" }}"
- "creekorful/bs-indexer:{{ .Major }}"
- "darkspot/bs-indexer:latest"
- "darkspot/bs-indexer:{{ replace .Tag \"v\" \"\" }}"
- "darkspot/bs-indexer:{{ .Major }}"
skip_push: false
dockerfile: build/docker/Dockerfile.indexer
- goos: linux
goarch: amd64
image_templates:
- "creekorful/bs-scheduler:latest"
- "creekorful/bs-scheduler:{{ replace .Tag \"v\" \"\" }}"
- "creekorful/bs-scheduler:{{ .Major }}"
- "darkspot/bs-scheduler:latest"
- "darkspot/bs-scheduler:{{ replace .Tag \"v\" \"\" }}"
- "darkspot/bs-scheduler:{{ .Major }}"
skip_push: false
dockerfile: build/docker/Dockerfile.scheduler
checksum:

@ -11,6 +11,6 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
Initial stable release candidate.
[unreleased]: https://github.com/creekorful/bathyscaphe/compare/v1.0.0-rc1...HEAD
[unreleased]: https://github.com/darkspot-org/bathyscaphe/compare/v1.0.0-rc1...HEAD
[v1.0.0-rc1]: https://github.com/creekorful/bathyscaphe/releases/tag/v1.0.0-rc1
[v1.0.0-rc1]: https://github.com/darkspot-org/bathyscaphe/releases/tag/v1.0.0-rc1

@ -1,6 +1,6 @@
# Bathyscaphe dark web crawler
![CI](https://github.com/creekorful/bathyscaphe/workflows/CI/badge.svg)
![CI](https://github.com/darkspot-org/bathyscaphe/workflows/CI/badge.svg)
Bathyscaphe is a Go written, fast, highly configurable, cloud-native dark web crawler.

@ -1,8 +1,8 @@
package main
import (
"github.com/creekorful/bathyscaphe/internal/blacklister"
"github.com/creekorful/bathyscaphe/internal/process"
"github.com/darkspot-org/bathyscaphe/internal/blacklister"
"github.com/darkspot-org/bathyscaphe/internal/process"
"os"
)

@ -1,8 +1,8 @@
package main
import (
"github.com/creekorful/bathyscaphe/internal/configapi"
"github.com/creekorful/bathyscaphe/internal/process"
"github.com/darkspot-org/bathyscaphe/internal/configapi"
"github.com/darkspot-org/bathyscaphe/internal/process"
"os"
)

@ -1,8 +1,8 @@
package main
import (
"github.com/creekorful/bathyscaphe/internal/crawler"
"github.com/creekorful/bathyscaphe/internal/process"
"github.com/darkspot-org/bathyscaphe/internal/crawler"
"github.com/darkspot-org/bathyscaphe/internal/process"
"os"
)

@ -1,8 +1,8 @@
package main
import (
"github.com/creekorful/bathyscaphe/internal/indexer"
"github.com/creekorful/bathyscaphe/internal/process"
"github.com/darkspot-org/bathyscaphe/internal/indexer"
"github.com/darkspot-org/bathyscaphe/internal/process"
"os"
)

@ -1,8 +1,8 @@
package main
import (
"github.com/creekorful/bathyscaphe/internal/process"
"github.com/creekorful/bathyscaphe/internal/scheduler"
"github.com/darkspot-org/bathyscaphe/internal/process"
"github.com/darkspot-org/bathyscaphe/internal/scheduler"
"os"
)

@ -29,7 +29,7 @@ services:
volumes:
- redisdata:/data
crawler:
image: creekorful/bs-crawler:latest
image: darkspot/bs-crawler:latest
command: >
--log-level debug
--event-srv amqp://guest:guest@rabbitmq:5672
@ -41,7 +41,7 @@ services:
- torproxy
- configapi
scheduler:
image: creekorful/bs-scheduler:latest
image: darkspot/bs-scheduler:latest
command: >
--log-level debug
--event-srv amqp://guest:guest@rabbitmq:5672
@ -54,7 +54,7 @@ services:
- configapi
- redis
indexer-local:
image: creekorful/bs-indexer:latest
image: darkspot/bs-indexer:latest
command: >
--log-level debug
--event-srv amqp://guest:guest@rabbitmq:5672
@ -68,7 +68,7 @@ services:
- rabbitmq
- configapi
indexer-es:
image: creekorful/bs-indexer:latest
image: darkspot/bs-indexer:latest
command: >
--log-level debug
--event-srv amqp://guest:guest@rabbitmq:5672
@ -82,7 +82,7 @@ services:
- elasticsearch
- configapi
configapi:
image: creekorful/bs-configapi:latest
image: darkspot/bs-configapi:latest
command: >
--log-level debug
--event-srv amqp://guest:guest@rabbitmq:5672
@ -98,7 +98,7 @@ services:
ports:
- 15006:8080
blacklister:
image: creekorful/bs-blacklister:latest
image: darkspot/bs-blacklister:latest
command: >
--log-level debug
--event-srv amqp://guest:guest@rabbitmq:5672

@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: blacklister
image: creekorful/bs-blacklister:latest
image: darkspot/bs-blacklister:latest
args:
- --log-level
- debug

@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: configapi
image: creekorful/bs-configapi:latest
image: darkspot/bs-configapi:latest
args:
- --log-level
- debug

@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: crawler
image: creekorful/bs-crawler:latest
image: darkspot/bs-crawler:latest
args:
- --log-level
- debug

@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: indexer
image: creekorful/bs-indexer:latest
image: darkspot/bs-indexer:latest
args:
- --log-level
- debug

@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: scheduler
image: creekorful/bs-scheduler:latest
image: darkspot/bs-scheduler:latest
args:
- --log-level
- debug

@ -1,4 +1,4 @@
module github.com/creekorful/bathyscaphe
module github.com/darkspot-org/bathyscaphe
go 1.14

@ -2,11 +2,11 @@ package blacklister
import (
"fmt"
"github.com/creekorful/bathyscaphe/internal/cache"
configapi "github.com/creekorful/bathyscaphe/internal/configapi/client"
"github.com/creekorful/bathyscaphe/internal/event"
chttp "github.com/creekorful/bathyscaphe/internal/http"
"github.com/creekorful/bathyscaphe/internal/process"
"github.com/darkspot-org/bathyscaphe/internal/cache"
configapi "github.com/darkspot-org/bathyscaphe/internal/configapi/client"
"github.com/darkspot-org/bathyscaphe/internal/event"
chttp "github.com/darkspot-org/bathyscaphe/internal/http"
"github.com/darkspot-org/bathyscaphe/internal/process"
"github.com/rs/zerolog/log"
"github.com/urfave/cli/v2"
"net/http"

@ -2,16 +2,16 @@ package blacklister
import (
"errors"
"github.com/creekorful/bathyscaphe/internal/cache_mock"
configapi "github.com/creekorful/bathyscaphe/internal/configapi/client"
"github.com/creekorful/bathyscaphe/internal/configapi/client_mock"
"github.com/creekorful/bathyscaphe/internal/event"
"github.com/creekorful/bathyscaphe/internal/event_mock"
"github.com/creekorful/bathyscaphe/internal/http"
"github.com/creekorful/bathyscaphe/internal/http_mock"
"github.com/creekorful/bathyscaphe/internal/process"
"github.com/creekorful/bathyscaphe/internal/process_mock"
"github.com/creekorful/bathyscaphe/internal/test"
"github.com/darkspot-org/bathyscaphe/internal/cache_mock"
configapi "github.com/darkspot-org/bathyscaphe/internal/configapi/client"
"github.com/darkspot-org/bathyscaphe/internal/configapi/client_mock"
"github.com/darkspot-org/bathyscaphe/internal/event"
"github.com/darkspot-org/bathyscaphe/internal/event_mock"
"github.com/darkspot-org/bathyscaphe/internal/http"
"github.com/darkspot-org/bathyscaphe/internal/http_mock"
"github.com/darkspot-org/bathyscaphe/internal/process"
"github.com/darkspot-org/bathyscaphe/internal/process_mock"
"github.com/darkspot-org/bathyscaphe/internal/test"
"github.com/golang/mock/gomock"
"testing"
"time"

@ -6,7 +6,7 @@ import (
"bytes"
"encoding/json"
"fmt"
"github.com/creekorful/bathyscaphe/internal/event"
"github.com/darkspot-org/bathyscaphe/internal/event"
"github.com/rs/zerolog/log"
"io/ioutil"
"net/http"

@ -1,8 +1,8 @@
package client
import (
"github.com/creekorful/bathyscaphe/internal/event"
"github.com/creekorful/bathyscaphe/internal/event_mock"
"github.com/darkspot-org/bathyscaphe/internal/event"
"github.com/darkspot-org/bathyscaphe/internal/event_mock"
"github.com/golang/mock/gomock"
"sync"
"testing"

@ -2,9 +2,9 @@ package configapi
import (
"fmt"
"github.com/creekorful/bathyscaphe/internal/cache"
"github.com/creekorful/bathyscaphe/internal/event"
"github.com/creekorful/bathyscaphe/internal/process"
"github.com/darkspot-org/bathyscaphe/internal/cache"
"github.com/darkspot-org/bathyscaphe/internal/event"
"github.com/darkspot-org/bathyscaphe/internal/process"
"github.com/gorilla/mux"
"github.com/rs/zerolog/log"
"github.com/urfave/cli/v2"

@ -1,13 +1,13 @@
package configapi
import (
"github.com/creekorful/bathyscaphe/internal/cache"
"github.com/creekorful/bathyscaphe/internal/cache_mock"
"github.com/creekorful/bathyscaphe/internal/event"
"github.com/creekorful/bathyscaphe/internal/event_mock"
"github.com/creekorful/bathyscaphe/internal/process"
"github.com/creekorful/bathyscaphe/internal/process_mock"
"github.com/creekorful/bathyscaphe/internal/test"
"github.com/darkspot-org/bathyscaphe/internal/cache"
"github.com/darkspot-org/bathyscaphe/internal/cache_mock"
"github.com/darkspot-org/bathyscaphe/internal/event"
"github.com/darkspot-org/bathyscaphe/internal/event_mock"
"github.com/darkspot-org/bathyscaphe/internal/process"
"github.com/darkspot-org/bathyscaphe/internal/process_mock"
"github.com/darkspot-org/bathyscaphe/internal/test"
"github.com/golang/mock/gomock"
"github.com/gorilla/mux"
"io/ioutil"

@ -1,7 +1,7 @@
package constraint
import (
configapi "github.com/creekorful/bathyscaphe/internal/configapi/client"
configapi "github.com/darkspot-org/bathyscaphe/internal/configapi/client"
"net/url"
"strings"
)

@ -1,8 +1,8 @@
package constraint
import (
"github.com/creekorful/bathyscaphe/internal/configapi/client"
"github.com/creekorful/bathyscaphe/internal/configapi/client_mock"
"github.com/darkspot-org/bathyscaphe/internal/configapi/client"
"github.com/darkspot-org/bathyscaphe/internal/configapi/client_mock"
"github.com/golang/mock/gomock"
"testing"
)

@ -2,12 +2,12 @@ package crawler
import (
"fmt"
"github.com/creekorful/bathyscaphe/internal/clock"
configapi "github.com/creekorful/bathyscaphe/internal/configapi/client"
"github.com/creekorful/bathyscaphe/internal/constraint"
"github.com/creekorful/bathyscaphe/internal/event"
chttp "github.com/creekorful/bathyscaphe/internal/http"
"github.com/creekorful/bathyscaphe/internal/process"
"github.com/darkspot-org/bathyscaphe/internal/clock"
configapi "github.com/darkspot-org/bathyscaphe/internal/configapi/client"
"github.com/darkspot-org/bathyscaphe/internal/constraint"
"github.com/darkspot-org/bathyscaphe/internal/event"
chttp "github.com/darkspot-org/bathyscaphe/internal/http"
"github.com/darkspot-org/bathyscaphe/internal/process"
"github.com/rs/zerolog/log"
"github.com/urfave/cli/v2"
"io/ioutil"

@ -2,16 +2,16 @@ package crawler
import (
"errors"
"github.com/creekorful/bathyscaphe/internal/clock_mock"
"github.com/creekorful/bathyscaphe/internal/configapi/client"
"github.com/creekorful/bathyscaphe/internal/configapi/client_mock"
"github.com/creekorful/bathyscaphe/internal/event"
"github.com/creekorful/bathyscaphe/internal/event_mock"
"github.com/creekorful/bathyscaphe/internal/http"
"github.com/creekorful/bathyscaphe/internal/http_mock"
"github.com/creekorful/bathyscaphe/internal/process"
"github.com/creekorful/bathyscaphe/internal/process_mock"
"github.com/creekorful/bathyscaphe/internal/test"
"github.com/darkspot-org/bathyscaphe/internal/clock_mock"
"github.com/darkspot-org/bathyscaphe/internal/configapi/client"
"github.com/darkspot-org/bathyscaphe/internal/configapi/client_mock"
"github.com/darkspot-org/bathyscaphe/internal/event"
"github.com/darkspot-org/bathyscaphe/internal/event_mock"
"github.com/darkspot-org/bathyscaphe/internal/http"
"github.com/darkspot-org/bathyscaphe/internal/http_mock"
"github.com/darkspot-org/bathyscaphe/internal/process"
"github.com/darkspot-org/bathyscaphe/internal/process_mock"
"github.com/darkspot-org/bathyscaphe/internal/test"
"github.com/golang/mock/gomock"
"strings"
"testing"

@ -1,7 +1,7 @@
package index
import (
"github.com/creekorful/bathyscaphe/internal/event"
"github.com/darkspot-org/bathyscaphe/internal/event"
"testing"
"time"
)

@ -2,11 +2,11 @@ package indexer
import (
"fmt"
configapi "github.com/creekorful/bathyscaphe/internal/configapi/client"
"github.com/creekorful/bathyscaphe/internal/constraint"
"github.com/creekorful/bathyscaphe/internal/event"
"github.com/creekorful/bathyscaphe/internal/indexer/index"
"github.com/creekorful/bathyscaphe/internal/process"
configapi "github.com/darkspot-org/bathyscaphe/internal/configapi/client"
"github.com/darkspot-org/bathyscaphe/internal/constraint"
"github.com/darkspot-org/bathyscaphe/internal/event"
"github.com/darkspot-org/bathyscaphe/internal/indexer/index"
"github.com/darkspot-org/bathyscaphe/internal/process"
"github.com/rs/zerolog/log"
"github.com/urfave/cli/v2"
"net/http"

@ -2,15 +2,15 @@ package indexer
import (
"errors"
"github.com/creekorful/bathyscaphe/internal/configapi/client"
"github.com/creekorful/bathyscaphe/internal/configapi/client_mock"
"github.com/creekorful/bathyscaphe/internal/event"
"github.com/creekorful/bathyscaphe/internal/event_mock"
"github.com/creekorful/bathyscaphe/internal/indexer/index"
"github.com/creekorful/bathyscaphe/internal/indexer/index_mock"
"github.com/creekorful/bathyscaphe/internal/process"
"github.com/creekorful/bathyscaphe/internal/process_mock"
"github.com/creekorful/bathyscaphe/internal/test"
"github.com/darkspot-org/bathyscaphe/internal/configapi/client"
"github.com/darkspot-org/bathyscaphe/internal/configapi/client_mock"
"github.com/darkspot-org/bathyscaphe/internal/event"
"github.com/darkspot-org/bathyscaphe/internal/event_mock"
"github.com/darkspot-org/bathyscaphe/internal/indexer/index"
"github.com/darkspot-org/bathyscaphe/internal/indexer/index_mock"
"github.com/darkspot-org/bathyscaphe/internal/process"
"github.com/darkspot-org/bathyscaphe/internal/process_mock"
"github.com/darkspot-org/bathyscaphe/internal/test"
"github.com/golang/mock/gomock"
"reflect"
"testing"

@ -6,11 +6,11 @@ import (
"context"
"crypto/tls"
"fmt"
"github.com/creekorful/bathyscaphe/internal/cache"
"github.com/creekorful/bathyscaphe/internal/clock"
configapi "github.com/creekorful/bathyscaphe/internal/configapi/client"
"github.com/creekorful/bathyscaphe/internal/event"
chttp "github.com/creekorful/bathyscaphe/internal/http"
"github.com/darkspot-org/bathyscaphe/internal/cache"
"github.com/darkspot-org/bathyscaphe/internal/clock"
configapi "github.com/darkspot-org/bathyscaphe/internal/configapi/client"
"github.com/darkspot-org/bathyscaphe/internal/event"
chttp "github.com/darkspot-org/bathyscaphe/internal/http"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"github.com/urfave/cli/v2"

@ -4,11 +4,11 @@ import (
"errors"
"fmt"
"github.com/PuerkitoBio/purell"
"github.com/creekorful/bathyscaphe/internal/cache"
configapi "github.com/creekorful/bathyscaphe/internal/configapi/client"
"github.com/creekorful/bathyscaphe/internal/constraint"
"github.com/creekorful/bathyscaphe/internal/event"
"github.com/creekorful/bathyscaphe/internal/process"
"github.com/darkspot-org/bathyscaphe/internal/cache"
configapi "github.com/darkspot-org/bathyscaphe/internal/configapi/client"
"github.com/darkspot-org/bathyscaphe/internal/constraint"
"github.com/darkspot-org/bathyscaphe/internal/event"
"github.com/darkspot-org/bathyscaphe/internal/process"
"github.com/rs/zerolog/log"
"github.com/urfave/cli/v2"
"hash/fnv"
@ -104,7 +104,7 @@ func (state *State) handleNewResourceEvent(subscriber event.Subscriber, msg even
}
// We are working using URL hash to reduce memory consumption.
// See: https://github.com/creekorful/bathyscaphe/issues/130
// See: https://github.com/darkspot-org/bathyscaphe/issues/130
var urlHashes []string
for _, u := range urls {
c := fnv.New64()

@ -2,15 +2,15 @@ package scheduler
import (
"errors"
"github.com/creekorful/bathyscaphe/internal/cache"
"github.com/creekorful/bathyscaphe/internal/cache_mock"
"github.com/creekorful/bathyscaphe/internal/configapi/client"
"github.com/creekorful/bathyscaphe/internal/configapi/client_mock"
"github.com/creekorful/bathyscaphe/internal/event"
"github.com/creekorful/bathyscaphe/internal/event_mock"
"github.com/creekorful/bathyscaphe/internal/process"
"github.com/creekorful/bathyscaphe/internal/process_mock"
"github.com/creekorful/bathyscaphe/internal/test"
"github.com/darkspot-org/bathyscaphe/internal/cache"
"github.com/darkspot-org/bathyscaphe/internal/cache_mock"
"github.com/darkspot-org/bathyscaphe/internal/configapi/client"
"github.com/darkspot-org/bathyscaphe/internal/configapi/client_mock"
"github.com/darkspot-org/bathyscaphe/internal/event"
"github.com/darkspot-org/bathyscaphe/internal/event_mock"
"github.com/darkspot-org/bathyscaphe/internal/process"
"github.com/darkspot-org/bathyscaphe/internal/process_mock"
"github.com/darkspot-org/bathyscaphe/internal/test"
"github.com/golang/mock/gomock"
"hash/fnv"
"strconv"

@ -1,8 +1,8 @@
package test
import (
"github.com/creekorful/bathyscaphe/internal/process"
"github.com/creekorful/bathyscaphe/internal/process_mock"
"github.com/darkspot-org/bathyscaphe/internal/process"
"github.com/darkspot-org/bathyscaphe/internal/process_mock"
"github.com/golang/mock/gomock"
"reflect"
"testing"

Loading…
Cancel
Save