Merge branch 'master' of github.com:dgtlmoon/changedetection.io

pull/391/head
dgtlmoon 3 years ago
commit 6611823962

@ -11,24 +11,30 @@
# proxy per check # proxy per check
# - flask_cors, itsdangerous,MarkupSafe # - flask_cors, itsdangerous,MarkupSafe
import time import datetime
import os import os
import timeago import queue
import flask_login
from flask_login import login_required
import threading import threading
import time
from copy import deepcopy
from threading import Event from threading import Event
import queue import flask_login
from flask import Flask, render_template, request, send_from_directory, abort, redirect, url_for, flash
from feedgen.feed import FeedGenerator
from flask import make_response
import datetime
import pytz import pytz
from copy import deepcopy import timeago
from feedgen.feed import FeedGenerator
from flask import (
Flask,
abort,
flash,
make_response,
redirect,
render_template,
request,
send_from_directory,
url_for,
)
from flask_login import login_required
__version__ = '0.39.7' __version__ = '0.39.7'
@ -139,8 +145,8 @@ class User(flask_login.UserMixin):
def check_password(self, password): def check_password(self, password):
import hashlib
import base64 import base64
import hashlib
# Getting the values back out # Getting the values back out
raw_salt_pass = base64.b64decode(datastore.data['settings']['application']['password']) raw_salt_pass = base64.b64decode(datastore.data['settings']['application']['password'])
@ -400,6 +406,7 @@ def changedetection_app(config=None, datastore_o=None):
def get_current_checksum_include_ignore_text(uuid): def get_current_checksum_include_ignore_text(uuid):
import hashlib import hashlib
from changedetectionio import fetch_site_status from changedetectionio import fetch_site_status
# Get the most recent one # Get the most recent one
@ -548,8 +555,7 @@ def changedetection_app(config=None, datastore_o=None):
@login_required @login_required
def settings_page(): def settings_page():
from changedetectionio import forms from changedetectionio import content_fetcher, forms
from changedetectionio import content_fetcher
form = forms.globalSettingsForm(request.form) form = forms.globalSettingsForm(request.form)
@ -628,9 +634,10 @@ def changedetection_app(config=None, datastore_o=None):
urls = request.values.get('urls').split("\n") urls = request.values.get('urls').split("\n")
for url in urls: for url in urls:
url = url.strip() url = url.strip()
url, *tags = url.split(" ")
# Flask wtform validators wont work with basic auth, use validators package # Flask wtform validators wont work with basic auth, use validators package
if len(url) and validators.url(url): if len(url) and validators.url(url):
new_uuid = datastore.add_watch(url=url.strip(), tag="") new_uuid = datastore.add_watch(url=url.strip(), tag=" ".join(tags))
# Straight into the queue. # Straight into the queue.
update_q.put(new_uuid) update_q.put(new_uuid)
good += 1 good += 1
@ -813,17 +820,33 @@ def changedetection_app(config=None, datastore_o=None):
compresslevel=8) compresslevel=8)
# Create a list file with just the URLs, so it's easier to port somewhere else in the future # Create a list file with just the URLs, so it's easier to port somewhere else in the future
list_file = os.path.join(datastore_o.datastore_path, "url-list.txt") list_file = "url-list.txt"
with open(list_file, "w") as f: with open(os.path.join(datastore_o.datastore_path, list_file), "w") as f:
for uuid in datastore.data['watching']: for uuid in datastore.data["watching"]:
url = datastore.data['watching'][uuid]['url'] url = datastore.data["watching"][uuid]["url"]
f.write("{}\r\n".format(url)) f.write("{}\r\n".format(url))
list_with_tags_file = "url-list-with-tags.txt"
with open(
os.path.join(datastore_o.datastore_path, list_with_tags_file), "w"
) as f:
for uuid in datastore.data["watching"]:
url = datastore.data["watching"][uuid]["url"]
tag = datastore.data["watching"][uuid]["tag"]
f.write("{} {}\r\n".format(url, tag))
# Add it to the Zip # Add it to the Zip
zipObj.write(list_file, zipObj.write(
arcname="url-list.txt", os.path.join(datastore_o.datastore_path, list_file),
compress_type=zipfile.ZIP_DEFLATED, arcname=list_file,
compresslevel=8) compress_type=zipfile.ZIP_DEFLATED,
compresslevel=8,
)
zipObj.write(
os.path.join(datastore_o.datastore_path, list_with_tags_file),
arcname=list_with_tags_file,
compress_type=zipfile.ZIP_DEFLATED,
compresslevel=8,
)
# Send_from_directory needs to be the full absolute path # Send_from_directory needs to be the full absolute path
return send_from_directory(os.path.abspath(datastore_o.datastore_path), backupname, as_attachment=True) return send_from_directory(os.path.abspath(datastore_o.datastore_path), backupname, as_attachment=True)
@ -936,7 +959,6 @@ def changedetection_app(config=None, datastore_o=None):
# Check for new version and anonymous stats # Check for new version and anonymous stats
def check_for_new_version(): def check_for_new_version():
import requests import requests
import urllib3 import urllib3
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)

@ -5,7 +5,14 @@
<div class="inner"> <div class="inner">
<form class="pure-form pure-form-aligned" action="{{url_for('import_page')}}" method="POST"> <form class="pure-form pure-form-aligned" action="{{url_for('import_page')}}" method="POST">
<fieldset class="pure-group"> <fieldset class="pure-group">
<legend>One URL per line, URLs that do not pass validation will stay in the textarea.</legend> <legend>
Enter one URL per line, and optionally add tags for each URL after a space, delineated by comma (,):
<br>
<code>https://example.com tag1, tag2, last tag</code>
<br>
URLs which do not pass validation will stay in the textarea.
</legend>
<textarea name="urls" class="pure-input-1-2" placeholder="https://" <textarea name="urls" class="pure-input-1-2" placeholder="https://"
style="width: 100%; style="width: 100%;
@ -20,4 +27,3 @@
</div> </div>
{% endblock %} {% endblock %}

@ -0,0 +1,28 @@
#!/usr/bin/python3
import time
from flask import url_for
from .util import live_server_setup
def test_import(client, live_server):
live_server_setup(live_server)
# Give the endpoint time to spin up
time.sleep(1)
res = client.post(
url_for("import_page"),
data={
"urls": """https://example.com
https://example.com tag1
https://example.com tag1, other tag"""
},
follow_redirects=True,
)
assert b"3 Imported" in res.data
assert b"tag1" in res.data
assert b"other tag" in res.data
Loading…
Cancel
Save