All Projects → orangecoding → Fredy

orangecoding / Fredy

Licence: mit
❤️ Fredy - [F]ind [R]eal [E]states [D]amn Eas[y] - Let the robot do the work...

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Fredy

Notify
A dead simple Go library for sending notifications to various messaging services.
Stars: ✭ 727 (+2406.9%)
Mutual labels:  telegram, slack, sendgrid
Matterbridge
bridge between mattermost, IRC, gitter, xmpp, slack, discord, telegram, rocketchat, twitch, ssh-chat, zulip, whatsapp, keybase, matrix, microsoft teams, nextcloud, mumble, vk and more with REST API (mattermost not required!)
Stars: ✭ 4,452 (+15251.72%)
Mutual labels:  telegram, slack
Pokemongo Bot
The Pokemon Go Bot, baking with community.
Stars: ✭ 3,730 (+12762.07%)
Mutual labels:  telegram, slack
Aiva
AIVA (A.I. Virtual Assistant): General-purpose virtual assistant for developers.
Stars: ✭ 693 (+2289.66%)
Mutual labels:  telegram, slack
simple-slack-notify
Slack notification action that just works
Stars: ✭ 23 (-20.69%)
Mutual labels:  slack, notification
website-change-monitor
Monitor a website and get email and Slack notifications when specific changes are detected
Stars: ✭ 104 (+258.62%)
Mutual labels:  slack, notification
Awesome Bots
Awesome Links about bots.
Stars: ✭ 412 (+1320.69%)
Mutual labels:  telegram, slack
pr-reviews-reminder-action
A GitHub Action to send Slack/Teams notification for Pull Request that are waiting for reviewers.
Stars: ✭ 18 (-37.93%)
Mutual labels:  slack, notification
Inventory Hunter
⚡️ Get notified as soon as your next CPU, GPU, or game console is in stock
Stars: ✭ 778 (+2582.76%)
Mutual labels:  telegram, slack
Integrations
Connect your App to Multiple Messaging Channels with the W3C Open standard.
Stars: ✭ 721 (+2386.21%)
Mutual labels:  telegram, slack
messaging-apis
Messaging APIs for multi-platform
Stars: ✭ 1,759 (+5965.52%)
Mutual labels:  slack, telegram
Yii2 Telegram Log
Telegram log target for Yii 2
Stars: ✭ 24 (-17.24%)
Mutual labels:  telegram, notification
electronim
Electron based multi IM (Instant Messaging) client
Stars: ✭ 50 (+72.41%)
Mutual labels:  slack, telegram
Bottender
⚡️ A framework for building conversational user interfaces.
Stars: ✭ 3,803 (+13013.79%)
Mutual labels:  telegram, slack
monolog-http
A collection of monolog handlers that use a PSR-18 HTTP Client to send your logs
Stars: ✭ 34 (+17.24%)
Mutual labels:  slack, sendgrid
Franz
Franz is a free messaging app for services like WhatsApp, Slack, Messenger and many more.
Stars: ✭ 4,088 (+13996.55%)
Mutual labels:  telegram, slack
Flottbot
A chatbot framework written in Go. All configurations are made in YAML files, or inside scripts written in your favorite language.
Stars: ✭ 175 (+503.45%)
Mutual labels:  telegram, slack
Ferdi
🧔🏽 Ferdi helps you organize how you use your favourite apps by combining them into one application
Stars: ✭ 4,089 (+14000%)
Mutual labels:  telegram, slack
Diun
Receive notifications when an image is updated on a Docker registry
Stars: ✭ 704 (+2327.59%)
Mutual labels:  telegram, slack
Torpedo
Pluggable, multi-network asynchronous chat bot written in Go
Stars: ✭ 19 (-34.48%)
Mutual labels:  telegram, slack

Build Status

Fredy scrapes multiple services (Immonet, Immowelt etc.) as often as you want and send new listings to you once they appear. The list of available services can easily be extended. For your convenience, a ui helps you to configure your search jobs.

If Fredy found matching results, it will send them to you via Slack, Email, Telegram etc. (More adapter possible.) As Fredy will store the listings it found, new results will not be sent twice (and as a side-effect, Fredy can show some statistics..)

Usage

  • Make sure to use NodeJs 12 and above
  • Run the following commands
yarn (or npm install)
yarn run prod
yarn run start

Fredy will start with the default port, set to 9998. You can access Fredy by opening a browser http://localhost:9998. The default login is admin for username and password. (You should change the password asap when you plan to run Fredy on your server.)

Understanding the fundamentals

There are 3 important parts in Fredy, that you need to understand to leverage the full power of Fredy.

Adapter

Fredy supports multiple services. Immonet, Immowelt and Ebay are just a few. Those services are called adapter within Fredy. When creating a new job, you can choose 1 or many adapter.
An adapter holds the url that points to the search results for the service. If you go to immonet.de and search for something, the shown url in the browser is what the adapter needs to do it's magic.
It is important that you order the search results by date, so that Fredy always picks the latest ones first

Provider

Fredy supports multiple provider. Slack, SendGrid, Telegram etc. A search job can have as many provider as supported by Fredy. Each provider needs different configuration values, which you have to provide when using it. A provider itself dictactes how the frontend renders by telling the frontend what information it needs in order to send listings to the user.

Jobs

A Job wraps adapter and provider. Fredy runs the configured jobs in a specific interval (can be configured in /conf/config.json).

Creating your first job

To create your first job, click on the button "Create New Job" on the job table. The job creation dialog should be self explanatory, however there's one important thing. When configuring adapter, before copying the url from your browser make sure that you have sorted the results by date to make sure Fredy always picks the latest results first.

User management

As an administrator, you can create/edit and remove user from Fredy. Be careful, each job is connected to the user that has created the job. If you remove the user, the jobs will also be removed.

Development

Running Fredy in dev mode

To run Fredy in dev mode, you need to run the backend & frontend separately. Run the backend in your favorite IDE, the frontend can be started from the terminal.

yarn run dev

You should now be able to access Fredy with your browser. Go to http://localhost:9000

Running Tests

To run the tests, simply run

yarn run test

Architecture

Architecture

Why is Immoscout missing

Immoscout decided to add "robot protection" to their service. Meaning if Fredy tries to check for listings, it will be recognized as a bot. I haven't found a way around it (yet) ;)

Contribution guidelines

See Contribution

Docker

Use the Dockerfile in this Repository to build an image.

Example: docker build -t fredy/fredy /path/to/your/Dockerfile

Or use docker-compose:

Example docker-compose build

Create & run a container

Put your config.json to /path/to/your/conf/

Example: docker create --name fredy -v /path/to/your/conf/:/conf -p 9998:9998 fredy/fredy

Logs

You can browse the logs with docker logs fredy -f

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].