Wikipedia:Database reports/Untagged stubs/Configuration
Appearance
This report is updated every 7 days.
Source code
[edit]/*
Copyright 2010, 2013 bjweeks, MZMcBride, Tim Landscheidt
Copyright 2021 Kunal Mehta <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
use anyhow::Result;
use dbreps2::{str_vec, Frequency, Report};
use mysql_async::prelude::*;
use mysql_async::Conn;
pub struct Row {
page_title: String,
page_len: u64,
}
pub struct UntaggedStubs {}
impl Report<Row> for UntaggedStubs {
fn title(&self) -> &'static str {
"Untagged stubs"
}
fn frequency(&self) -> Frequency {
Frequency::Weekly
}
fn query(&self) -> &'static str {
r"
/* untaggedstubs.rs SLOW_OK */
SELECT
page_title,
page_len
FROM
page
LEFT JOIN categorylinks ON cl_from = page_id
AND (
cl_to LIKE '%_stubs'
OR cl_to LIKE 'Redirects_to_Wiki%'
OR cl_to LIKE 'Lists_of_%'
OR cl_to IN (
'All_disambiguation_pages',
'All_set_index_articles',
'Redirects_to_Wiktionary',
'Wikipedia_soft_redirects',
'All_redirects_for_discussion'
)
)
WHERE
page_namespace = 0
AND page_is_redirect = 0
AND page_title NOT LIKE 'List\\_of\\_%'
AND page_title NOT LIKE 'Lists\\_of\\_%'
AND cl_from IS NULL
AND page_len < 1500
LIMIT
1000;
"
}
async fn run_query(&self, conn: &mut Conn) -> Result<Vec<Row>> {
let rows = conn
.query_map(self.query(), |(page_title, page_len)| Row {
page_title,
page_len,
})
.await?;
Ok(rows)
}
fn intro(&self) -> &'static str {
"Untagged stubs (limited to the first 1000 entries)"
}
fn headings(&self) -> Vec<&'static str> {
vec!["Title", "Length"]
}
fn format_row(&self, row: &Row) -> Vec<String> {
str_vec![format!("[[{}]]", row.page_title), row.page_len]
}
fn code(&self) -> &'static str {
include_str!("untaggedstubs.rs")
}
}