Kaynağa Gözat

Require OAuth for search engine checks

Begin requiring OAuth for search engine checks.
This adds an extra validation step in checker.py.
It occurs after a cached result is checked for, which
allows unauthenticated viewers to still preview cached
results.
pull/52/head
Chlod Alejandro 1 ay önce
ebeveyn
işleme
10add79574
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: A1E67C59037B0CC1
1 değiştirilmiş dosya ile 4 ekleme ve 0 silme
  1. +4
    -0
      copyvios/checker.py

+ 4
- 0
copyvios/checker.py Dosyayı Görüntüle

@@ -144,6 +144,10 @@ def _perform_check(query, page, use_engine, use_links):
_LOGGER.exception("Failed to retrieve cached results")

if not query.result:
if use_engine and not query.requester_username and not query.api:
query.error = "not logged in"
return

try:
query.result = page.copyvio_check(
min_confidence=T_SUSPECT, max_queries=8, max_time=30,


Yükleniyor…
İptal
Kaydet