diff --git a/bridges/CuriousCatBridge.php b/bridges/CuriousCatBridge.php
deleted file mode 100644
index 3d6e87d0..00000000
--- a/bridges/CuriousCatBridge.php
+++ /dev/null
@@ -1,113 +0,0 @@
- [
- 'name' => 'Username',
- 'type' => 'text',
- 'required' => true,
- 'exampleValue' => 'koethekoethe',
- ]
- ]];
-
- const CACHE_TIMEOUT = 3600;
-
- public function collectData()
- {
- $url = self::URI . '/api/v2/profile?username=' . urlencode($this->getInput('username'));
-
- $apiJson = getContents($url);
-
- $apiData = Json::decode($apiJson);
- if (isset($apiData['error'])) {
- throw new \Exception($apiData['error_code']);
- }
-
- foreach ($apiData['posts'] as $post) {
- $item = [];
-
- $item['author'] = 'Anonymous';
-
- if ($post['senderData']['id'] !== false) {
- $item['author'] = $post['senderData']['username'];
- }
-
- $item['uri'] = $this->getURI() . '/post/' . $post['id'];
- $item['title'] = $this->ellipsisTitle($post['comment']);
-
- $item['content'] = $this->processContent($post);
- $item['timestamp'] = $post['timestamp'];
-
- $this->items[] = $item;
- }
- }
-
- public function getURI()
- {
- if (!is_null($this->getInput('username'))) {
- return self::URI . '/' . $this->getInput('username');
- }
-
- return parent::getURI();
- }
-
- public function getName()
- {
- if (!is_null($this->getInput('username'))) {
- return $this->getInput('username') . ' - Curious Cat';
- }
-
- return parent::getName();
- }
-
- private function processContent($post)
- {
- $author = 'Anonymous';
-
- if ($post['senderData']['id'] !== false) {
- $authorUrl = self::URI . '/' . $post['senderData']['username'];
-
- $author = <<
{$question}
{$post['addresseeData']['username']} answered:
-{$answer}-EOD; - - return $content; - } - - private function ellipsisTitle($text) - { - $length = 150; - - if (strlen($text) > $length) { - $text = explode('