1 Commits

Author SHA1 Message Date
Dave Gallant
399dc4e967 Add view count to each thread 2019-12-17 22:58:08 -05:00
12 changed files with 101 additions and 178 deletions

View File

@@ -1 +1,9 @@
###### Motivation for this change
**What this PR does / why we need it:**
-
**Which issue(s) this PR fixes:**
-
**Additional Notes:**
-

View File

@@ -1,27 +0,0 @@
name: "Code scanning - action"
on:
push:
pull_request:
schedule:
- cron: '0 4 * * 1'
jobs:
CodeQL-Build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 2
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1

2
.gitignore vendored
View File

@@ -88,5 +88,3 @@ venv.bak/
.mypy_cache/
.dmypy.json
dmypy.json
tmp/

View File

@@ -1,5 +1,5 @@
language: python
dist: bionic
dist: xenial
sudo: false
cache: false
stages:
@@ -18,14 +18,15 @@ script:
jobs:
include:
- python: "2.7"
- python: "3.5"
- python: "3.6"
- python: "3.7"
- python: "3.8"
- python: "3.9-dev"
- stage: deploy
python: "3.8"
python: "3.7"
deploy:
on:
repo: davegallant/rfd

View File

@@ -1,57 +1,35 @@
SRC := rfd
SHELL := bash
.ONESHELL:
.SHELLFLAGS := -eu -o pipefail -c
.DELETE_ON_ERROR:
MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rules
SRC:=rfd
ifeq ($(origin .RECIPEPREFIX), undefined)
$(error This Make does not support .RECIPEPREFIX. Please use GNU Make 4.0 or later)
endif
.RECIPEPREFIX = >
## build: Build a tar.gz of the python package
build:
> rm -rf dist/
> python setup.py sdist
.PHONY: build
build:
rm -rf dist/
python setup.py sdist
.PHONY: push_test
push_test:
twine upload -r testpypi dist/*.tar.gz
.PHONY: push_prod
push_prod:
twine upload dist/*.tar.gz
## precommit: Run all pre-commit hooks
precommit:
> pre-commit run \
--all-files \
--show-diff-on-failure
.PHONY: precommit
precommit: ## Run pre-commit
pre-commit run \
--all-files \
--show-diff-on-failure
## lint: Run static analysis on the code
lint:
> pylint $(SRC)
.PHONY: lint
lint:
pylint $(SRC)
## test: Run all unit tests
test: tmp/.tests-passed.sentinel
.PHONY: test
test:
pytest -v
# Tests - re-ran if any file under src has been changed since tmp/.tests-passed.sentinel was last touched
tmp/.tests-passed.sentinel: $(shell find ${SRC} -type f)
> mkdir -p $(@D)
> pytest -v
> touch $@
## pr: Run pre-commit, lint and test
pr: precommit lint test
.PHONY: pr
pr: precommit lint test
ci: lint test
.PHONY: ci
## help: Print this help message
help:
> @echo "Usage:"
> @echo
> @sed -n 's/^##//p' ${MAKEFILE_LIST} | column -t -s ':' | sed -e 's/^/ /' | sort
> @echo
.PHONY: help
ci: lint test

View File

@@ -9,8 +9,7 @@ Hot deals on the command line.
[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/davegallant/rfd.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/davegallant/rfd/context:python)
![screenshot](https://user-images.githubusercontent.com/4519234/85969861-e10a4100-b996-11ea-9a31-6203322c60ee.png)
![image](https://user-images.githubusercontent.com/4519234/71054408-e18c6a00-211f-11ea-89bc-3f990a4909de.png)
## Install
@@ -18,38 +17,19 @@ Hot deals on the command line.
pip install rfd
```
## Usage
## Use
```shell
Usage: rfd [OPTIONS] COMMAND [ARGS]...
CLI for https://forums.redflagdeals.com
Options:
-v, --version
--help Show this message and exit.
Commands:
posts Display all posts in a thread.
search Search deals based on a regular expression.
threads Displays threads in the forum. Defaults to hot deals.
### view threads
```bash
rfd threads [--forum-id 9] [--limit 10]
```
## Examples
### view hot deals
```shell
rfd threads
### search
```bash
rfd search pizza [--num-pages 100]
```
### search for pizza
```shell
rfd search 'pizza'
```
## Tab Completion
To enable:
## Support Tab Completion
### bash

View File

@@ -1,5 +1,4 @@
beautifulsoup4<=4.8.2
beautifulsoup4>=4.8.1
click>=7.0
colorama>=0.4.3
requests>=2.22.0
soupsieve<=2.0

View File

@@ -1,5 +1,5 @@
pre-commit==1.21.0
pre-commit==1.20.0
pylint
pytest>=4.6.6
rope==0.16.0
rope==0.14.0
tox-travis==0.12

View File

@@ -1 +1 @@
0.3.6
0.3.4

View File

@@ -36,61 +36,34 @@ def get_vote_color(score):
return Fore.BLUE + " [" + str(score) + "] "
def print_version(ctx, value):
if not value or ctx.resilient_parsing:
return
click.echo(get_version())
ctx.exit()
def display_thread(click, thread, count): # pylint: disable=redefined-outer-name
dealer = thread.dealer_name
if dealer and dealer is not None:
dealer = "[" + dealer + "] "
else:
dealer = ""
click.echo(
" "
+ str(count)
+ "."
+ get_vote_color(thread.score)
+ Fore.RESET
+ "%s%s" % (dealer, thread.title)
+ Fore.LIGHTYELLOW_EX
+ " (%d views)" % thread.total_views
+ Fore.RESET
)
click.echo(Fore.BLUE + " {}".format(thread.url))
click.echo(Style.RESET_ALL)
@click.group(invoke_without_command=True)
@click.option(
"-v",
"--version",
is_flag=True,
callback=print_version,
expose_value=False,
is_eager=True,
)
@click.option("--version/--no-version", default=False)
@click.pass_context
def cli(ctx):
def cli(ctx, version):
"""CLI for https://forums.redflagdeals.com"""
if not ctx.invoked_subcommand:
if version:
click.echo(get_version())
elif not ctx.invoked_subcommand:
click.echo(ctx.get_help())
@cli.command(short_help="Display all posts in a thread.")
@cli.command("version")
def display_version():
click.echo(get_version())
@cli.command(short_help="Displays posts in a specific thread.")
@click.argument("post_id")
def posts(post_id):
"""Iterate all pages and display all posts in a thread.
"""Displays posts in a specific thread.
post_id can be a full url or post id only
Example:
\b
rfd posts https://forums.redflagdeals.com/koodo-targeted-public-mobile-12-120-koodo-5gb-40-no-referrals-2173603
url: https://forums.redflagdeals.com/koodo-targeted-public-mobile-12-120-koodo-5gb-40-no-referrals-2173603
post_id: 2173603
"""
try:
@@ -114,11 +87,11 @@ def posts(post_id):
sys.exit(1)
@cli.command(short_help="Displays threads in the forum. Defaults to hot deals.")
@cli.command(short_help="Displays threads in the specified forum.")
@click.option("--limit", default=10, help="Number of topics.")
@click.option("--forum-id", default=9, help="The forum id number")
def threads(limit, forum_id):
"""Display threads in the specified forum id. Defaults to 9 (hot deals).
"""Displays threads in the specified forum id. Defaults to 9.
Popular forum ids:
@@ -136,17 +109,29 @@ def threads(limit, forum_id):
"""
_threads = parse_threads(get_threads(forum_id, limit), limit)
for count, thread in enumerate(_threads, 1):
display_thread(click, thread, count)
click.echo(
" "
+ str(count)
+ "."
+ get_vote_color(thread.score)
+ Fore.RESET
+ "[%s] %s" % (thread.dealer_name, thread.title)
+ Fore.LIGHTYELLOW_EX
+ " (%d views)" % thread.total_views
+ Fore.RESET
)
click.echo(Fore.BLUE + " {}".format(thread.url))
click.echo(Style.RESET_ALL)
@cli.command(short_help="Search deals based on a regular expression.")
@cli.command(short_help="Displays threads in the specified forum.")
@click.option("--num-pages", default=5, help="Number of pages to search.")
@click.option(
"--forum-id", default=9, help="The forum id number. Defaults to 9 (hot deals)."
)
@click.argument("regex")
def search(num_pages, forum_id, regex):
"""Search deals based on regex.
@click.argument("keyword")
def search(num_pages, forum_id, keyword):
"""Searches for deals based on a keyword in the specified forum id.
Popular forum ids:
@@ -166,6 +151,15 @@ def search(num_pages, forum_id, regex):
count = 0
for page in range(1, num_pages):
_threads = parse_threads(get_threads(forum_id, 100, page=page), limit=100)
for thread in search_threads(threads=_threads, regex=regex):
for thread in search_threads(threads=_threads, keyword=keyword):
count += 1
display_thread(click, thread, count)
click.echo(
" "
+ str(count)
+ "."
+ get_vote_color(thread.score)
+ Fore.RESET
+ "[%s] %s" % (thread.dealer_name, thread.title)
)
click.echo(Fore.BLUE + " {}".format(thread.url))
click.echo(Style.RESET_ALL)

View File

@@ -7,13 +7,6 @@ def build_web_path(slug):
return "{}{}".format(API_BASE_URL, slug)
def get_dealer(topic):
dealer = None
if topic.get("offer"):
dealer = topic.get("offer").get("dealer_name")
return dealer
def parse_threads(threads, limit):
"""parse topics list api response into digestible list.
@@ -33,7 +26,7 @@ def parse_threads(threads, limit):
parsed_threads.append(
Thread(
title=topic.get("title"),
dealer_name=get_dealer(topic),
dealer_name=topic["offer"].get("dealer_name"),
score=calculate_score(topic),
url=build_web_path(topic.get("web_path")),
total_views=topic.get("total_views"),

View File

@@ -1,14 +1,13 @@
import re
def search_threads(threads, keyword=None):
"""Match deal title and dealer names with keyword specified."""
if keyword is None:
return
def search_threads(threads, regex):
"""Match deal title and dealer names with regex specified."""
regexp = re.compile(str(regex).lower())
keyword = str(keyword)
for deal in threads:
if regexp.search(deal.title.lower()) or (
deal.dealer_name and regexp.search(deal.dealer_name.lower())
if keyword.lower() in deal.title.lower() or (
deal.dealer_name and keyword.lower() in deal.dealer_name.lower()
):
yield deal