Commit Graph

201 Commits (main)

Author SHA1 Message Date
Ben Busby 3d7456f37b
Added gitter badge 4 years ago
Ben Busby d859e46a6c
Update README.md
Added clarification for enforcing https
4 years ago
Ben Busby 77c4920e83
Update README.md 4 years ago
Ben Busby 21012f5265
Feature: autocomplete/search suggestions (#72)
Basic autocomplete/search suggestion functionality added

* Adds new GET and POST routes for '/autocomplete' that accept a string query and returns an array of suggestions

* Adds new autoscript.js file for handling queries on the main page and results view

* Updated requests class to include autocomplete method

* Updated opensearch template to handle search suggestions

* Added header template to allow for autocomplete on results view

* Updated readme to mention autocomplete feature
4 years ago
Ben Busby c9f99b3eb6
Fixed docker hub instructions 4 years ago
Ben Busby 516bc765b0
Update README.md
Fixed docker badge link
4 years ago
Ben Busby d2b60544c5
Update README.md
Added instructions for setting default search engine while using a reverse proxy
4 years ago
Ben Busby ea37044d67
Minor change to systemd setup
I thought this was addressed during the pull request, but I guess not?
4 years ago
thomcatdotrocks 46b6c66312
Added instructions for running with systemd (#45)
Co-authored-by: ThomCat <me@thomcat.rocks>
4 years ago
Ben Busby 11fa44eec1 Minor refactoring for clarification
Executable renamed to "run" to avoid confusion with pip installed script

Updated heroku deploy button to use the heroku-app branch, which by
default enforces HTTPS

Added instructions for enforcing HTTPS on various deployment options,
with note about how this isn't a required task.

Updated setup.py description to use improved app description
4 years ago
Paul Rothrock 0e9bbc737d
Add Alfred Instructions (#52) 4 years ago
Ben Busby 1ed6178e9a
Feature: https only -- adds option to enforce https on running instances (#48)
* Adding HTTPS enforcement

Command line runs of Whoogle Search through pip/pipx/etc will need the
`--https-only` flag appended to the run command.

Docker runs require the `use_https` build arg applied.

* Update README.md

Moved https-only note to top of docker run command, updated pip runner help output

* Dockerfile: removed HTTPS enforcement, updated PORT setting

Dockerfile no longer enforces an HTTPS connection, but still allows for
setting via a build arg. The Flask server port is now configurable as a
build arg as well, by setting a port number to "whoogle_port"

* Fixed incorrect port assignment
4 years ago
Ben Busby e3d002f6c1 Updated readme with more docker instructions 4 years ago
Jake Howard f700ed88e7
Swap out Flask's default web server for Waitress (#32)
* Ignore venv when building docker file

* Remove reference to 8888 port

It wasn't really used anywhere, and setting it to 5000 everywhere removes ambiguity, and makes things easier to track and reason about

* Use waitress rather than Flask's built in web server

It's not production grade

* Actually add waitress to requirements

Woops!
4 years ago
Ben Busby f7e69bded1
Minor punctuation fix 4 years ago
ygsk10 f36a63e3f0
Update README.md (#22)
* Update README.md

* Update README.md
4 years ago
Ben Busby 2fc48ced6a
Merge pull request #10 from DjLogozzo/master
Added Firefox Android instructions for primary search settings
4 years ago
Dee-Jay Logozzo 05f6ad2815
Added Firefox Android instructions for setting whoogle as primary search engine 4 years ago
mendel5 3a4a8ce95b
fix spelling: Whoole --> Whoogle 4 years ago
Ben Busby 3d38b80833
Small update to readme
Clarified the heroku app naming section
4 years ago
Ben Busby 1ae946eab7
Update README.md 4 years ago
Ben Busby 68da3cd4cd Updated readme with pip instructions, fixed travis badge 4 years ago
Ben Busby d1a268551e
Update README.md 4 years ago
Ben Busby d01f56ea03 Removed referrer from links, refacored routes
Added <meta name="referrer" content="no-referrer"> to all whoogle
templates

Refactored search route to use conditionally use either request.args or
request.form, depending on rest call (get vs post respectively)
4 years ago
Ben Busby ab317fa0d0
Update README.md
Replaced img header with regular text header
4 years ago
Ben Busby 29a13d0e6e
Update README.md
Fixed separator formatting
4 years ago
Ben Busby 708769f682 Minor styling refactor, updated app name 4 years ago
Ben Busby 0300eab6df Updated formatting and setup instructions
Switched encoding from utf-8 to unicode-escape in an effort to support multiple
languages besides English.

Updated image results page formatting to fix bad image links (added TODO
for adding full res image link for each image result).

Updated README to include libcurl and libssl install instructions for
manual setup.
4 years ago
Ben Busby 0c0ebb8917 Added POST search, encrypted query strings, refactoring
The implementation of POST search support comes with a few benefits. The
most apparent is the avoidance of search queries appearing in web server
logs -- instead of the prior GET approach (i.e.
/search?q=my+search+query), using POST requests with the query stored in
the request body creates logs that simply appear as "/search".

Since a lot of relative links are generated in the results page, I came
up with a way to generate a unique key at run time that is used to
encrypt any query strings before sending to the user. This benefits both
regular text queries as well as fetching of image links and means that
web logs will only show an encrypted string where a link or query
string might slip through.

Unfortunately, GET search requests still need to be supported, as it
doesn't seem that Firefox (on iOS) supports loading search engines by
their opensearch.xml file, but instead relies on manual entry of a
search query string. Once this is updated, I'll probably remove GET
request search support.
4 years ago
Ben Busby 5d6256662f
Update README.md
Fixed typo in location based searching
4 years ago
Ben Busby 36ce44ae6a
Update README.md 4 years ago
Ben Busby fe0f17588a
Update README.md
Updated "Setup" section to clarify that docker setup is unnecessary if using Heroku quick deploy, and restructured to include local setup instructions as well.
4 years ago
Ben Busby 1f6bfa092e Complete refactoring of opensearch
Refactored opensearch.xml to only exist as a template that is
served by a flask route, which is then populated with the
necessary url root.
4 years ago
Ben Busby 79f5c607eb
Update README.md
Added clarification for prerequisites if using the Heroku single-click deploy option
4 years ago
Ben Busby ae94650aee
Updated README
Added single click deploy option for heroku
4 years ago
Ben Busby e21341d6f4 Deployment related refactoring, fixes to Dockerfile
- Updated Dockerfile to include chmod of run script
- Added app.json for Heroku quick deploy
- Removed unused function var in js controller
- Moved requirements back to root of repo
- Added Codebeat report to readme
4 years ago
Ben Busby 6f80c35fd2
Fixed missing releases link in readme 4 years ago
Ben Busby 1713bcbf23
Update README.md 4 years ago
Ben Busby 31b9e19af7 Fixed main banner in readme 4 years ago
Ben Busby 67e3c788c7 Updated readme, added screenshots 4 years ago
Ben Busby 2631335dbf Updated README 4 years ago
Ben Busby b5351c8502
Update README.md 4 years ago
Ben Busby b5b6e64177 Added testing and ci build, refactored filter class, refactored project structure 4 years ago
Ben Busby 56417787ab
Fixed typo 4 years ago
Ben Busby 3412e3cd59
Added instructions for preventing heroku downtime 4 years ago
Ben Busby 58bd93dbd0
Update README.md 4 years ago
Ben Busby 48b9f66490 Fixed incorrect opensearch template, updated readme 4 years ago
Ben Busby 20fce34db3 Added opensearch setup 4 years ago
Ben Busby 137f92d432
Added heroku setup instructions to README 4 years ago
Ben Busby c3f29a3993
Updated readme (WIP) 4 years ago
Ben Busby 6e7eef165e Initial commit 4 years ago