Initial massive renaming.

This commit is contained in:
Jordan Petridis
2018-07-25 03:26:35 +03:00
parent 518ea9c8b5
commit 04c68ba013
112 changed files with 300 additions and 298 deletions
+46
View File
@@ -0,0 +1,46 @@
[package]
authors = ["Jordan Petridis <jordanpetridis@protonmail.com>"]
name = "podcasts-data"
version = "0.1.0"
workspace = "../"
[dependencies]
ammonia = "1.2.0"
chrono = "0.4.4"
derive_builder = "0.5.1"
lazy_static = "1.0.2"
log = "0.4.3"
rayon = "1.0.2"
rayon-futures = "0.1.0"
rfc822_sanitizer = "0.3.3"
rss = "1.5.0"
url = "1.7.1"
xdg = "2.1.0"
xml-rs = "0.8.0"
futures = "0.1.23"
hyper = "0.11.27"
tokio-core = "0.1.17"
hyper-tls = "0.1.3"
native-tls = "0.1.5"
num_cpus = "1.8.0"
failure = "0.1.1"
failure_derive = "0.1.1"
[dependencies.diesel]
features = ["sqlite", "r2d2"]
version = "1.3.2"
[dependencies.diesel_migrations]
features = ["sqlite"]
version = "1.3.0"
[dev-dependencies]
rand = "0.5.4"
tempdir = "0.3.7"
criterion = "0.2.4"
pretty_assertions = "0.5.1"
maplit = "1.0.1"
[[bench]]
name = "bench"
harness = false
+104
View File
@@ -0,0 +1,104 @@
#![allow(unused)]
#[macro_use]
extern crate criterion;
use criterion::Criterion;
// extern crate futures;
extern crate hyper;
extern crate hyper_tls;
extern crate podcasts_data;
extern crate rand;
extern crate tokio_core;
// extern crate rayon;
extern crate rss;
// use rayon::prelude::*;
// use futures::future::*;
use tokio_core::reactor::Core;
use podcasts_data::database::truncate_db;
use podcasts_data::pipeline;
use podcasts_data::FeedBuilder;
use podcasts_data::Source;
// use podcasts_data::errors::*;
use std::io::BufReader;
// RSS feeds
const INTERCEPTED: &[u8] = include_bytes!("../tests/feeds/2018-01-20-Intercepted.xml");
const INTERCEPTED_URL: &str = "https://web.archive.org/web/20180120083840if_/https://feeds.\
feedburner.com/InterceptedWithJeremyScahill";
const UNPLUGGED: &[u8] = include_bytes!("../tests/feeds/2018-01-20-LinuxUnplugged.xml");
const UNPLUGGED_URL: &str =
"https://web.archive.org/web/20180120110314if_/https://feeds.feedburner.com/linuxunplugged";
const TIPOFF: &[u8] = include_bytes!("../tests/feeds/2018-01-20-TheTipOff.xml");
const TIPOFF_URL: &str =
"https://web.archive.org/web/20180120110727if_/https://rss.acast.com/thetipoff";
// This feed has HUGE descripion and summary fields which can be very
// very expensive to parse.
const CODE: &[u8] = include_bytes!("../tests/feeds/2018-01-20-GreaterThanCode.xml");
const CODE_URL: &str =
"https://web.archive.org/web/20180120104741if_/https://www.greaterthancode.com/feed/podcast";
// Relative small feed
const STARS: &[u8] = include_bytes!("../tests/feeds/2018-01-20-StealTheStars.xml");
const STARS_URL: &str =
"https://web.archive.org/web/20180120104957if_/https://rss.art19.com/steal-the-stars";
static FEEDS: &[(&[u8], &str)] = &[
(INTERCEPTED, INTERCEPTED_URL),
(UNPLUGGED, UNPLUGGED_URL),
(TIPOFF, TIPOFF_URL),
(CODE, CODE_URL),
(STARS, STARS_URL),
];
fn bench_index_large_feed(c: &mut Criterion) {
truncate_db().unwrap();
let url = "https://www.greaterthancode.com/feed/podcast";
let mut core = Core::new().unwrap();
c.bench_function("index_large_feed", move |b| {
b.iter(|| {
let s = Source::from_url(url).unwrap();
// parse it into a channel
let chan = rss::Channel::read_from(BufReader::new(CODE)).unwrap();
let feed = FeedBuilder::default()
.channel(chan)
.source_id(s.id())
.build()
.unwrap();
core.run(feed.index()).unwrap();
})
});
truncate_db().unwrap();
}
fn bench_index_small_feed(c: &mut Criterion) {
truncate_db().unwrap();
let url = "https://rss.art19.com/steal-the-stars";
let mut core = Core::new().unwrap();
c.bench_function("index_small_feed", move |b| {
b.iter(|| {
let s = Source::from_url(url).unwrap();
// parse it into a channel
let chan = rss::Channel::read_from(BufReader::new(STARS)).unwrap();
let feed = FeedBuilder::default()
.channel(chan)
.source_id(s.id())
.build()
.unwrap();
core.run(feed.index()).unwrap();
})
});
truncate_db().unwrap();
}
criterion_group!(benches, bench_index_large_feed, bench_index_small_feed);
criterion_main!(benches);
+6
View File
@@ -0,0 +1,6 @@
# For documentation on how to configure this file,
# see diesel.rs/guides/configuring-diesel-cli
[print_schema]
file = "src/schema.rs"
patch_file = "src/schema.patch"
@@ -0,0 +1,3 @@
Drop Table episode;
Drop Table podcast;
Drop Table source;
@@ -0,0 +1,34 @@
CREATE TABLE `source` (
`id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
`uri` TEXT NOT NULL UNIQUE,
`last_modified` TEXT,
`http_etag` TEXT
);
CREATE TABLE `episode` (
`id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
`title` TEXT,
`uri` TEXT NOT NULL UNIQUE,
`local_uri` TEXT,
`description` TEXT,
`published_date` TEXT,
`epoch` INTEGER NOT NULL DEFAULT 0,
`length` INTEGER,
`guid` TEXT,
`played` INTEGER,
`favorite` INTEGER NOT NULL DEFAULT 0,
`archive` INTEGER NOT NULL DEFAULT 0,
`podcast_id` INTEGER NOT NULL
);
CREATE TABLE `podcast` (
`id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
`title` TEXT NOT NULL,
`link` TEXT NOT NULL,
`description` TEXT NOT NULL,
`image_uri` TEXT,
`favorite` INTEGER NOT NULL DEFAULT 0,
`archive` INTEGER NOT NULL DEFAULT 0,
`always_dl` INTEGER NOT NULL DEFAULT 0,
`source_id` INTEGER NOT NULL UNIQUE
);
@@ -0,0 +1,23 @@
ALTER TABLE episode RENAME TO old_table;
CREATE TABLE episode (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
title TEXT,
uri TEXT NOT NULL UNIQUE,
local_uri TEXT,
description TEXT,
published_date TEXT,
epoch INTEGER NOT NULL DEFAULT 0,
length INTEGER,
guid TEXT,
played INTEGER,
favorite INTEGER NOT NULL DEFAULT 0,
archive INTEGER NOT NULL DEFAULT 0,
podcast_id INTEGER NOT NULL
);
INSERT INTO episode (title, uri, local_uri, description, published_date, epoch, length, guid, played, favorite, archive, podcast_id)
SELECT title, uri, local_uri, description, published_date, epoch, length, guid, played, favorite, archive, podcast_id
FROM old_table;
Drop table old_table;
@@ -0,0 +1,22 @@
ALTER TABLE episode RENAME TO old_table;
CREATE TABLE episode (
title TEXT NOT NULL,
uri TEXT,
local_uri TEXT,
description TEXT,
published_date TEXT,
epoch INTEGER NOT NULL DEFAULT 0,
length INTEGER,
guid TEXT,
played INTEGER,
podcast_id INTEGER NOT NULL,
favorite INTEGER DEFAULT 0,
archive INTEGER DEFAULT 0,
PRIMARY KEY (title, podcast_id)
);
INSERT INTO episode (title, uri, local_uri, description, published_date, epoch, length, guid, played, favorite, archive, podcast_id)
SELECT title, uri, local_uri, description, published_date, epoch, length, guid, played, favorite, archive, podcast_id
FROM old_table;
Drop table old_table;
@@ -0,0 +1,22 @@
ALTER TABLE episode RENAME TO old_table;
CREATE TABLE episode (
title TEXT NOT NULL,
uri TEXT,
local_uri TEXT,
description TEXT,
published_date TEXT,
epoch INTEGER NOT NULL DEFAULT 0,
length INTEGER,
guid TEXT,
played INTEGER,
podcast_id INTEGER NOT NULL,
favorite INTEGER DEFAULT 0,
archive INTEGER DEFAULT 0,
PRIMARY KEY (title, podcast_id)
);
INSERT INTO episode (title, uri, local_uri, description, published_date, epoch, length, guid, played, favorite, archive, podcast_id)
SELECT title, uri, local_uri, description, published_date, epoch, length, guid, played, favorite, archive, podcast_id
FROM old_table;
Drop table old_table;
@@ -0,0 +1,23 @@
ALTER TABLE episode RENAME TO old_table;
CREATE TABLE episode (
title TEXT NOT NULL,
uri TEXT,
local_uri TEXT,
description TEXT,
published_date TEXT,
epoch INTEGER NOT NULL DEFAULT 0,
length INTEGER,
duration INTEGER,
guid TEXT,
played INTEGER,
podcast_id INTEGER NOT NULL,
favorite INTEGER DEFAULT 0,
archive INTEGER DEFAULT 0,
PRIMARY KEY (title, podcast_id)
);
INSERT INTO episode (title, uri, local_uri, description, published_date, epoch, length, guid, played, favorite, archive, podcast_id)
SELECT title, uri, local_uri, description, published_date, epoch, length, guid, played, favorite, archive, podcast_id
FROM old_table;
Drop table old_table;
@@ -0,0 +1,24 @@
ALTER TABLE episode RENAME TO old_table;
CREATE TABLE episode (
title TEXT NOT NULL,
uri TEXT,
local_uri TEXT,
description TEXT,
published_date TEXT,
epoch INTEGER NOT NULL DEFAULT 0,
length INTEGER,
duration INTEGER,
guid TEXT,
played INTEGER,
podcast_id INTEGER NOT NULL,
favorite INTEGER DEFAULT 0,
archive INTEGER DEFAULT 0,
PRIMARY KEY (title, podcast_id)
);
INSERT INTO episode (title, uri, local_uri, description, epoch, length, duration, guid, played, favorite, archive, podcast_id)
SELECT title, uri, local_uri, description, epoch, length, duration, guid, played, favorite, archive, podcast_id
FROM old_table;
Drop table old_table;
@@ -0,0 +1,23 @@
ALTER TABLE episode RENAME TO old_table;
CREATE TABLE episode (
title TEXT NOT NULL,
uri TEXT,
local_uri TEXT,
description TEXT,
epoch INTEGER NOT NULL DEFAULT 0,
length INTEGER,
duration INTEGER,
guid TEXT,
played INTEGER,
podcast_id INTEGER NOT NULL,
favorite INTEGER DEFAULT 0,
archive INTEGER DEFAULT 0,
PRIMARY KEY (title, podcast_id)
);
INSERT INTO episode (title, uri, local_uri, description, epoch, length, duration, guid, played, favorite, archive, podcast_id)
SELECT title, uri, local_uri, description, epoch, length, duration, guid, played, favorite, archive, podcast_id
FROM old_table;
Drop table old_table;
@@ -0,0 +1,53 @@
ALTER TABLE episode RENAME TO old_table;
CREATE TABLE episode (
title TEXT NOT NULL,
uri TEXT,
local_uri TEXT,
description TEXT,
epoch INTEGER NOT NULL DEFAULT 0,
length INTEGER,
duration INTEGER,
guid TEXT,
played INTEGER,
podcast_id INTEGER NOT NULL,
favorite INTEGER DEFAULT 0,
archive INTEGER DEFAULT 0,
PRIMARY KEY (title, podcast_id)
);
INSERT INTO episode (title, uri, local_uri, description, epoch, length, duration, guid, played, podcast_id, favorite, archive)
SELECT title, uri, local_uri, description, epoch, length, duration, guid, played, podcast_id, 0, 0
FROM old_table;
Drop table old_table;
ALTER TABLE podcast RENAME TO old_table;
CREATE TABLE `podcast` (
`id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
`title` TEXT NOT NULL,
`link` TEXT NOT NULL,
`description` TEXT NOT NULL,
`image_uri` TEXT,
`source_id` INTEGER NOT NULL UNIQUE,
`favorite` INTEGER NOT NULL DEFAULT 0,
`archive` INTEGER NOT NULL DEFAULT 0,
`always_dl` INTEGER NOT NULL DEFAULT 0
);
INSERT INTO podcast (
id,
title,
link,
description,
image_uri,
source_id
) SELECT id,
title,
link,
description,
image_uri,
source_id
FROM old_table;
Drop table old_table;
@@ -0,0 +1,66 @@
ALTER TABLE episode RENAME TO old_table;
CREATE TABLE episode (
title TEXT NOT NULL,
uri TEXT,
local_uri TEXT,
description TEXT,
epoch INTEGER NOT NULL DEFAULT 0,
length INTEGER,
duration INTEGER,
guid TEXT,
played INTEGER,
podcast_id INTEGER NOT NULL,
PRIMARY KEY (title, podcast_id)
);
INSERT INTO episode (
title,
uri,
local_uri,
description,
epoch,
length,
duration,
guid,
played,
podcast_id
) SELECT title,
uri,
local_uri,
description,
epoch, length,
duration,
guid,
played,
podcast_id
FROM old_table;
Drop table old_table;
ALTER TABLE podcast RENAME TO old_table;
CREATE TABLE `podcast` (
`id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
`title` TEXT NOT NULL,
`link` TEXT NOT NULL,
`description` TEXT NOT NULL,
`image_uri` TEXT,
`source_id` INTEGER NOT NULL UNIQUE
);
INSERT INTO podcast (
id,
title,
link,
description,
image_uri,
source_id
) SELECT id,
title,
link,
description,
image_uri,
source_id
FROM old_table;
Drop table old_table;
@@ -0,0 +1,40 @@
ALTER TABLE episodes RENAME TO old_table;
ALTER TABLE shows RENAME TO podcast;
CREATE TABLE episode (
title TEXT NOT NULL,
uri TEXT,
local_uri TEXT,
description TEXT,
epoch INTEGER NOT NULL DEFAULT 0,
length INTEGER,
duration INTEGER,
guid TEXT,
played INTEGER,
podcast_id INTEGER NOT NULL,
PRIMARY KEY (title, podcast_id)
);
INSERT INTO episode (
title,
uri,
local_uri,
description,
epoch,
length,
duration,
guid,
played,
podcast_id
) SELECT title,
uri,
local_uri,
description,
epoch, length,
duration,
guid,
played,
show_id
FROM old_table;
Drop table old_table;
@@ -0,0 +1,40 @@
ALTER TABLE episode RENAME TO old_table;
ALTER TABLE podcast RENAME TO shows;
CREATE TABLE episodes (
title TEXT NOT NULL,
uri TEXT,
local_uri TEXT,
description TEXT,
epoch INTEGER NOT NULL DEFAULT 0,
length INTEGER,
duration INTEGER,
guid TEXT,
played INTEGER,
show_id INTEGER NOT NULL,
PRIMARY KEY (title, show_id)
);
INSERT INTO episodes (
title,
uri,
local_uri,
description,
epoch,
length,
duration,
guid,
played,
show_id
) SELECT title,
uri,
local_uri,
description,
epoch, length,
duration,
guid,
played,
podcast_id
FROM old_table;
Drop table old_table;
+77
View File
@@ -0,0 +1,77 @@
//! Database Setup. This is only public to help with some unit tests.
// Diesel embed_migrations! triggers the lint
#![allow(unused_imports)]
use diesel::prelude::*;
use diesel::r2d2;
use diesel::r2d2::ConnectionManager;
use std::io;
use std::path::PathBuf;
use errors::DataError;
#[cfg(not(test))]
use xdg_dirs;
type Pool = r2d2::Pool<ConnectionManager<SqliteConnection>>;
embed_migrations!("migrations/");
lazy_static! {
static ref POOL: Pool = init_pool(DB_PATH.to_str().unwrap());
}
#[cfg(not(test))]
lazy_static! {
static ref DB_PATH: PathBuf = xdg_dirs::PODCASTS_XDG
.place_data_file("podcasts.db")
.unwrap();
}
#[cfg(test)]
extern crate tempdir;
#[cfg(test)]
lazy_static! {
static ref TEMPDIR: tempdir::TempDir = { tempdir::TempDir::new("podcasts_unit_test").unwrap() };
static ref DB_PATH: PathBuf = TEMPDIR.path().join("podcasts.db");
}
/// Get an r2d2 `SqliteConnection`.
pub(crate) fn connection() -> Pool {
POOL.clone()
}
fn init_pool(db_path: &str) -> Pool {
let manager = ConnectionManager::<SqliteConnection>::new(db_path);
let pool = r2d2::Pool::builder()
.max_size(1)
.build(manager)
.expect("Failed to create pool.");
{
let db = pool.get().expect("Failed to initialize pool.");
run_migration_on(&*db).expect("Failed to run migrations during init.");
}
info!("Database pool initialized.");
pool
}
fn run_migration_on(connection: &SqliteConnection) -> Result<(), DataError> {
info!("Running DB Migrations...");
// embedded_migrations::run(connection)?;
embedded_migrations::run_with_output(connection, &mut io::stdout()).map_err(From::from)
}
/// Reset the database into a clean state.
// Test share a Temp file db.
#[allow(dead_code)]
pub fn truncate_db() -> Result<(), DataError> {
let db = connection();
let con = db.get()?;
con.execute("DELETE FROM episodes")?;
con.execute("DELETE FROM shows")?;
con.execute("DELETE FROM source")?;
Ok(())
}
+441
View File
@@ -0,0 +1,441 @@
//! Random CRUD helper functions.
use chrono::prelude::*;
use diesel::prelude::*;
use diesel;
use diesel::dsl::exists;
use diesel::query_builder::AsQuery;
use diesel::select;
use database::connection;
use errors::DataError;
use models::*;
pub fn get_sources() -> Result<Vec<Source>, DataError> {
use schema::source::dsl::*;
let db = connection();
let con = db.get()?;
source
.order((http_etag.asc(), last_modified.asc()))
.load::<Source>(&con)
.map_err(From::from)
}
pub fn get_podcasts() -> Result<Vec<Show>, DataError> {
use schema::shows::dsl::*;
let db = connection();
let con = db.get()?;
shows
.order(title.asc())
.load::<Show>(&con)
.map_err(From::from)
}
pub fn get_podcasts_filter(filter_ids: &[i32]) -> Result<Vec<Show>, DataError> {
use schema::shows::dsl::*;
let db = connection();
let con = db.get()?;
shows
.order(title.asc())
.filter(id.ne_all(filter_ids))
.load::<Show>(&con)
.map_err(From::from)
}
pub fn get_episodes() -> Result<Vec<Episode>, DataError> {
use schema::episodes::dsl::*;
let db = connection();
let con = db.get()?;
episodes
.order(epoch.desc())
.load::<Episode>(&con)
.map_err(From::from)
}
pub(crate) fn get_downloaded_episodes() -> Result<Vec<EpisodeCleanerModel>, DataError> {
use schema::episodes::dsl::*;
let db = connection();
let con = db.get()?;
episodes
.select((rowid, local_uri, played))
.filter(local_uri.is_not_null())
.load::<EpisodeCleanerModel>(&con)
.map_err(From::from)
}
// pub(crate) fn get_played_episodes() -> Result<Vec<Episode>, DataError> {
// use schema::episodes::dsl::*;
// let db = connection();
// let con = db.get()?;
// episodes
// .filter(played.is_not_null())
// .load::<Episode>(&con)
// .map_err(From::from)
// }
pub(crate) fn get_played_cleaner_episodes() -> Result<Vec<EpisodeCleanerModel>, DataError> {
use schema::episodes::dsl::*;
let db = connection();
let con = db.get()?;
episodes
.select((rowid, local_uri, played))
.filter(played.is_not_null())
.load::<EpisodeCleanerModel>(&con)
.map_err(From::from)
}
pub fn get_episode_from_rowid(ep_id: i32) -> Result<Episode, DataError> {
use schema::episodes::dsl::*;
let db = connection();
let con = db.get()?;
episodes
.filter(rowid.eq(ep_id))
.get_result::<Episode>(&con)
.map_err(From::from)
}
pub fn get_episode_widget_from_rowid(ep_id: i32) -> Result<EpisodeWidgetModel, DataError> {
use schema::episodes::dsl::*;
let db = connection();
let con = db.get()?;
episodes
.select((
rowid, title, uri, local_uri, epoch, length, duration, played, show_id,
))
.filter(rowid.eq(ep_id))
.get_result::<EpisodeWidgetModel>(&con)
.map_err(From::from)
}
pub fn get_episode_local_uri_from_id(ep_id: i32) -> Result<Option<String>, DataError> {
use schema::episodes::dsl::*;
let db = connection();
let con = db.get()?;
episodes
.filter(rowid.eq(ep_id))
.select(local_uri)
.get_result::<Option<String>>(&con)
.map_err(From::from)
}
pub fn get_episodes_widgets_filter_limit(
filter_ids: &[i32],
limit: u32,
) -> Result<Vec<EpisodeWidgetModel>, DataError> {
use schema::episodes::dsl::*;
let db = connection();
let con = db.get()?;
let columns = (
rowid, title, uri, local_uri, epoch, length, duration, played, show_id,
);
episodes
.select(columns)
.order(epoch.desc())
.filter(show_id.ne_all(filter_ids))
.limit(i64::from(limit))
.load::<EpisodeWidgetModel>(&con)
.map_err(From::from)
}
pub fn get_podcast_from_id(pid: i32) -> Result<Show, DataError> {
use schema::shows::dsl::*;
let db = connection();
let con = db.get()?;
shows
.filter(id.eq(pid))
.get_result::<Show>(&con)
.map_err(From::from)
}
pub fn get_podcast_cover_from_id(pid: i32) -> Result<ShowCoverModel, DataError> {
use schema::shows::dsl::*;
let db = connection();
let con = db.get()?;
shows
.select((id, title, image_uri))
.filter(id.eq(pid))
.get_result::<ShowCoverModel>(&con)
.map_err(From::from)
}
pub fn get_pd_episodes(parent: &Show) -> Result<Vec<Episode>, DataError> {
use schema::episodes::dsl::*;
let db = connection();
let con = db.get()?;
Episode::belonging_to(parent)
.order(epoch.desc())
.load::<Episode>(&con)
.map_err(From::from)
}
pub fn get_pd_episodes_count(parent: &Show) -> Result<i64, DataError> {
let db = connection();
let con = db.get()?;
Episode::belonging_to(parent)
.count()
.get_result(&con)
.map_err(From::from)
}
pub fn get_pd_episodeswidgets(parent: &Show) -> Result<Vec<EpisodeWidgetModel>, DataError> {
use schema::episodes::dsl::*;
let db = connection();
let con = db.get()?;
let columns = (
rowid, title, uri, local_uri, epoch, length, duration, played, show_id,
);
episodes
.select(columns)
.filter(show_id.eq(parent.id()))
.order(epoch.desc())
.load::<EpisodeWidgetModel>(&con)
.map_err(From::from)
}
pub fn get_pd_unplayed_episodes(parent: &Show) -> Result<Vec<Episode>, DataError> {
use schema::episodes::dsl::*;
let db = connection();
let con = db.get()?;
Episode::belonging_to(parent)
.filter(played.is_null())
.order(epoch.desc())
.load::<Episode>(&con)
.map_err(From::from)
}
// pub(crate) fn get_pd_episodes_limit(parent: &Show, limit: u32) ->
// Result<Vec<Episode>, DataError> { use schema::episodes::dsl::*;
// let db = connection();
// let con = db.get()?;
// Episode::belonging_to(parent)
// .order(epoch.desc())
// .limit(i64::from(limit))
// .load::<Episode>(&con)
// .map_err(From::from)
// }
pub fn get_source_from_uri(uri_: &str) -> Result<Source, DataError> {
use schema::source::dsl::*;
let db = connection();
let con = db.get()?;
source
.filter(uri.eq(uri_))
.get_result::<Source>(&con)
.map_err(From::from)
}
pub fn get_source_from_id(id_: i32) -> Result<Source, DataError> {
use schema::source::dsl::*;
let db = connection();
let con = db.get()?;
source
.filter(id.eq(id_))
.get_result::<Source>(&con)
.map_err(From::from)
}
pub fn get_podcast_from_source_id(sid: i32) -> Result<Show, DataError> {
use schema::shows::dsl::*;
let db = connection();
let con = db.get()?;
shows
.filter(source_id.eq(sid))
.get_result::<Show>(&con)
.map_err(From::from)
}
pub fn get_episode_from_pk(title_: &str, pid: i32) -> Result<Episode, DataError> {
use schema::episodes::dsl::*;
let db = connection();
let con = db.get()?;
episodes
.filter(title.eq(title_))
.filter(show_id.eq(pid))
.get_result::<Episode>(&con)
.map_err(From::from)
}
pub(crate) fn get_episode_minimal_from_pk(
title_: &str,
pid: i32,
) -> Result<EpisodeMinimal, DataError> {
use schema::episodes::dsl::*;
let db = connection();
let con = db.get()?;
episodes
.select((rowid, title, uri, epoch, length, duration, guid, show_id))
.filter(title.eq(title_))
.filter(show_id.eq(pid))
.get_result::<EpisodeMinimal>(&con)
.map_err(From::from)
}
pub(crate) fn remove_feed(pd: &Show) -> Result<(), DataError> {
let db = connection();
let con = db.get()?;
con.transaction(|| {
delete_source(&con, pd.source_id())?;
delete_podcast(&con, pd.id())?;
delete_podcast_episodes(&con, pd.id())?;
info!("Feed removed from the Database.");
Ok(())
})
}
fn delete_source(con: &SqliteConnection, source_id: i32) -> QueryResult<usize> {
use schema::source::dsl::*;
diesel::delete(source.filter(id.eq(source_id))).execute(con)
}
fn delete_podcast(con: &SqliteConnection, show_id: i32) -> QueryResult<usize> {
use schema::shows::dsl::*;
diesel::delete(shows.filter(id.eq(show_id))).execute(con)
}
fn delete_podcast_episodes(con: &SqliteConnection, parent_id: i32) -> QueryResult<usize> {
use schema::episodes::dsl::*;
diesel::delete(episodes.filter(show_id.eq(parent_id))).execute(con)
}
pub fn source_exists(url: &str) -> Result<bool, DataError> {
use schema::source::dsl::*;
let db = connection();
let con = db.get()?;
select(exists(source.filter(uri.eq(url))))
.get_result(&con)
.map_err(From::from)
}
pub(crate) fn podcast_exists(source_id_: i32) -> Result<bool, DataError> {
use schema::shows::dsl::*;
let db = connection();
let con = db.get()?;
select(exists(shows.filter(source_id.eq(source_id_))))
.get_result(&con)
.map_err(From::from)
}
#[cfg_attr(rustfmt, rustfmt_skip)]
pub(crate) fn episode_exists(title_: &str, show_id_: i32) -> Result<bool, DataError> {
use schema::episodes::dsl::*;
let db = connection();
let con = db.get()?;
select(exists(episodes.filter(show_id.eq(show_id_)).filter(title.eq(title_))))
.get_result(&con)
.map_err(From::from)
}
/// Check if the `episodes table contains any rows
///
/// Return true if `episodes` table is populated.
pub fn is_episodes_populated() -> Result<bool, DataError> {
use schema::episodes::dsl::*;
let db = connection();
let con = db.get()?;
select(exists(episodes.as_query()))
.get_result(&con)
.map_err(From::from)
}
/// Check if the `shows` table contains any rows
///
/// Return true if `shows table is populated.
pub fn is_podcasts_populated(filter_ids: &[i32]) -> Result<bool, DataError> {
use schema::shows::dsl::*;
let db = connection();
let con = db.get()?;
select(exists(shows.filter(id.ne_all(filter_ids))))
.get_result(&con)
.map_err(From::from)
}
pub(crate) fn index_new_episodes(eps: &[NewEpisode]) -> Result<(), DataError> {
use schema::episodes::dsl::*;
let db = connection();
let con = db.get()?;
diesel::insert_into(episodes)
.values(eps)
.execute(&*con)
.map_err(From::from)
.map(|_| ())
}
pub fn update_none_to_played_now(parent: &Show) -> Result<usize, DataError> {
use schema::episodes::dsl::*;
let db = connection();
let con = db.get()?;
let epoch_now = Utc::now().timestamp() as i32;
con.transaction(|| {
diesel::update(Episode::belonging_to(parent).filter(played.is_null()))
.set(played.eq(Some(epoch_now)))
.execute(&con)
.map_err(From::from)
})
}
#[cfg(test)]
mod tests {
use super::*;
use database::*;
use pipeline;
#[test]
fn test_update_none_to_played_now() {
truncate_db().unwrap();
let url = "https://web.archive.org/web/20180120083840if_/https://feeds.feedburner.\
com/InterceptedWithJeremyScahill";
let source = Source::from_url(url).unwrap();
let id = source.id();
pipeline::run(vec![source], true).unwrap();
let pd = get_podcast_from_source_id(id).unwrap();
let eps_num = get_pd_unplayed_episodes(&pd).unwrap().len();
assert_ne!(eps_num, 0);
update_none_to_played_now(&pd).unwrap();
let eps_num2 = get_pd_unplayed_episodes(&pd).unwrap().len();
assert_eq!(eps_num2, 0);
}
}
+139
View File
@@ -0,0 +1,139 @@
use diesel;
use diesel::r2d2;
use diesel_migrations::RunMigrationsError;
use hyper;
use native_tls;
use rss;
use url;
use xml;
use std::io;
use models::Source;
#[fail(
display = "Request to {} returned {}. Context: {}",
url,
status_code,
context
)]
#[derive(Fail, Debug)]
pub struct HttpStatusError {
url: String,
status_code: hyper::StatusCode,
context: String,
}
impl HttpStatusError {
pub fn new(url: String, code: hyper::StatusCode, context: String) -> Self {
HttpStatusError {
url,
status_code: code,
context,
}
}
}
#[derive(Fail, Debug)]
pub enum DataError {
#[fail(display = "SQL Query failed: {}", _0)]
DieselResultError(#[cause] diesel::result::Error),
#[fail(display = "Database Migration error: {}", _0)]
DieselMigrationError(#[cause] RunMigrationsError),
#[fail(display = "R2D2 error: {}", _0)]
R2D2Error(#[cause] r2d2::Error),
#[fail(display = "R2D2 Pool error: {}", _0)]
R2D2PoolError(#[cause] r2d2::PoolError),
#[fail(display = "Hyper Error: {}", _0)]
HyperError(#[cause] hyper::Error),
#[fail(display = "Failed to parse a url: {}", _0)]
// TODO: print the url too
UrlError(#[cause] url::ParseError),
#[fail(display = "TLS Error: {}", _0)]
TLSError(#[cause] native_tls::Error),
#[fail(display = "IO Error: {}", _0)]
IOError(#[cause] io::Error),
#[fail(display = "RSS Error: {}", _0)]
RssError(#[cause] rss::Error),
#[fail(display = "XML Reader Error: {}", _0)]
XmlReaderError(#[cause] xml::reader::Error),
#[fail(display = "Error: {}", _0)]
Bail(String),
#[fail(display = "{}", _0)]
HttpStatusGeneral(HttpStatusError),
#[fail(display = "FIXME: This should be better")]
F301(Source),
#[fail(
display = "Error occured while Parsing an Episode. Reason: {}",
reason
)]
ParseEpisodeError { reason: String, parent_id: i32 },
#[fail(display = "Episode was not changed and thus skipped.")]
EpisodeNotChanged,
}
impl From<RunMigrationsError> for DataError {
fn from(err: RunMigrationsError) -> Self {
DataError::DieselMigrationError(err)
}
}
impl From<diesel::result::Error> for DataError {
fn from(err: diesel::result::Error) -> Self {
DataError::DieselResultError(err)
}
}
impl From<r2d2::Error> for DataError {
fn from(err: r2d2::Error) -> Self {
DataError::R2D2Error(err)
}
}
impl From<r2d2::PoolError> for DataError {
fn from(err: r2d2::PoolError) -> Self {
DataError::R2D2PoolError(err)
}
}
impl From<hyper::Error> for DataError {
fn from(err: hyper::Error) -> Self {
DataError::HyperError(err)
}
}
impl From<url::ParseError> for DataError {
fn from(err: url::ParseError) -> Self {
DataError::UrlError(err)
}
}
impl From<native_tls::Error> for DataError {
fn from(err: native_tls::Error) -> Self {
DataError::TLSError(err)
}
}
impl From<io::Error> for DataError {
fn from(err: io::Error) -> Self {
DataError::IOError(err)
}
}
impl From<rss::Error> for DataError {
fn from(err: rss::Error) -> Self {
DataError::RssError(err)
}
}
impl From<xml::reader::Error> for DataError {
fn from(err: xml::reader::Error) -> Self {
DataError::XmlReaderError(err)
}
}
impl From<String> for DataError {
fn from(err: String) -> Self {
DataError::Bail(err)
}
}
+223
View File
@@ -0,0 +1,223 @@
#![cfg_attr(feature = "cargo-clippy", allow(unit_arg))]
//! Index Feeds.
use futures::future::*;
use futures::prelude::*;
use futures::stream;
use rss;
use dbqueries;
use errors::DataError;
use models::{Index, IndexState, Update};
use models::{NewEpisode, NewEpisodeMinimal, NewShow, Show};
/// Wrapper struct that hold a `Source` id and the `rss::Channel`
/// that corresponds to the `Source.uri` field.
#[derive(Debug, Clone, Builder, PartialEq)]
#[builder(derive(Debug))]
#[builder(setter(into))]
pub struct Feed {
/// The `rss::Channel` parsed from the `Source` uri.
channel: rss::Channel,
/// The `Source` id where the xml `rss::Channel` came from.
source_id: i32,
}
impl Feed {
/// Index the contents of the RSS `Feed` into the database.
pub fn index(self) -> impl Future<Item = (), Error = DataError> + Send {
self.parse_podcast_async()
.and_then(|pd| pd.to_podcast())
.and_then(move |pd| self.index_channel_items(pd))
}
fn parse_podcast(&self) -> NewShow {
NewShow::new(&self.channel, self.source_id)
}
fn parse_podcast_async(&self) -> impl Future<Item = NewShow, Error = DataError> + Send {
ok(self.parse_podcast())
}
fn index_channel_items(self, pd: Show) -> impl Future<Item = (), Error = DataError> + Send {
let stream = stream::iter_ok::<_, DataError>(self.channel.into_items());
// Parse the episodes
let episodes = stream.filter_map(move |item| {
glue(&item, pd.id())
.map_err(|err| error!("Failed to parse an episode: {}", err))
.ok()
});
// Filter errors, Index updatable episodes, return insertables.
filter_episodes(episodes)
// Batch index insertable episodes.
.and_then(|eps| ok(batch_insert_episodes(&eps)))
}
}
fn glue(item: &rss::Item, id: i32) -> Result<IndexState<NewEpisode>, DataError> {
NewEpisodeMinimal::new(item, id).and_then(move |ep| determine_ep_state(ep, item))
}
fn determine_ep_state(
ep: NewEpisodeMinimal,
item: &rss::Item,
) -> Result<IndexState<NewEpisode>, DataError> {
// Check if feed exists
let exists = dbqueries::episode_exists(ep.title(), ep.show_id())?;
if !exists {
Ok(IndexState::Index(ep.into_new_episode(item)))
} else {
let old = dbqueries::get_episode_minimal_from_pk(ep.title(), ep.show_id())?;
let rowid = old.rowid();
if ep != old {
Ok(IndexState::Update((ep.into_new_episode(item), rowid)))
} else {
Ok(IndexState::NotChanged)
}
}
}
fn filter_episodes<'a, S>(
stream: S,
) -> impl Future<Item = Vec<NewEpisode>, Error = DataError> + Send + 'a
where
S: Stream<Item = IndexState<NewEpisode>, Error = DataError> + Send + 'a,
{
stream.filter_map(|state| match state {
IndexState::NotChanged => None,
// Update individual rows, and filter them
IndexState::Update((ref ep, rowid)) => {
ep.update(rowid)
.map_err(|err| error!("{}", err))
.map_err(|_| error!("Failed to index episode: {:?}.", ep.title()))
.ok();
None
},
IndexState::Index(s) => Some(s),
})
// only Index is left, collect them for batch index
.collect()
}
fn batch_insert_episodes(episodes: &[NewEpisode]) {
if episodes.is_empty() {
return;
};
info!("Indexing {} episodes.", episodes.len());
dbqueries::index_new_episodes(episodes)
.map_err(|err| {
error!("Failed batch indexng: {}", err);
info!("Fallign back to individual indexing.");
})
.unwrap_or_else(|_| {
episodes.iter().for_each(|ep| {
ep.index()
.map_err(|err| error!("Error: {}.", err))
.map_err(|_| error!("Failed to index episode: {:?}.", ep.title()))
.ok();
});
})
}
#[cfg(test)]
mod tests {
use rss::Channel;
use tokio_core::reactor::Core;
use database::truncate_db;
use dbqueries;
use utils::get_feed;
use Source;
use std::fs;
use std::io::BufReader;
use super::*;
// (path, url) tuples.
const URLS: &[(&str, &str)] = {
&[
(
"tests/feeds/2018-01-20-Intercepted.xml",
"https://web.archive.org/web/20180120083840if_/https://feeds.feedburner.\
com/InterceptedWithJeremyScahill",
),
(
"tests/feeds/2018-01-20-LinuxUnplugged.xml",
"https://web.archive.org/web/20180120110314if_/https://feeds.feedburner.\
com/linuxunplugged",
),
(
"tests/feeds/2018-01-20-TheTipOff.xml",
"https://web.archive.org/web/20180120110727if_/https://rss.acast.com/thetipoff",
),
(
"tests/feeds/2018-01-20-StealTheStars.xml",
"https://web.archive.org/web/20180120104957if_/https://rss.art19.\
com/steal-the-stars",
),
(
"tests/feeds/2018-01-20-GreaterThanCode.xml",
"https://web.archive.org/web/20180120104741if_/https://www.greaterthancode.\
com/feed/podcast",
),
]
};
#[test]
fn test_complete_index() {
truncate_db().unwrap();
let feeds: Vec<_> = URLS
.iter()
.map(|&(path, url)| {
// Create and insert a Source into db
let s = Source::from_url(url).unwrap();
get_feed(path, s.id())
})
.collect();
let mut core = Core::new().unwrap();
// Index the channels
let list: Vec<_> = feeds.into_iter().map(|x| x.index()).collect();
let _foo = core.run(join_all(list));
// Assert the index rows equal the controlled results
assert_eq!(dbqueries::get_sources().unwrap().len(), 5);
assert_eq!(dbqueries::get_podcasts().unwrap().len(), 5);
assert_eq!(dbqueries::get_episodes().unwrap().len(), 354);
}
#[test]
fn test_feed_parse_podcast() {
truncate_db().unwrap();
let path = "tests/feeds/2018-01-20-Intercepted.xml";
let feed = get_feed(path, 42);
let file = fs::File::open(path).unwrap();
let channel = Channel::read_from(BufReader::new(file)).unwrap();
let pd = NewShow::new(&channel, 42);
assert_eq!(feed.parse_podcast(), pd);
}
#[test]
fn test_feed_index_channel_items() {
truncate_db().unwrap();
let path = "tests/feeds/2018-01-20-Intercepted.xml";
let feed = get_feed(path, 42);
let pd = feed.parse_podcast().to_podcast().unwrap();
feed.index_channel_items(pd).wait().unwrap();
assert_eq!(dbqueries::get_podcasts().unwrap().len(), 1);
assert_eq!(dbqueries::get_episodes().unwrap().len(), 43);
}
}
+152
View File
@@ -0,0 +1,152 @@
#![recursion_limit = "1024"]
#![allow(unknown_lints)]
#![cfg_attr(
all(test, feature = "clippy"),
allow(option_unwrap_used, result_unwrap_used)
)]
#![cfg_attr(feature = "cargo-clippy", allow(option_map_unit_fn))]
#![cfg_attr(
feature = "clippy",
warn(
option_unwrap_used,
result_unwrap_used,
print_stdout,
wrong_pub_self_convention,
mut_mut,
non_ascii_literal,
similar_names,
unicode_not_nfc,
enum_glob_use,
if_not_else,
items_after_statements,
used_underscore_binding
)
)]
// Enable lint group collections
#![warn(
nonstandard_style,
edition_2018,
rust_2018_idioms,
bad_style,
unused
)]
// standalone lints
#![warn(
const_err,
improper_ctypes,
non_shorthand_field_patterns,
no_mangle_generic_items,
overflowing_literals,
plugin_as_library,
private_no_mangle_fns,
private_no_mangle_statics,
unconditional_recursion,
unions_with_drop_fields,
while_true,
missing_debug_implementations,
missing_docs,
trivial_casts,
trivial_numeric_casts,
elided_lifetime_in_paths,
missing_copy_implementations
)]
#![deny(warnings)]
// warn when code is not using dyn Trait syntax. req rustc 1.27
// #![deny(bare_trait_object)]
//! FIXME: Docs
#[cfg(test)]
#[macro_use]
extern crate pretty_assertions;
#[cfg(test)]
#[macro_use]
extern crate maplit;
#[macro_use]
extern crate derive_builder;
#[macro_use]
extern crate diesel;
#[macro_use]
extern crate diesel_migrations;
// #[macro_use]
extern crate failure;
#[macro_use]
extern crate failure_derive;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate log;
extern crate ammonia;
extern crate chrono;
extern crate futures;
extern crate hyper;
extern crate hyper_tls;
extern crate native_tls;
extern crate num_cpus;
extern crate rayon;
extern crate rayon_futures;
extern crate rfc822_sanitizer;
extern crate rss;
extern crate tokio_core;
extern crate url;
extern crate xdg;
extern crate xml;
pub mod database;
#[allow(missing_docs)]
pub mod dbqueries;
#[allow(missing_docs)]
pub mod errors;
mod feed;
pub(crate) mod models;
pub mod opml;
mod parser;
pub mod pipeline;
mod schema;
pub mod utils;
pub use feed::{Feed, FeedBuilder};
pub use models::Save;
pub use models::{Episode, EpisodeWidgetModel, Show, ShowCoverModel, Source};
// Set the user agent, See #53 for more
// Keep this in sync with Tor-browser releases
/// The user-agent to be used for all the requests.
/// It originates from the Tor-browser UA.
pub const USER_AGENT: &str = "Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0";
/// [XDG Base Direcotory](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html) Paths.
#[allow(missing_debug_implementations)]
pub mod xdg_dirs {
use std::path::PathBuf;
use xdg;
lazy_static!{
pub(crate) static ref PODCASTS_XDG: xdg::BaseDirectories = {
xdg::BaseDirectories::with_prefix("gnome-podcasts").unwrap()
};
/// XDG_DATA Directory `Pathbuf`.
pub static ref PODCASTS_DATA: PathBuf = {
PODCASTS_XDG.create_data_directory(PODCASTS_XDG.get_data_home()).unwrap()
};
/// XDG_CONFIG Directory `Pathbuf`.
pub static ref PODCASTS_CONFIG: PathBuf = {
PODCASTS_XDG.create_config_directory(PODCASTS_XDG.get_config_home()).unwrap()
};
/// XDG_CACHE Directory `Pathbuf`.
pub static ref PODCASTS_CACHE: PathBuf = {
PODCASTS_XDG.create_cache_directory(PODCASTS_XDG.get_cache_home()).unwrap()
};
/// GNOME Podcasts Download Direcotry `PathBuf`.
pub static ref DL_DIR: PathBuf = {
PODCASTS_XDG.create_data_directory("Downloads").unwrap()
};
}
}
+466
View File
@@ -0,0 +1,466 @@
use chrono::prelude::*;
use diesel;
use diesel::prelude::*;
use diesel::SaveChangesDsl;
use database::connection;
use errors::DataError;
use models::{Save, Show};
use schema::episodes;
#[derive(Queryable, Identifiable, AsChangeset, Associations, PartialEq)]
#[table_name = "episodes"]
#[changeset_options(treat_none_as_null = "true")]
#[primary_key(title, show_id)]
#[belongs_to(Show, foreign_key = "show_id")]
#[derive(Debug, Clone)]
/// Diesel Model of the episode table.
pub struct Episode {
rowid: i32,
title: String,
uri: Option<String>,
local_uri: Option<String>,
description: Option<String>,
epoch: i32,
length: Option<i32>,
duration: Option<i32>,
guid: Option<String>,
played: Option<i32>,
show_id: i32,
}
impl Save<Episode> for Episode {
type Error = DataError;
/// Helper method to easily save/"sync" current state of self to the
/// Database.
fn save(&self) -> Result<Episode, Self::Error> {
let db = connection();
let tempdb = db.get()?;
self.save_changes::<Episode>(&*tempdb).map_err(From::from)
}
}
impl Episode {
/// Get the value of the sqlite's `ROW_ID`
pub fn rowid(&self) -> i32 {
self.rowid
}
/// Get the value of the `title` field.
pub fn title(&self) -> &str {
&self.title
}
/// Set the `title`.
pub fn set_title(&mut self, value: &str) {
self.title = value.to_string();
}
/// Get the value of the `uri`.
///
/// Represents the url(usually) that the media file will be located at.
pub fn uri(&self) -> Option<&str> {
self.uri.as_ref().map(|s| s.as_str())
}
/// Set the `uri`.
pub fn set_uri(&mut self, value: Option<&str>) {
self.uri = value.map(|x| x.to_string());
}
/// Get the value of the `local_uri`.
///
/// Represents the local uri,usually filesystem path,
/// that the media file will be located at.
pub fn local_uri(&self) -> Option<&str> {
self.local_uri.as_ref().map(|s| s.as_str())
}
/// Set the `local_uri`.
pub fn set_local_uri(&mut self, value: Option<&str>) {
self.local_uri = value.map(|x| x.to_string());
}
/// Get the `description`.
pub fn description(&self) -> Option<&str> {
self.description.as_ref().map(|s| s.as_str())
}
/// Set the `description`.
pub fn set_description(&mut self, value: Option<&str>) {
self.description = value.map(|x| x.to_string());
}
/// Get the Episode's `guid`.
pub fn guid(&self) -> Option<&str> {
self.guid.as_ref().map(|s| s.as_str())
}
/// Set the `guid`.
pub fn set_guid(&mut self, value: Option<&str>) {
self.guid = value.map(|x| x.to_string());
}
/// Get the `epoch` value.
///
/// Retrieved from the rss Item publish date.
/// Value is set to Utc whenever possible.
pub fn epoch(&self) -> i32 {
self.epoch
}
/// Set the `epoch`.
pub fn set_epoch(&mut self, value: i32) {
self.epoch = value;
}
/// Get the `length`.
///
/// The number represents the size of the file in bytes.
pub fn length(&self) -> Option<i32> {
self.length
}
/// Set the `length`.
pub fn set_length(&mut self, value: Option<i32>) {
self.length = value;
}
/// Get the `duration` value.
///
/// The number represents the duration of the item/episode in seconds.
pub fn duration(&self) -> Option<i32> {
self.duration
}
/// Set the `duration`.
pub fn set_duration(&mut self, value: Option<i32>) {
self.duration = value;
}
/// Epoch representation of the last time the episode was played.
///
/// None/Null for unplayed.
pub fn played(&self) -> Option<i32> {
self.played
}
/// Set the `played` value.
pub fn set_played(&mut self, value: Option<i32>) {
self.played = value;
}
/// `Show` table foreign key.
pub fn show_id(&self) -> i32 {
self.show_id
}
/// Sets the `played` value with the current `epoch` timestap and save it.
pub fn set_played_now(&mut self) -> Result<(), DataError> {
let epoch = Utc::now().timestamp() as i32;
self.set_played(Some(epoch));
self.save().map(|_| ())
}
}
#[derive(Queryable, AsChangeset, PartialEq)]
#[table_name = "episodes"]
#[changeset_options(treat_none_as_null = "true")]
#[primary_key(title, show_id)]
#[derive(Debug, Clone)]
/// Diesel Model to be used for constructing `EpisodeWidgets`.
pub struct EpisodeWidgetModel {
rowid: i32,
title: String,
uri: Option<String>,
local_uri: Option<String>,
epoch: i32,
length: Option<i32>,
duration: Option<i32>,
played: Option<i32>,
show_id: i32,
}
impl From<Episode> for EpisodeWidgetModel {
fn from(e: Episode) -> EpisodeWidgetModel {
EpisodeWidgetModel {
rowid: e.rowid,
title: e.title,
uri: e.uri,
local_uri: e.local_uri,
epoch: e.epoch,
length: e.length,
duration: e.duration,
played: e.played,
show_id: e.show_id,
}
}
}
impl Save<usize> for EpisodeWidgetModel {
type Error = DataError;
/// Helper method to easily save/"sync" current state of self to the
/// Database.
fn save(&self) -> Result<usize, Self::Error> {
use schema::episodes::dsl::*;
let db = connection();
let tempdb = db.get()?;
diesel::update(episodes.filter(rowid.eq(self.rowid)))
.set(self)
.execute(&*tempdb)
.map_err(From::from)
}
}
impl EpisodeWidgetModel {
/// Get the value of the sqlite's `ROW_ID`
pub fn rowid(&self) -> i32 {
self.rowid
}
/// Get the value of the `title` field.
pub fn title(&self) -> &str {
&self.title
}
/// Get the value of the `uri`.
///
/// Represents the url(usually) that the media file will be located at.
pub fn uri(&self) -> Option<&str> {
self.uri.as_ref().map(|s| s.as_str())
}
/// Get the value of the `local_uri`.
///
/// Represents the local uri,usually filesystem path,
/// that the media file will be located at.
pub fn local_uri(&self) -> Option<&str> {
self.local_uri.as_ref().map(|s| s.as_str())
}
/// Set the `local_uri`.
pub fn set_local_uri(&mut self, value: Option<&str>) {
self.local_uri = value.map(|x| x.to_string());
}
/// Get the `epoch` value.
///
/// Retrieved from the rss Item publish date.
/// Value is set to Utc whenever possible.
pub fn epoch(&self) -> i32 {
self.epoch
}
/// Get the `length`.
///
/// The number represents the size of the file in bytes.
pub fn length(&self) -> Option<i32> {
self.length
}
/// Set the `length`.
pub fn set_length(&mut self, value: Option<i32>) {
self.length = value;
}
/// Get the `duration` value.
///
/// The number represents the duration of the item/episode in seconds.
pub fn duration(&self) -> Option<i32> {
self.duration
}
/// Set the `duration`.
pub fn set_duration(&mut self, value: Option<i32>) {
self.duration = value;
}
/// Epoch representation of the last time the episode was played.
///
/// None/Null for unplayed.
pub fn played(&self) -> Option<i32> {
self.played
}
/// Set the `played` value.
pub fn set_played(&mut self, value: Option<i32>) {
self.played = value;
}
/// `Show` table foreign key.
pub fn show_id(&self) -> i32 {
self.show_id
}
/// Sets the `played` value with the current `epoch` timestap and save it.
pub fn set_played_now(&mut self) -> Result<(), DataError> {
let epoch = Utc::now().timestamp() as i32;
self.set_played(Some(epoch));
self.save().map(|_| ())
}
}
#[derive(Queryable, AsChangeset, PartialEq)]
#[table_name = "episodes"]
#[changeset_options(treat_none_as_null = "true")]
#[primary_key(title, show_id)]
#[derive(Debug, Clone)]
/// Diesel Model to be used internal with the `utils::checkup` function.
pub struct EpisodeCleanerModel {
rowid: i32,
local_uri: Option<String>,
played: Option<i32>,
}
impl Save<usize> for EpisodeCleanerModel {
type Error = DataError;
/// Helper method to easily save/"sync" current state of self to the
/// Database.
fn save(&self) -> Result<usize, Self::Error> {
use schema::episodes::dsl::*;
let db = connection();
let tempdb = db.get()?;
diesel::update(episodes.filter(rowid.eq(self.rowid)))
.set(self)
.execute(&*tempdb)
.map_err(From::from)
}
}
impl From<Episode> for EpisodeCleanerModel {
fn from(e: Episode) -> EpisodeCleanerModel {
EpisodeCleanerModel {
rowid: e.rowid(),
local_uri: e.local_uri,
played: e.played,
}
}
}
impl EpisodeCleanerModel {
/// Get the value of the sqlite's `ROW_ID`
pub fn rowid(&self) -> i32 {
self.rowid
}
/// Get the value of the `local_uri`.
///
/// Represents the local uri,usually filesystem path,
/// that the media file will be located at.
pub fn local_uri(&self) -> Option<&str> {
self.local_uri.as_ref().map(|s| s.as_str())
}
/// Set the `local_uri`.
pub fn set_local_uri(&mut self, value: Option<&str>) {
self.local_uri = value.map(|x| x.to_string());
}
/// Epoch representation of the last time the episode was played.
///
/// None/Null for unplayed.
pub fn played(&self) -> Option<i32> {
self.played
}
/// Set the `played` value.
pub fn set_played(&mut self, value: Option<i32>) {
self.played = value;
}
}
#[derive(Queryable, AsChangeset, PartialEq)]
#[table_name = "episodes"]
#[changeset_options(treat_none_as_null = "true")]
#[primary_key(title, show_id)]
#[derive(Debug, Clone)]
/// Diesel Model to be used for FIXME.
pub struct EpisodeMinimal {
rowid: i32,
title: String,
uri: Option<String>,
epoch: i32,
length: Option<i32>,
duration: Option<i32>,
guid: Option<String>,
show_id: i32,
}
impl From<Episode> for EpisodeMinimal {
fn from(e: Episode) -> Self {
EpisodeMinimal {
rowid: e.rowid,
title: e.title,
uri: e.uri,
length: e.length,
guid: e.guid,
epoch: e.epoch,
duration: e.duration,
show_id: e.show_id,
}
}
}
impl EpisodeMinimal {
/// Get the value of the sqlite's `ROW_ID`
pub fn rowid(&self) -> i32 {
self.rowid
}
/// Get the value of the `title` field.
pub fn title(&self) -> &str {
&self.title
}
/// Get the value of the `uri`.
///
/// Represents the url(usually) that the media file will be located at.
pub fn uri(&self) -> Option<&str> {
self.uri.as_ref().map(|s| s.as_str())
}
/// Get the Episode's `guid`.
pub fn guid(&self) -> Option<&str> {
self.guid.as_ref().map(|s| s.as_str())
}
/// Get the `epoch` value.
///
/// Retrieved from the rss Item publish date.
/// Value is set to Utc whenever possible.
pub fn epoch(&self) -> i32 {
self.epoch
}
/// Get the `length`.
///
/// The number represents the size of the file in bytes.
pub fn length(&self) -> Option<i32> {
self.length
}
/// Set the `length`.
pub fn set_length(&mut self, value: Option<i32>) {
self.length = value;
}
/// Get the `duration` value.
///
/// The number represents the duration of the item/episode in seconds.
pub fn duration(&self) -> Option<i32> {
self.duration
}
/// `Show` table foreign key.
pub fn show_id(&self) -> i32 {
self.show_id
}
}
+59
View File
@@ -0,0 +1,59 @@
mod new_episode;
mod new_show;
mod new_source;
mod episode;
mod show;
mod source;
// use futures::prelude::*;
// use futures::future::*;
pub(crate) use self::episode::EpisodeCleanerModel;
pub(crate) use self::new_episode::{NewEpisode, NewEpisodeMinimal};
pub(crate) use self::new_show::NewShow;
pub(crate) use self::new_source::NewSource;
#[cfg(test)]
pub(crate) use self::new_episode::NewEpisodeBuilder;
#[cfg(test)]
pub(crate) use self::new_show::NewShowBuilder;
pub use self::episode::{Episode, EpisodeMinimal, EpisodeWidgetModel};
pub use self::show::{Show, ShowCoverModel};
pub use self::source::Source;
#[derive(Debug, Clone, PartialEq)]
pub enum IndexState<T> {
Index(T),
Update((T, i32)),
NotChanged,
}
pub trait Insert<T> {
type Error;
fn insert(&self) -> Result<T, Self::Error>;
}
pub trait Update<T> {
type Error;
fn update(&self, i32) -> Result<T, Self::Error>;
}
// This might need to change in the future
pub trait Index<T>: Insert<T> + Update<T> {
type Error;
fn index(&self) -> Result<T, <Self as Index<T>>::Error>;
}
/// FIXME: DOCS
pub trait Save<T> {
/// The Error type to be returned.
type Error;
/// Helper method to easily save/"sync" current state of a diesel model to
/// the Database.
fn save(&self) -> Result<T, Self::Error>;
}
+659
View File
@@ -0,0 +1,659 @@
use ammonia;
use diesel;
use diesel::prelude::*;
use rfc822_sanitizer::parse_from_rfc2822_with_fallback as parse_rfc822;
use rss;
use database::connection;
use dbqueries;
use errors::DataError;
use models::{Episode, EpisodeMinimal, Index, Insert, Update};
use parser;
use schema::episodes;
use utils::url_cleaner;
#[derive(Insertable, AsChangeset)]
#[table_name = "episodes"]
#[derive(Debug, Clone, Default, Builder, PartialEq)]
#[builder(default)]
#[builder(derive(Debug))]
#[builder(setter(into))]
pub(crate) struct NewEpisode {
title: String,
uri: Option<String>,
description: Option<String>,
length: Option<i32>,
duration: Option<i32>,
guid: Option<String>,
epoch: i32,
show_id: i32,
}
impl From<NewEpisodeMinimal> for NewEpisode {
fn from(e: NewEpisodeMinimal) -> Self {
NewEpisodeBuilder::default()
.title(e.title)
.uri(e.uri)
.duration(e.duration)
.epoch(e.epoch)
.show_id(e.show_id)
.guid(e.guid)
.build()
.unwrap()
}
}
impl Insert<()> for NewEpisode {
type Error = DataError;
fn insert(&self) -> Result<(), DataError> {
use schema::episodes::dsl::*;
let db = connection();
let con = db.get()?;
info!("Inserting {:?}", self.title);
diesel::insert_into(episodes)
.values(self)
.execute(&con)
.map_err(From::from)
.map(|_| ())
}
}
impl Update<()> for NewEpisode {
type Error = DataError;
fn update(&self, episode_id: i32) -> Result<(), DataError> {
use schema::episodes::dsl::*;
let db = connection();
let con = db.get()?;
info!("Updating {:?}", self.title);
diesel::update(episodes.filter(rowid.eq(episode_id)))
.set(self)
.execute(&con)
.map_err(From::from)
.map(|_| ())
}
}
impl Index<()> for NewEpisode {
type Error = DataError;
// Does not update the episode description if it's the only thing that has
// changed.
fn index(&self) -> Result<(), DataError> {
let exists = dbqueries::episode_exists(self.title(), self.show_id())?;
if exists {
let other = dbqueries::get_episode_minimal_from_pk(self.title(), self.show_id())?;
if self != &other {
self.update(other.rowid())
} else {
Ok(())
}
} else {
self.insert()
}
}
}
impl PartialEq<EpisodeMinimal> for NewEpisode {
fn eq(&self, other: &EpisodeMinimal) -> bool {
(self.title() == other.title())
&& (self.uri() == other.uri())
&& (self.duration() == other.duration())
&& (self.epoch() == other.epoch())
&& (self.guid() == other.guid())
&& (self.show_id() == other.show_id())
}
}
impl PartialEq<Episode> for NewEpisode {
fn eq(&self, other: &Episode) -> bool {
(self.title() == other.title())
&& (self.uri() == other.uri())
&& (self.duration() == other.duration())
&& (self.epoch() == other.epoch())
&& (self.guid() == other.guid())
&& (self.show_id() == other.show_id())
&& (self.description() == other.description())
&& (self.length() == other.length())
}
}
impl NewEpisode {
/// Parses an `rss::Item` into a `NewEpisode` Struct.
#[allow(dead_code)]
pub(crate) fn new(item: &rss::Item, show_id: i32) -> Result<Self, DataError> {
NewEpisodeMinimal::new(item, show_id).map(|ep| ep.into_new_episode(item))
}
#[allow(dead_code)]
pub(crate) fn to_episode(&self) -> Result<Episode, DataError> {
self.index()?;
dbqueries::get_episode_from_pk(&self.title, self.show_id).map_err(From::from)
}
}
// Ignore the following getters. They are used in unit tests mainly.
impl NewEpisode {
pub(crate) fn title(&self) -> &str {
self.title.as_ref()
}
pub(crate) fn uri(&self) -> Option<&str> {
self.uri.as_ref().map(|s| s.as_str())
}
pub(crate) fn description(&self) -> Option<&str> {
self.description.as_ref().map(|s| s.as_str())
}
pub(crate) fn guid(&self) -> Option<&str> {
self.guid.as_ref().map(|s| s.as_str())
}
pub(crate) fn epoch(&self) -> i32 {
self.epoch
}
pub(crate) fn duration(&self) -> Option<i32> {
self.duration
}
pub(crate) fn length(&self) -> Option<i32> {
self.length
}
pub(crate) fn show_id(&self) -> i32 {
self.show_id
}
}
#[derive(Insertable, AsChangeset)]
#[table_name = "episodes"]
#[derive(Debug, Clone, Builder, PartialEq)]
#[builder(derive(Debug))]
#[builder(setter(into))]
pub(crate) struct NewEpisodeMinimal {
title: String,
uri: Option<String>,
length: Option<i32>,
duration: Option<i32>,
epoch: i32,
guid: Option<String>,
show_id: i32,
}
impl PartialEq<EpisodeMinimal> for NewEpisodeMinimal {
fn eq(&self, other: &EpisodeMinimal) -> bool {
(self.title() == other.title())
&& (self.uri() == other.uri())
&& (self.duration() == other.duration())
&& (self.epoch() == other.epoch())
&& (self.guid() == other.guid())
&& (self.show_id() == other.show_id())
}
}
impl NewEpisodeMinimal {
pub(crate) fn new(item: &rss::Item, parent_id: i32) -> Result<Self, DataError> {
if item.title().is_none() {
let err = DataError::ParseEpisodeError {
reason: "No title specified for this Episode.".into(),
parent_id,
};
return Err(err);
}
let title = item.title().unwrap().trim().to_owned();
let guid = item.guid().map(|s| s.value().trim().to_owned());
// Get the mime type, the `http` url and the length from the enclosure
// http://www.rssboard.org/rss-specification#ltenclosuregtSubelementOfLtitemgt
let enc = item.enclosure();
// Get the url
let uri = enc.map(|s| url_cleaner(s.url().trim()))
// Fallback to Rss.Item.link if enclosure is None.
.or_else(|| item.link().map(|s| url_cleaner(s.trim())));
// Get the size of the content, it should be in bytes
let length = enc.and_then(|x| x.length().parse().ok());
// If url is still None return an Error as this behaviour is not
// compliant with the RSS Spec.
if uri.is_none() {
let err = DataError::ParseEpisodeError {
reason: "No url specified for the item.".into(),
parent_id,
};
return Err(err);
};
// Default to rfc2822 represantation of epoch 0.
let date = parse_rfc822(item.pub_date().unwrap_or("Thu, 1 Jan 1970 00:00:00 +0000"));
// Should treat information from the rss feeds as invalid by default.
// Case: "Thu, 05 Aug 2016 06:00:00 -0400" <-- Actually that was friday.
let epoch = date.map(|x| x.timestamp() as i32).unwrap_or(0);
let duration = parser::parse_itunes_duration(item.itunes_ext());
NewEpisodeMinimalBuilder::default()
.title(title)
.uri(uri)
.length(length)
.duration(duration)
.epoch(epoch)
.guid(guid)
.show_id(parent_id)
.build()
.map_err(From::from)
}
// TODO: TryInto is stabilizing in rustc v1.26!
// ^ Jokes on you past self!
pub(crate) fn into_new_episode(self, item: &rss::Item) -> NewEpisode {
let description = item.description().and_then(|s| {
let sanitized_html = ammonia::Builder::new()
// Remove `rel` attributes from `<a>` tags
.link_rel(None)
.clean(s.trim())
.to_string();
Some(sanitized_html)
});
NewEpisodeBuilder::default()
.title(self.title)
.uri(self.uri)
.duration(self.duration)
.epoch(self.epoch)
.show_id(self.show_id)
.guid(self.guid)
.length(self.length)
.description(description)
.build()
.unwrap()
}
}
// Ignore the following getters. They are used in unit tests mainly.
impl NewEpisodeMinimal {
pub(crate) fn title(&self) -> &str {
self.title.as_ref()
}
pub(crate) fn uri(&self) -> Option<&str> {
self.uri.as_ref().map(|s| s.as_str())
}
pub(crate) fn guid(&self) -> Option<&str> {
self.guid.as_ref().map(|s| s.as_str())
}
pub(crate) fn duration(&self) -> Option<i32> {
self.duration
}
pub(crate) fn epoch(&self) -> i32 {
self.epoch
}
pub(crate) fn show_id(&self) -> i32 {
self.show_id
}
}
#[cfg(test)]
mod tests {
use database::truncate_db;
use dbqueries;
use models::new_episode::{NewEpisodeMinimal, NewEpisodeMinimalBuilder};
use models::*;
use rss::Channel;
use std::fs::File;
use std::io::BufReader;
// TODO: Add tests for other feeds too.
// Especially if you find an *intresting* generated feed.
// Known prebuilt expected objects.
lazy_static! {
static ref EXPECTED_MINIMAL_INTERCEPTED_1: NewEpisodeMinimal = {
NewEpisodeMinimalBuilder::default()
.title("The Super Bowl of Racism")
.uri(Some(String::from(
"http://traffic.megaphone.fm/PPY6458293736.mp3",
)))
.guid(Some(String::from("7df4070a-9832-11e7-adac-cb37b05d5e24")))
.epoch(1505296800)
.length(Some(66738886))
.duration(Some(4171))
.show_id(42)
.build()
.unwrap()
};
static ref EXPECTED_MINIMAL_INTERCEPTED_2: NewEpisodeMinimal = {
NewEpisodeMinimalBuilder::default()
.title("Atlas Golfed — U.S.-Backed Think Tanks Target Latin America")
.uri(Some(String::from(
"http://traffic.megaphone.fm/FL5331443769.mp3",
)))
.guid(Some(String::from("7c207a24-e33f-11e6-9438-eb45dcf36a1d")))
.epoch(1502272800)
.length(Some(67527575))
.duration(Some(4415))
.show_id(42)
.build()
.unwrap()
};
static ref EXPECTED_INTERCEPTED_1: NewEpisode = {
let descr = "NSA whistleblower Edward Snowden discusses the massive Equifax data \
breach and allegations of Russian interference in the US election. \
Commentator Shaun King explains his call for a boycott of the NFL and \
talks about his campaign to bring violent neo-Nazis to justice. Rapper \
Open Mike Eagle performs.";
NewEpisodeBuilder::default()
.title("The Super Bowl of Racism")
.uri(Some(String::from(
"http://traffic.megaphone.fm/PPY6458293736.mp3",
)))
.description(Some(String::from(descr)))
.guid(Some(String::from("7df4070a-9832-11e7-adac-cb37b05d5e24")))
.length(Some(66738886))
.epoch(1505296800)
.duration(Some(4171))
.show_id(42)
.build()
.unwrap()
};
static ref EXPECTED_INTERCEPTED_2: NewEpisode = {
let descr = "This week on Intercepted: Jeremy gives an update on the aftermath of \
Blackwaters 2007 massacre of Iraqi civilians. Intercept reporter Lee \
Fang lays out how a network of libertarian think tanks called the Atlas \
Network is insidiously shaping political infrastructure in Latin \
America. We speak with attorney and former Hugo Chavez adviser Eva \
Golinger about the Venezuela\'s political turmoil.And we hear Claudia \
Lizardo of the Caracas-based band, La Pequeña Revancha, talk about her \
music and hopes for Venezuela.";
NewEpisodeBuilder::default()
.title("Atlas Golfed — U.S.-Backed Think Tanks Target Latin America")
.uri(Some(String::from(
"http://traffic.megaphone.fm/FL5331443769.mp3",
)))
.description(Some(String::from(descr)))
.guid(Some(String::from("7c207a24-e33f-11e6-9438-eb45dcf36a1d")))
.length(Some(67527575))
.epoch(1502272800)
.duration(Some(4415))
.show_id(42)
.build()
.unwrap()
};
static ref UPDATED_DURATION_INTERCEPTED_1: NewEpisode = {
NewEpisodeBuilder::default()
.title("The Super Bowl of Racism")
.uri(Some(String::from(
"http://traffic.megaphone.fm/PPY6458293736.mp3",
)))
.description(Some(String::from("New description")))
.guid(Some(String::from("7df4070a-9832-11e7-adac-cb37b05d5e24")))
.length(Some(66738886))
.epoch(1505296800)
.duration(Some(424242))
.show_id(42)
.build()
.unwrap()
};
static ref EXPECTED_MINIMAL_LUP_1: NewEpisodeMinimal = {
NewEpisodeMinimalBuilder::default()
.title("Hacking Devices with Kali Linux | LUP 214")
.uri(Some(String::from(
"http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/lup-0214.mp3",
)))
.guid(Some(String::from("78A682B4-73E8-47B8-88C0-1BE62DD4EF9D")))
.length(Some(46479789))
.epoch(1505280282)
.duration(Some(5733))
.show_id(42)
.build()
.unwrap()
};
static ref EXPECTED_MINIMAL_LUP_2: NewEpisodeMinimal = {
NewEpisodeMinimalBuilder::default()
.title("Gnome Does it Again | LUP 213")
.uri(Some(String::from(
"http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/lup-0213.mp3",
)))
.guid(Some(String::from("1CE57548-B36C-4F14-832A-5D5E0A24E35B")))
.epoch(1504670247)
.length(Some(36544272))
.duration(Some(4491))
.show_id(42)
.build()
.unwrap()
};
static ref EXPECTED_LUP_1: NewEpisode = {
let descr = "Audit your network with a couple of easy commands on Kali Linux. Chris \
decides to blow off a little steam by attacking his IoT devices, Wes has \
the scope on Equifax blaming open source &amp; the Beard just saved the \
show. Its a really packed episode!";
NewEpisodeBuilder::default()
.title("Hacking Devices with Kali Linux | LUP 214")
.uri(Some(String::from(
"http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/lup-0214.mp3",
)))
.description(Some(String::from(descr)))
.guid(Some(String::from("78A682B4-73E8-47B8-88C0-1BE62DD4EF9D")))
.length(Some(46479789))
.epoch(1505280282)
.duration(Some(5733))
.show_id(42)
.build()
.unwrap()
};
static ref EXPECTED_LUP_2: NewEpisode = {
let descr =
"<p>The Gnome project is about to solve one of our audience's biggest Waylands \
concerns. But as the project takes on a new level of relevance, decisions for \
the next version of Gnome have us worried about the future.</p>\n\n<p>Plus we \
chat with Wimpy about the Ubuntu Rally in NYC, Microsofts sneaky move to turn \
Windows 10 into the “ULTIMATE LINUX RUNTIME”, community news &amp; more!</p>";
NewEpisodeBuilder::default()
.title("Gnome Does it Again | LUP 213")
.uri(Some(String::from(
"http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/lup-0213.mp3",
)))
.description(Some(String::from(descr)))
.guid(Some(String::from("1CE57548-B36C-4F14-832A-5D5E0A24E35B")))
.length(Some(36544272))
.epoch(1504670247)
.duration(Some(4491))
.show_id(42)
.build()
.unwrap()
};
}
#[test]
fn test_new_episode_minimal_intercepted() {
let file = File::open("tests/feeds/2018-01-20-Intercepted.xml").unwrap();
let channel = Channel::read_from(BufReader::new(file)).unwrap();
let episode = channel.items().iter().nth(14).unwrap();
let ep = NewEpisodeMinimal::new(&episode, 42).unwrap();
assert_eq!(ep, *EXPECTED_MINIMAL_INTERCEPTED_1);
let episode = channel.items().iter().nth(15).unwrap();
let ep = NewEpisodeMinimal::new(&episode, 42).unwrap();
assert_eq!(ep, *EXPECTED_MINIMAL_INTERCEPTED_2);
}
#[test]
fn test_new_episode_intercepted() {
let file = File::open("tests/feeds/2018-01-20-Intercepted.xml").unwrap();
let channel = Channel::read_from(BufReader::new(file)).unwrap();
let episode = channel.items().iter().nth(14).unwrap();
let ep = NewEpisode::new(&episode, 42).unwrap();
assert_eq!(ep, *EXPECTED_INTERCEPTED_1);
let episode = channel.items().iter().nth(15).unwrap();
let ep = NewEpisode::new(&episode, 42).unwrap();
assert_eq!(ep, *EXPECTED_INTERCEPTED_2);
}
#[test]
fn test_new_episode_minimal_lup() {
let file = File::open("tests/feeds/2018-01-20-LinuxUnplugged.xml").unwrap();
let channel = Channel::read_from(BufReader::new(file)).unwrap();
let episode = channel.items().iter().nth(18).unwrap();
let ep = NewEpisodeMinimal::new(&episode, 42).unwrap();
assert_eq!(ep, *EXPECTED_MINIMAL_LUP_1);
let episode = channel.items().iter().nth(19).unwrap();
let ep = NewEpisodeMinimal::new(&episode, 42).unwrap();
assert_eq!(ep, *EXPECTED_MINIMAL_LUP_2);
}
#[test]
fn test_new_episode_lup() {
let file = File::open("tests/feeds/2018-01-20-LinuxUnplugged.xml").unwrap();
let channel = Channel::read_from(BufReader::new(file)).unwrap();
let episode = channel.items().iter().nth(18).unwrap();
let ep = NewEpisode::new(&episode, 42).unwrap();
assert_eq!(ep, *EXPECTED_LUP_1);
let episode = channel.items().iter().nth(19).unwrap();
let ep = NewEpisode::new(&episode, 42).unwrap();
assert_eq!(ep, *EXPECTED_LUP_2);
}
#[test]
fn test_minimal_into_new_episode() {
truncate_db().unwrap();
let file = File::open("tests/feeds/2018-01-20-Intercepted.xml").unwrap();
let channel = Channel::read_from(BufReader::new(file)).unwrap();
let item = channel.items().iter().nth(14).unwrap();
let ep = EXPECTED_MINIMAL_INTERCEPTED_1
.clone()
.into_new_episode(&item);
println!(
"EPISODE: {:#?}\nEXPECTED: {:#?}",
ep, *EXPECTED_INTERCEPTED_1
);
assert_eq!(ep, *EXPECTED_INTERCEPTED_1);
let item = channel.items().iter().nth(15).unwrap();
let ep = EXPECTED_MINIMAL_INTERCEPTED_2
.clone()
.into_new_episode(&item);
assert_eq!(ep, *EXPECTED_INTERCEPTED_2);
}
#[test]
fn test_new_episode_insert() {
truncate_db().unwrap();
let file = File::open("tests/feeds/2018-01-20-Intercepted.xml").unwrap();
let channel = Channel::read_from(BufReader::new(file)).unwrap();
let episode = channel.items().iter().nth(14).unwrap();
let new_ep = NewEpisode::new(&episode, 42).unwrap();
new_ep.insert().unwrap();
let ep = dbqueries::get_episode_from_pk(new_ep.title(), new_ep.show_id()).unwrap();
assert_eq!(new_ep, ep);
assert_eq!(&new_ep, &*EXPECTED_INTERCEPTED_1);
assert_eq!(&*EXPECTED_INTERCEPTED_1, &ep);
let episode = channel.items().iter().nth(15).unwrap();
let new_ep = NewEpisode::new(&episode, 42).unwrap();
new_ep.insert().unwrap();
let ep = dbqueries::get_episode_from_pk(new_ep.title(), new_ep.show_id()).unwrap();
assert_eq!(new_ep, ep);
assert_eq!(&new_ep, &*EXPECTED_INTERCEPTED_2);
assert_eq!(&*EXPECTED_INTERCEPTED_2, &ep);
}
#[test]
fn test_new_episode_update() {
truncate_db().unwrap();
let old = EXPECTED_INTERCEPTED_1.clone().to_episode().unwrap();
let updated = &*UPDATED_DURATION_INTERCEPTED_1;
updated.update(old.rowid()).unwrap();
let new = dbqueries::get_episode_from_pk(old.title(), old.show_id()).unwrap();
// Assert that updating does not change the rowid and show_id
assert_ne!(old, new);
assert_eq!(old.rowid(), new.rowid());
assert_eq!(old.show_id(), new.show_id());
assert_eq!(updated, &new);
assert_ne!(updated, &old);
}
#[test]
fn test_new_episode_index() {
truncate_db().unwrap();
let expected = &*EXPECTED_INTERCEPTED_1;
// First insert
assert!(expected.index().is_ok());
// Second identical, This should take the early return path
assert!(expected.index().is_ok());
// Get the episode
let old = dbqueries::get_episode_from_pk(expected.title(), expected.show_id()).unwrap();
// Assert that NewPodcast is equal to the Indexed one
assert_eq!(*expected, old);
let updated = &*UPDATED_DURATION_INTERCEPTED_1;
// Update the podcast
assert!(updated.index().is_ok());
// Get the new Podcast
let new = dbqueries::get_episode_from_pk(expected.title(), expected.show_id()).unwrap();
// Assert it's diff from the old one.
assert_ne!(new, old);
assert_eq!(*updated, new);
assert_eq!(new.rowid(), old.rowid());
assert_eq!(new.show_id(), old.show_id());
}
#[test]
fn test_new_episode_to_episode() {
let expected = &*EXPECTED_INTERCEPTED_1;
// Assert insert() produces the same result that you would get with to_podcast()
truncate_db().unwrap();
expected.insert().unwrap();
let old = dbqueries::get_episode_from_pk(expected.title(), expected.show_id()).unwrap();
let ep = expected.to_episode().unwrap();
assert_eq!(old, ep);
// Same as above, diff order
truncate_db().unwrap();
let ep = expected.to_episode().unwrap();
// This should error as a unique constrain violation
assert!(expected.insert().is_err());
let old = dbqueries::get_episode_from_pk(expected.title(), expected.show_id()).unwrap();
assert_eq!(old, ep);
}
}
+423
View File
@@ -0,0 +1,423 @@
use ammonia;
use diesel;
use diesel::prelude::*;
use rss;
use errors::DataError;
use models::Show;
use models::{Index, Insert, Update};
use schema::shows;
use database::connection;
use dbqueries;
use utils::url_cleaner;
#[derive(Insertable, AsChangeset)]
#[table_name = "shows"]
#[derive(Debug, Clone, Default, Builder, PartialEq)]
#[builder(default)]
#[builder(derive(Debug))]
#[builder(setter(into))]
pub(crate) struct NewShow {
title: String,
link: String,
description: String,
image_uri: Option<String>,
source_id: i32,
}
impl Insert<()> for NewShow {
type Error = DataError;
fn insert(&self) -> Result<(), Self::Error> {
use schema::shows::dsl::*;
let db = connection();
let con = db.get()?;
diesel::insert_into(shows)
.values(self)
.execute(&con)
.map(|_| ())
.map_err(From::from)
}
}
impl Update<()> for NewShow {
type Error = DataError;
fn update(&self, show_id: i32) -> Result<(), Self::Error> {
use schema::shows::dsl::*;
let db = connection();
let con = db.get()?;
info!("Updating {}", self.title);
diesel::update(shows.filter(id.eq(show_id)))
.set(self)
.execute(&con)
.map(|_| ())
.map_err(From::from)
}
}
// TODO: Maybe return an Enum<Action(Resut)> Instead.
// It would make unti testing better too.
impl Index<()> for NewShow {
type Error = DataError;
fn index(&self) -> Result<(), DataError> {
let exists = dbqueries::podcast_exists(self.source_id)?;
if exists {
let other = dbqueries::get_podcast_from_source_id(self.source_id)?;
if self != &other {
self.update(other.id())
} else {
Ok(())
}
} else {
self.insert()
}
}
}
impl PartialEq<Show> for NewShow {
fn eq(&self, other: &Show) -> bool {
(self.link() == other.link())
&& (self.title() == other.title())
&& (self.image_uri() == other.image_uri())
&& (self.description() == other.description())
&& (self.source_id() == other.source_id())
}
}
impl NewShow {
/// Parses a `rss::Channel` into a `NewShow` Struct.
pub(crate) fn new(chan: &rss::Channel, source_id: i32) -> NewShow {
let title = chan.title().trim();
let link = url_cleaner(chan.link().trim());
let description = ammonia::Builder::new()
// Remove `rel` attributes from `<a>` tags
.link_rel(None)
.clean(chan.description().trim())
.to_string();
// Try to get the itunes img first
let itunes_img = chan
.itunes_ext()
.and_then(|s| s.image().map(|url| url.trim()))
.map(|s| s.to_owned());
// If itunes is None, try to get the channel.image from the rss spec
let image_uri = itunes_img.or_else(|| chan.image().map(|s| s.url().trim().to_owned()));
NewShowBuilder::default()
.title(title)
.description(description)
.link(link)
.image_uri(image_uri)
.source_id(source_id)
.build()
.unwrap()
}
// Look out for when tryinto lands into stable.
pub(crate) fn to_podcast(&self) -> Result<Show, DataError> {
self.index()?;
dbqueries::get_podcast_from_source_id(self.source_id).map_err(From::from)
}
}
// Ignore the following geters. They are used in unit tests mainly.
impl NewShow {
#[allow(dead_code)]
pub(crate) fn source_id(&self) -> i32 {
self.source_id
}
pub(crate) fn title(&self) -> &str {
&self.title
}
pub(crate) fn link(&self) -> &str {
&self.link
}
pub(crate) fn description(&self) -> &str {
&self.description
}
pub(crate) fn image_uri(&self) -> Option<&str> {
self.image_uri.as_ref().map(|s| s.as_str())
}
}
#[cfg(test)]
mod tests {
use super::*;
// use tokio_core::reactor::Core;
use rss::Channel;
use database::truncate_db;
use models::NewShowBuilder;
use std::fs::File;
use std::io::BufReader;
// Pre-built expected NewShow structs.
lazy_static! {
static ref EXPECTED_INTERCEPTED: NewShow = {
let descr = "The people behind The Intercepts fearless reporting and incisive \
commentary—Jeremy Scahill, Glenn Greenwald, Betsy Reed and \
others—discuss the crucial issues of our time: national security, civil \
liberties, foreign policy, and criminal justice. Plus interviews with \
artists, thinkers, and newsmakers who challenge our preconceptions about \
the world we live in.";
NewShowBuilder::default()
.title("Intercepted with Jeremy Scahill")
.link("https://theintercept.com/podcasts")
.description(descr)
.image_uri(Some(String::from(
"http://static.megaphone.fm/podcasts/d5735a50-d904-11e6-8532-73c7de466ea6/image/\
uploads_2F1484252190700-qhn5krasklbce3dh-a797539282700ea0298a3a26f7e49b0b_\
2FIntercepted_COVER%2B_281_29.png")
))
.source_id(42)
.build()
.unwrap()
};
static ref EXPECTED_LUP: NewShow = {
let descr = "An open show powered by community LINUX Unplugged takes the best \
attributes of open collaboration and focuses them into a weekly \
lifestyle show about Linux.";
NewShowBuilder::default()
.title("LINUX Unplugged Podcast")
.link("http://www.jupiterbroadcasting.com/")
.description(descr)
.image_uri(Some(String::from(
"http://www.jupiterbroadcasting.com/images/LASUN-Badge1400.jpg",
)))
.source_id(42)
.build()
.unwrap()
};
static ref EXPECTED_TIPOFF: NewShow = {
let desc = "<p>Welcome to The Tip Off- the podcast where we take you behind the \
scenes of some of the best investigative journalism from recent years. \
Each episode well be digging into an investigative scoop- hearing from \
the journalists behind the work as they tell us about the leads, the \
dead-ends and of course, the tip offs. Therell be car chases, slammed \
doors, terrorist cells, meetings in dimly lit bars and cafes, wrangling \
with despotic regimes and much more. So if youre curious about the fun, \
complicated detective work that goes into doing great investigative \
journalism- then this is the podcast for you.</p>";
NewShowBuilder::default()
.title("The Tip Off")
.link("http://www.acast.com/thetipoff")
.description(desc)
.image_uri(Some(String::from(
"https://imagecdn.acast.com/image?h=1500&w=1500&source=http%3A%2F%2Fi1.sndcdn.\
com%2Favatars-000317856075-a2coqz-original.jpg",
)))
.source_id(42)
.build()
.unwrap()
};
static ref EXPECTED_STARS: NewShow = {
let descr = "<p>The first audio drama from Tor Labs and Gideon Media, Steal the Stars \
is a gripping noir science fiction thriller in 14 episodes: Forbidden \
love, a crashed UFO, an alien body, and an impossible heist unlike any \
ever attempted - scripted by Mac Rogers, the award-winning playwright \
and writer of the multi-million download The Message and LifeAfter.</p>";
let img = "https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-\
b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e\
923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg";
NewShowBuilder::default()
.title("Steal the Stars")
.link("http://tor-labs.com/")
.description(descr)
.image_uri(Some(String::from(img)))
.source_id(42)
.build()
.unwrap()
};
static ref EXPECTED_CODE: NewShow = {
let descr = "A podcast about humans and technology. Panelists: Coraline Ada Ehmke, \
David Brady, Jessica Kerr, Jay Bobo, Astrid Countee and Sam \
Livingston-Gray. Brought to you by @therubyrep.";
NewShowBuilder::default()
.title("Greater Than Code")
.link("https://www.greaterthancode.com/")
.description(descr)
.image_uri(Some(String::from(
"http://www.greaterthancode.com/wp-content/uploads/2016/10/code1400-4.jpg",
)))
.source_id(42)
.build()
.unwrap()
};
static ref EXPECTED_ELLINOFRENEIA: NewShow = {
NewShowBuilder::default()
.title("Ελληνοφρένεια")
.link("https://ellinofreneia.sealabs.net/feed.rss")
.description("Ανεπίσημο feed της Ελληνοφρένειας")
.image_uri(Some("https://ellinofreneia.sealabs.net/logo.png".into()))
.source_id(42)
.build()
.unwrap()
};
static ref UPDATED_DESC_INTERCEPTED: NewShow = {
NewShowBuilder::default()
.title("Intercepted with Jeremy Scahill")
.link("https://theintercept.com/podcasts")
.description("New Description")
.image_uri(Some(String::from(
"http://static.megaphone.fm/podcasts/d5735a50-d904-11e6-8532-73c7de466ea6/image/\
uploads_2F1484252190700-qhn5krasklbce3dh-a797539282700ea0298a3a26f7e49b0b_\
2FIntercepted_COVER%2B_281_29.png")
))
.source_id(42)
.build()
.unwrap()
};
}
#[test]
fn test_new_podcast_intercepted() {
let file = File::open("tests/feeds/2018-01-20-Intercepted.xml").unwrap();
let channel = Channel::read_from(BufReader::new(file)).unwrap();
let pd = NewShow::new(&channel, 42);
assert_eq!(*EXPECTED_INTERCEPTED, pd);
}
#[test]
fn test_new_podcast_lup() {
let file = File::open("tests/feeds/2018-01-20-LinuxUnplugged.xml").unwrap();
let channel = Channel::read_from(BufReader::new(file)).unwrap();
let pd = NewShow::new(&channel, 42);
assert_eq!(*EXPECTED_LUP, pd);
}
#[test]
fn test_new_podcast_thetipoff() {
let file = File::open("tests/feeds/2018-01-20-TheTipOff.xml").unwrap();
let channel = Channel::read_from(BufReader::new(file)).unwrap();
let pd = NewShow::new(&channel, 42);
assert_eq!(*EXPECTED_TIPOFF, pd);
}
#[test]
fn test_new_podcast_steal_the_stars() {
let file = File::open("tests/feeds/2018-01-20-StealTheStars.xml").unwrap();
let channel = Channel::read_from(BufReader::new(file)).unwrap();
let pd = NewShow::new(&channel, 42);
assert_eq!(*EXPECTED_STARS, pd);
}
#[test]
fn test_new_podcast_greater_than_code() {
let file = File::open("tests/feeds/2018-01-20-GreaterThanCode.xml").unwrap();
let channel = Channel::read_from(BufReader::new(file)).unwrap();
let pd = NewShow::new(&channel, 42);
assert_eq!(*EXPECTED_CODE, pd);
}
#[test]
fn test_new_podcast_ellinofreneia() {
let file = File::open("tests/feeds/2018-03-28-Ellinofreneia.xml").unwrap();
let channel = Channel::read_from(BufReader::new(file)).unwrap();
let pd = NewShow::new(&channel, 42);
assert_eq!(*EXPECTED_ELLINOFRENEIA, pd);
}
#[test]
// This maybe could be a doc test on insert.
fn test_new_podcast_insert() {
truncate_db().unwrap();
let file = File::open("tests/feeds/2018-01-20-Intercepted.xml").unwrap();
let channel = Channel::read_from(BufReader::new(file)).unwrap();
let npd = NewShow::new(&channel, 42);
npd.insert().unwrap();
let pd = dbqueries::get_podcast_from_source_id(42).unwrap();
assert_eq!(npd, pd);
assert_eq!(*EXPECTED_INTERCEPTED, npd);
assert_eq!(&*EXPECTED_INTERCEPTED, &pd);
}
#[test]
// TODO: Add more test/checks
// Currently there's a test that only checks new description or title.
// If you have time and want to help, implement the test for the other fields
// too.
fn test_new_podcast_update() {
truncate_db().unwrap();
let old = EXPECTED_INTERCEPTED.to_podcast().unwrap();
let updated = &*UPDATED_DESC_INTERCEPTED;
updated.update(old.id()).unwrap();
let new = dbqueries::get_podcast_from_source_id(42).unwrap();
assert_ne!(old, new);
assert_eq!(old.id(), new.id());
assert_eq!(old.source_id(), new.source_id());
assert_eq!(updated, &new);
assert_ne!(updated, &old);
}
#[test]
fn test_new_podcast_index() {
truncate_db().unwrap();
// First insert
assert!(EXPECTED_INTERCEPTED.index().is_ok());
// Second identical, This should take the early return path
assert!(EXPECTED_INTERCEPTED.index().is_ok());
// Get the podcast
let old = dbqueries::get_podcast_from_source_id(42).unwrap();
// Assert that NewShow is equal to the Indexed one
assert_eq!(&*EXPECTED_INTERCEPTED, &old);
let updated = &*UPDATED_DESC_INTERCEPTED;
// Update the podcast
assert!(updated.index().is_ok());
// Get the new Show
let new = dbqueries::get_podcast_from_source_id(42).unwrap();
// Assert it's diff from the old one.
assert_ne!(new, old);
assert_eq!(new.id(), old.id());
assert_eq!(new.source_id(), old.source_id());
}
#[test]
fn test_to_podcast() {
// Assert insert() produces the same result that you would get with to_podcast()
truncate_db().unwrap();
EXPECTED_INTERCEPTED.insert().unwrap();
let old = dbqueries::get_podcast_from_source_id(42).unwrap();
let pd = EXPECTED_INTERCEPTED.to_podcast().unwrap();
assert_eq!(old, pd);
// Same as above, diff order
truncate_db().unwrap();
let pd = EXPECTED_INTERCEPTED.to_podcast().unwrap();
// This should error as a unique constrain violation
assert!(EXPECTED_INTERCEPTED.insert().is_err());
let old = dbqueries::get_podcast_from_source_id(42).unwrap();
assert_eq!(old, pd);
}
}
+50
View File
@@ -0,0 +1,50 @@
use diesel;
use diesel::prelude::*;
use url::Url;
use database::connection;
use dbqueries;
// use models::{Insert, Update};
use errors::DataError;
use models::Source;
use schema::source;
#[derive(Insertable)]
#[table_name = "source"]
#[derive(Debug, Clone, Default, Builder, PartialEq)]
#[builder(default)]
#[builder(derive(Debug))]
#[builder(setter(into))]
pub(crate) struct NewSource {
uri: String,
last_modified: Option<String>,
http_etag: Option<String>,
}
impl NewSource {
pub(crate) fn new(uri: &Url) -> NewSource {
NewSource {
uri: uri.to_string(),
last_modified: None,
http_etag: None,
}
}
pub(crate) fn insert_or_ignore(&self) -> Result<(), DataError> {
use schema::source::dsl::*;
let db = connection();
let con = db.get()?;
diesel::insert_or_ignore_into(source)
.values(self)
.execute(&con)
.map(|_| ())
.map_err(From::from)
}
// Look out for when tryinto lands into stable.
pub(crate) fn to_source(&self) -> Result<Source, DataError> {
self.insert_or_ignore()?;
dbqueries::get_source_from_uri(&self.uri).map_err(From::from)
}
}
+123
View File
@@ -0,0 +1,123 @@
use diesel::SaveChangesDsl;
use database::connection;
use errors::DataError;
use models::{Save, Source};
use schema::shows;
#[derive(Queryable, Identifiable, AsChangeset, Associations, PartialEq)]
#[belongs_to(Source, foreign_key = "source_id")]
#[changeset_options(treat_none_as_null = "true")]
#[table_name = "shows"]
#[derive(Debug, Clone)]
/// Diesel Model of the shows table.
pub struct Show {
id: i32,
title: String,
link: String,
description: String,
image_uri: Option<String>,
source_id: i32,
}
impl Save<Show> for Show {
type Error = DataError;
/// Helper method to easily save/"sync" current state of self to the
/// Database.
fn save(&self) -> Result<Show, Self::Error> {
let db = connection();
let tempdb = db.get()?;
self.save_changes::<Show>(&*tempdb).map_err(From::from)
}
}
impl Show {
/// Get the Feed `id`.
pub fn id(&self) -> i32 {
self.id
}
/// Get the Feed `title`.
pub fn title(&self) -> &str {
&self.title
}
/// Get the Feed `link`.
///
/// Usually the website/homepage of the content creator.
pub fn link(&self) -> &str {
&self.link
}
/// Set the Show/Feed `link`.
pub fn set_link(&mut self, value: &str) {
self.link = value.to_string();
}
/// Get the `description`.
pub fn description(&self) -> &str {
&self.description
}
/// Set the `description`.
pub fn set_description(&mut self, value: &str) {
self.description = value.to_string();
}
/// Get the `image_uri`.
///
/// Represents the uri(url usually) that the Feed cover image is located at.
pub fn image_uri(&self) -> Option<&str> {
self.image_uri.as_ref().map(|s| s.as_str())
}
/// Set the `image_uri`.
pub fn set_image_uri(&mut self, value: Option<&str>) {
self.image_uri = value.map(|x| x.to_string());
}
/// `Source` table foreign key.
pub fn source_id(&self) -> i32 {
self.source_id
}
}
#[derive(Queryable, Debug, Clone)]
/// Diesel Model of the Show cover query.
/// Used for fetching information about a Show's cover.
pub struct ShowCoverModel {
id: i32,
title: String,
image_uri: Option<String>,
}
impl From<Show> for ShowCoverModel {
fn from(p: Show) -> ShowCoverModel {
ShowCoverModel {
id: p.id(),
title: p.title,
image_uri: p.image_uri,
}
}
}
impl ShowCoverModel {
/// Get the Feed `id`.
pub fn id(&self) -> i32 {
self.id
}
/// Get the Feed `title`.
pub fn title(&self) -> &str {
&self.title
}
/// Get the `image_uri`.
///
/// Represents the uri(url usually) that the Feed cover image is located at.
pub fn image_uri(&self) -> Option<&str> {
self.image_uri.as_ref().map(|s| s.as_str())
}
}
+282
View File
@@ -0,0 +1,282 @@
use diesel::SaveChangesDsl;
// use failure::ResultExt;
use rss::Channel;
use url::Url;
use hyper::client::HttpConnector;
use hyper::header::{
ETag, EntityTag, HttpDate, IfModifiedSince, IfNoneMatch, LastModified, Location, UserAgent,
};
use hyper::{Client, Method, Request, Response, StatusCode, Uri};
use hyper_tls::HttpsConnector;
// use futures::future::ok;
use futures::future::{loop_fn, Future, Loop};
use futures::prelude::*;
use database::connection;
use errors::*;
use feed::{Feed, FeedBuilder};
use models::{NewSource, Save};
use schema::source;
use USER_AGENT;
use std::str::FromStr;
#[derive(Queryable, Identifiable, AsChangeset, PartialEq)]
#[table_name = "source"]
#[changeset_options(treat_none_as_null = "true")]
#[derive(Debug, Clone)]
/// Diesel Model of the source table.
pub struct Source {
id: i32,
uri: String,
last_modified: Option<String>,
http_etag: Option<String>,
}
impl Save<Source> for Source {
type Error = DataError;
/// Helper method to easily save/"sync" current state of self to the
/// Database.
fn save(&self) -> Result<Source, Self::Error> {
let db = connection();
let con = db.get()?;
self.save_changes::<Source>(&con).map_err(From::from)
}
}
impl Source {
/// Get the source `id` column.
pub fn id(&self) -> i32 {
self.id
}
/// Represents the location(usually url) of the Feed xml file.
pub fn uri(&self) -> &str {
&self.uri
}
/// Set the `uri` field value.
pub fn set_uri(&mut self, uri: String) {
self.uri = uri;
}
/// Represents the Http Last-Modified Header field.
///
/// See [RFC 7231](https://tools.ietf.org/html/rfc7231#section-7.2) for more.
pub fn last_modified(&self) -> Option<&str> {
self.last_modified.as_ref().map(|s| s.as_str())
}
/// Set `last_modified` value.
pub fn set_last_modified(&mut self, value: Option<String>) {
// self.last_modified = value.map(|x| x.to_string());
self.last_modified = value;
}
/// Represents the Http Etag Header field.
///
/// See [RFC 7231](https://tools.ietf.org/html/rfc7231#section-7.2) for more.
pub fn http_etag(&self) -> Option<&str> {
self.http_etag.as_ref().map(|s| s.as_str())
}
/// Set `http_etag` value.
pub fn set_http_etag(&mut self, value: Option<&str>) {
self.http_etag = value.map(|x| x.to_string());
}
/// Extract Etag and LastModifier from res, and update self and the
/// corresponding db row.
fn update_etag(&mut self, res: &Response) -> Result<(), DataError> {
let headers = res.headers();
let etag = headers.get::<ETag>().map(|x| x.tag());
let lmod = headers.get::<LastModified>().map(|x| format!("{}", x));
if (self.http_etag() != etag) || (self.last_modified != lmod) {
self.set_http_etag(etag);
self.set_last_modified(lmod);
self.save()?;
}
Ok(())
}
fn make_err(self, context: &str, code: StatusCode) -> DataError {
DataError::HttpStatusGeneral(HttpStatusError::new(self.uri, code, context.into()))
}
// TODO match on more stuff
// 301: Moved Permanently
// 304: Up to date Feed, checked with the Etag
// 307: Temporary redirect of the url
// 308: Permanent redirect of the url
// 401: Unathorized
// 403: Forbidden
// 408: Timeout
// 410: Feed deleted
// TODO: Rething this api,
fn match_status(mut self, res: Response) -> Result<Response, DataError> {
self.update_etag(&res)?;
let code = res.status();
match code {
StatusCode::NotModified => return Err(self.make_err("304: skipping..", code)),
StatusCode::MovedPermanently => {
error!("Feed was moved permanently.");
self.handle_301(&res)?;
return Err(DataError::F301(self));
}
StatusCode::TemporaryRedirect => debug!("307: Temporary Redirect."),
StatusCode::PermanentRedirect => warn!("308: Permanent Redirect."),
StatusCode::Unauthorized => return Err(self.make_err("401: Unauthorized.", code)),
StatusCode::Forbidden => return Err(self.make_err("403: Forbidden.", code)),
StatusCode::NotFound => return Err(self.make_err("404: Not found.", code)),
StatusCode::RequestTimeout => return Err(self.make_err("408: Request Timeout.", code)),
StatusCode::Gone => return Err(self.make_err("410: Feed was deleted..", code)),
_ => info!("HTTP StatusCode: {}", code),
};
Ok(res)
}
fn handle_301(&mut self, res: &Response) -> Result<(), DataError> {
let headers = res.headers();
if let Some(url) = headers.get::<Location>() {
self.set_uri(url.to_string());
self.http_etag = None;
self.last_modified = None;
self.save()?;
info!("Feed url was updated succesfully.");
}
Ok(())
}
/// Construct a new `Source` with the given `uri` and index it.
///
/// This only indexes the `Source` struct, not the Podcast Feed.
pub fn from_url(uri: &str) -> Result<Source, DataError> {
let url = Url::parse(uri)?;
NewSource::new(&url).to_source()
}
/// `Feed` constructor.
///
/// Fetches the latest xml Feed.
///
/// Updates the validator Http Headers.
///
/// Consumes `self` and Returns the corresponding `Feed` Object.
// Refactor into TryInto once it lands on stable.
pub fn into_feed(
self,
client: Client<HttpsConnector<HttpConnector>>,
ignore_etags: bool,
) -> impl Future<Item = Feed, Error = DataError> {
let id = self.id();
let response = loop_fn(self, move |source| {
source
.request_constructor(&client.clone(), ignore_etags)
.then(|res| match res {
Ok(response) => Ok(Loop::Break(response)),
Err(err) => match err {
DataError::F301(s) => {
info!("Following redirect...");
Ok(Loop::Continue(s))
}
e => Err(e),
},
})
});
response
.and_then(response_to_channel)
.and_then(move |chan| {
FeedBuilder::default()
.channel(chan)
.source_id(id)
.build()
.map_err(From::from)
})
}
// TODO: make ignore_etags an Enum for better ergonomics.
// #bools_are_just_2variant_enmus
fn request_constructor(
self,
client: &Client<HttpsConnector<HttpConnector>>,
ignore_etags: bool,
) -> impl Future<Item = Response, Error = DataError> {
// FIXME: remove unwrap somehow
let uri = Uri::from_str(self.uri()).unwrap();
let mut req = Request::new(Method::Get, uri);
// Set the UserAgent cause ppl still seem to check it for some reason...
req.headers_mut().set(UserAgent::new(USER_AGENT));
if !ignore_etags {
if let Some(etag) = self.http_etag() {
let tag = vec![EntityTag::new(true, etag.to_owned())];
req.headers_mut().set(IfNoneMatch::Items(tag));
}
if let Some(lmod) = self.last_modified() {
if let Ok(date) = lmod.parse::<HttpDate>() {
req.headers_mut().set(IfModifiedSince(date));
}
}
}
client
.request(req)
.map_err(From::from)
.and_then(move |res| self.match_status(res))
}
}
#[allow(needless_pass_by_value)]
fn response_to_channel(res: Response) -> impl Future<Item = Channel, Error = DataError> + Send {
res.body()
.concat2()
.map(|x| x.into_iter())
.map_err(From::from)
.map(|iter| iter.collect::<Vec<u8>>())
.map(|utf_8_bytes| String::from_utf8_lossy(&utf_8_bytes).into_owned())
.and_then(|buf| Channel::from_str(&buf).map_err(From::from))
}
#[cfg(test)]
mod tests {
use super::*;
use tokio_core::reactor::Core;
use database::truncate_db;
use utils::get_feed;
#[test]
fn test_into_feed() {
truncate_db().unwrap();
let mut core = Core::new().unwrap();
let client = Client::configure()
.connector(HttpsConnector::new(4, &core.handle()).unwrap())
.build(&core.handle());
let url = "https://web.archive.org/web/20180120083840if_/https://feeds.feedburner.\
com/InterceptedWithJeremyScahill";
let source = Source::from_url(url).unwrap();
let id = source.id();
let feed = source.into_feed(client, true);
let feed = core.run(feed).unwrap();
let expected = get_feed("tests/feeds/2018-01-20-Intercepted.xml", id);
assert_eq!(expected, feed);
}
}
+167
View File
@@ -0,0 +1,167 @@
//! FIXME: Docs
// #![allow(unused)]
use errors::DataError;
use models::Source;
use xml::reader;
use std::collections::HashSet;
use std::fs;
use std::io::Read;
use std::path::Path;
// use std::fs::{File, OpenOptions};
// use std::io::BufReader;
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
// FIXME: Make it a Diesel model
/// Represents an `outline` xml element as per the `OPML` [specification][spec]
/// not `RSS` related sub-elements are ommited.
///
/// [spec]: http://dev.opml.org/spec2.html
pub struct Opml {
title: String,
description: String,
url: String,
}
/// Import feed url's from a `R` into the `Source` table.
// TODO: Write test
pub fn import_to_db<R: Read>(reader: R) -> Result<Vec<Source>, reader::Error> {
let feeds = extract_sources(reader)?
.iter()
.map(|opml| Source::from_url(&opml.url))
.filter_map(|s| {
if let Err(ref err) = s {
let txt = "If you think this might be a bug please consider filling a report over \
at https://gitlab.gnome.org/World/hammond/issues/new";
error!("Failed to import a Show: {}", err);
error!("{}", txt);
}
s.ok()
})
.collect();
Ok(feeds)
}
/// Open a File from `P`, try to parse the OPML then insert the Feeds in the database and
/// return the new `Source`s
// TODO: Write test
pub fn import_from_file<P: AsRef<Path>>(path: P) -> Result<Vec<Source>, DataError> {
let content = fs::read(path)?;
import_to_db(content.as_slice()).map_err(From::from)
}
/// Extracts the `outline` elemnts from a reader `R` and returns a `HashSet` of `Opml` structs.
pub fn extract_sources<R: Read>(reader: R) -> Result<HashSet<Opml>, reader::Error> {
let mut list = HashSet::new();
let parser = reader::EventReader::new(reader);
parser
.into_iter()
.map(|e| match e {
Ok(reader::XmlEvent::StartElement {
name, attributes, ..
}) => {
if name.local_name == "outline" {
let mut title = String::new();
let mut url = String::new();
let mut description = String::new();
attributes.into_iter().for_each(|attribute| {
match attribute.name.local_name.as_str() {
"title" => title = attribute.value,
"xmlUrl" => url = attribute.value,
"description" => description = attribute.value,
_ => {}
}
});
let feed = Opml {
title,
description,
url,
};
list.insert(feed);
}
Ok(())
}
Err(err) => Err(err),
_ => Ok(()),
})
.collect::<Result<Vec<_>, reader::Error>>()?;
Ok(list)
}
#[cfg(test)]
mod tests {
use super::*;
use chrono::Local;
#[test]
fn test_extract() {
let int_title = String::from("Intercepted with Jeremy Scahill");
let int_url = String::from("https://feeds.feedburner.com/InterceptedWithJeremyScahill");
let int_desc =
String::from(
"The people behind The Intercepts fearless reporting and incisive \
commentary—Jeremy Scahill, Glenn Greenwald, Betsy Reed and others—discuss the \
crucial issues of our time: national security, civil liberties, foreign policy, \
and criminal justice. Plus interviews with artists, thinkers, and newsmakers \
who challenge our preconceptions about the world we live in.",
);
let dec_title = String::from("Deconstructed with Mehdi Hasan");
let dec_url = String::from("https://rss.prod.firstlook.media/deconstructed/podcast.rss");
let dec_desc = String::from(
"Journalist Mehdi Hasan is known around the world for his televised takedowns of \
presidents and prime ministers. In this new podcast from The Intercept, Mehdi \
unpacks a game-changing news event of the week while challenging the conventional \
wisdom. As a Brit, a Muslim and an immigrant based in Donald Trump's Washington \
D.C., Mehdi gives a refreshingly provocative perspective on the ups and downs of \
American—and global—politics.",
);
#[cfg_attr(rustfmt, rustfmt_skip)]
let sample1 = format!(
"<?xml version=\"1.0\" encoding=\"UTF-8\"?> \
<opml version=\"2.0\"> \
<head> \
<title>Test OPML File</title> \
<dateCreated>{}</dateCreated> \
<docs>http://www.opml.org/spec2</docs> \
</head> \
<body> \
<outline type=\"rss\" title=\"{}\" description=\"{}\" xmlUrl=\"{}\"/> \
<outline type=\"rss\" title=\"{}\" description=\"{}\" xmlUrl=\"{}\"/> \
</body> \
</opml>",
Local::now().format("%a, %d %b %Y %T %Z"),
int_title,
int_desc,
int_url,
dec_title,
dec_desc,
dec_url,
);
let map = hashset![
Opml {
title: int_title,
description: int_desc,
url: int_url
},
Opml {
title: dec_title,
description: dec_desc,
url: dec_url
},
];
assert_eq!(extract_sources(sample1.as_bytes()).unwrap(), map);
}
}
+81
View File
@@ -0,0 +1,81 @@
use rss::extension::itunes::ITunesItemExtension;
/// Parses an Item Itunes extension and returns it's duration value in seconds.
// FIXME: Rafactor
#[allow(non_snake_case)]
pub(crate) fn parse_itunes_duration(item: Option<&ITunesItemExtension>) -> Option<i32> {
let duration = item.map(|s| s.duration())??;
// FOR SOME FUCKING REASON, IN THE APPLE EXTENSION SPEC
// THE DURATION CAN BE EITHER AN INT OF SECONDS OR
// A STRING OF THE FOLLOWING FORMATS:
// HH:MM:SS, H:MM:SS, MM:SS, M:SS
// LIKE WHO THE FUCK THOUGH THAT WOULD BE A GOOD IDEA.
if let Ok(NO_FUCKING_LOGIC) = duration.parse::<i32>() {
return Some(NO_FUCKING_LOGIC);
};
let mut seconds = 0;
let fk_apple = duration.split(':').collect::<Vec<_>>();
if fk_apple.len() == 3 {
seconds += fk_apple[0].parse::<i32>().unwrap_or(0) * 3600;
seconds += fk_apple[1].parse::<i32>().unwrap_or(0) * 60;
seconds += fk_apple[2].parse::<i32>().unwrap_or(0);
} else if fk_apple.len() == 2 {
seconds += fk_apple[0].parse::<i32>().unwrap_or(0) * 60;
seconds += fk_apple[1].parse::<i32>().unwrap_or(0);
}
Some(seconds)
}
#[cfg(test)]
mod tests {
use rss::extension::itunes::ITunesItemExtensionBuilder;
use super::*;
#[test]
fn test_itunes_duration() {
// Input is a String<Int>
let extension = ITunesItemExtensionBuilder::default()
.duration(Some("3370".into()))
.build()
.unwrap();
let item = Some(&extension);
assert_eq!(parse_itunes_duration(item), Some(3370));
// Input is a String<M:SS>
let extension = ITunesItemExtensionBuilder::default()
.duration(Some("6:10".into()))
.build()
.unwrap();
let item = Some(&extension);
assert_eq!(parse_itunes_duration(item), Some(370));
// Input is a String<MM:SS>
let extension = ITunesItemExtensionBuilder::default()
.duration(Some("56:10".into()))
.build()
.unwrap();
let item = Some(&extension);
assert_eq!(parse_itunes_duration(item), Some(3370));
// Input is a String<H:MM:SS>
let extension = ITunesItemExtensionBuilder::default()
.duration(Some("1:56:10".into()))
.build()
.unwrap();
let item = Some(&extension);
assert_eq!(parse_itunes_duration(item), Some(6970));
// Input is a String<HH:MM:SS>
let extension = ITunesItemExtensionBuilder::default()
.duration(Some("01:56:10".into()))
.build()
.unwrap();
let item = Some(&extension);
assert_eq!(parse_itunes_duration(item), Some(6970));
}
}
+128
View File
@@ -0,0 +1,128 @@
// FIXME:
//! Docs.
use futures::future::*;
use futures::prelude::*;
use futures::stream::*;
use hyper::client::HttpConnector;
use hyper::Client;
use hyper_tls::HttpsConnector;
use tokio_core::reactor::Core;
use num_cpus;
use rayon;
use rayon_futures::ScopeFutureExt;
use errors::DataError;
use Source;
// use std::sync::{Arc, Mutex};
// http://gtk-rs.org/tuto/closures
#[macro_export]
macro_rules! clone {
(@param _) => ( _ );
(@param $x:ident) => ( $x );
($($n:ident),+ => move || $body:expr) => (
{
$( let $n = $n.clone(); )+
move || $body
}
);
($($n:ident),+ => move |$($p:tt),+| $body:expr) => (
{
$( let $n = $n.clone(); )+
move |$(clone!(@param $p),)+| $body
}
);
}
type HttpsClient = Client<HttpsConnector<HttpConnector>>;
/// The pipline to be run for indexing and updating a Podcast feed that originates from
/// `Source.uri`.
///
/// Messy temp diagram:
/// Source -> GET Request -> Update Etags -> Check Status -> Parse `xml/Rss` ->
/// Convert `rss::Channel` into `Feed` -> Index Podcast -> Index Episodes.
pub fn pipeline<'a, S>(
sources: S,
ignore_etags: bool,
client: &HttpsClient,
) -> impl Future<Item = Vec<()>, Error = DataError> + 'a
where
S: Stream<Item = Source, Error = DataError> + 'a,
{
sources
.and_then(clone!(client => move |s| s.into_feed(client.clone(), ignore_etags)))
.and_then(|feed| rayon::scope(|s| s.spawn_future(feed.index())))
// the stream will stop at the first error so
// we ensure that everything will succeded regardless.
.map_err(|err| error!("Error: {}", err))
.then(|_| ok::<(), DataError>(()))
.collect()
}
/// Creates a tokio `reactor::Core`, and a `hyper::Client` and
/// runs the pipeline to completion. The `reactor::Core` is dropped afterwards.
pub fn run<S>(sources: S, ignore_etags: bool) -> Result<(), DataError>
where
S: IntoIterator<Item = Source>,
{
let mut core = Core::new()?;
let handle = core.handle();
let client = Client::configure()
.connector(HttpsConnector::new(num_cpus::get(), &handle)?)
.build(&handle);
let stream = iter_ok::<_, DataError>(sources);
let p = pipeline(stream, ignore_etags, &client);
core.run(p).map(|_| ())
}
#[cfg(test)]
mod tests {
use super::*;
use database::truncate_db;
use dbqueries;
use Source;
// (path, url) tuples.
const URLS: &[&str] = &[
"https://web.archive.org/web/20180120083840if_/https://feeds.feedburner.\
com/InterceptedWithJeremyScahill",
"https://web.archive.org/web/20180120110314if_/https://feeds.feedburner.com/linuxunplugged",
"https://web.archive.org/web/20180120110727if_/https://rss.acast.com/thetipoff",
"https://web.archive.org/web/20180120104957if_/https://rss.art19.com/steal-the-stars",
"https://web.archive.org/web/20180120104741if_/https://www.greaterthancode.\
com/feed/podcast",
];
#[test]
/// Insert feeds and update/index them.
fn test_pipeline() {
truncate_db().unwrap();
let bad_url = "https://gitlab.gnome.org/World/hammond.atom";
// if a stream returns error/None it stops
// bad we want to parse all feeds regardless if one fails
Source::from_url(bad_url).unwrap();
URLS.iter().for_each(|url| {
// Index the urls into the source table.
Source::from_url(url).unwrap();
});
let sources = dbqueries::get_sources().unwrap();
run(sources, true).unwrap();
let sources = dbqueries::get_sources().unwrap();
// Run again to cover Unique constrains erros.
run(sources, true).unwrap();
// Assert the index rows equal the controlled results
assert_eq!(dbqueries::get_sources().unwrap().len(), 6);
assert_eq!(dbqueries::get_podcasts().unwrap().len(), 5);
assert_eq!(dbqueries::get_episodes().unwrap().len(), 354);
}
}
+29
View File
@@ -0,0 +1,29 @@
diff --git a/podcasts-data/src/schema.rs b/podcasts-data/src/schema.rs
index 03cbed0..88f1622 100644
--- a/podcasts-data/src/schema.rs
+++ b/podcasts-data/src/schema.rs
@@ -1,8 +1,11 @@
+#![allow(warnings)]
+
table! {
episodes (title, show_id) {
+ rowid -> Integer,
title -> Text,
uri -> Nullable<Text>,
local_uri -> Nullable<Text>,
description -> Nullable<Text>,
epoch -> Integer,
length -> Nullable<Integer>,
@@ -30,11 +33,7 @@ table! {
uri -> Text,
last_modified -> Nullable<Text>,
http_etag -> Nullable<Text>,
}
}
-allow_tables_to_appear_in_same_query!(
- episodes,
- shows,
- source,
-);
+allow_tables_to_appear_in_same_query!(episodes, shows, source);
+39
View File
@@ -0,0 +1,39 @@
#![allow(warnings)]
table! {
episodes (title, show_id) {
rowid -> Integer,
title -> Text,
uri -> Nullable<Text>,
local_uri -> Nullable<Text>,
description -> Nullable<Text>,
epoch -> Integer,
length -> Nullable<Integer>,
duration -> Nullable<Integer>,
guid -> Nullable<Text>,
played -> Nullable<Integer>,
show_id -> Integer,
}
}
table! {
shows (id) {
id -> Integer,
title -> Text,
link -> Text,
description -> Text,
image_uri -> Nullable<Text>,
source_id -> Integer,
}
}
table! {
source (id) {
id -> Integer,
uri -> Text,
last_modified -> Nullable<Text>,
http_etag -> Nullable<Text>,
}
}
allow_tables_to_appear_in_same_query!(episodes, shows, source);
+289
View File
@@ -0,0 +1,289 @@
//! Helper utilities for accomplishing various tasks.
use chrono::prelude::*;
use rayon::prelude::*;
use url::{Position, Url};
use dbqueries;
use errors::DataError;
use models::{EpisodeCleanerModel, Save, Show};
use xdg_dirs::DL_DIR;
use std::fs;
use std::path::Path;
/// Scan downloaded `episode` entries that might have broken `local_uri`s and
/// set them to `None`.
fn download_checker() -> Result<(), DataError> {
let mut episodes = dbqueries::get_downloaded_episodes()?;
episodes
.par_iter_mut()
.filter_map(|ep| {
if !Path::new(ep.local_uri()?).exists() {
return Some(ep);
}
None
})
.for_each(|ep| {
ep.set_local_uri(None);
ep.save()
.map_err(|err| error!("{}", err))
.map_err(|_| error!("Error while trying to update episode: {:#?}", ep))
.ok();
});
Ok(())
}
/// Delete watched `episodes` that have exceded their liftime after played.
fn played_cleaner(cleanup_date: DateTime<Utc>) -> Result<(), DataError> {
let mut episodes = dbqueries::get_played_cleaner_episodes()?;
let now_utc = cleanup_date.timestamp() as i32;
episodes
.par_iter_mut()
.filter(|ep| ep.local_uri().is_some() && ep.played().is_some())
.for_each(|ep| {
let limit = ep.played().unwrap();
if now_utc > limit {
delete_local_content(ep)
.map(|_| info!("Episode {:?} was deleted succesfully.", ep.local_uri()))
.map_err(|err| error!("Error: {}", err))
.map_err(|_| error!("Failed to delete file: {:?}", ep.local_uri()))
.ok();
}
});
Ok(())
}
/// Check `ep.local_uri` field and delete the file it points to.
fn delete_local_content(ep: &mut EpisodeCleanerModel) -> Result<(), DataError> {
if ep.local_uri().is_some() {
let uri = ep.local_uri().unwrap().to_owned();
if Path::new(&uri).exists() {
let res = fs::remove_file(&uri);
if res.is_ok() {
ep.set_local_uri(None);
ep.save()?;
} else {
error!("Error while trying to delete file: {}", uri);
error!("{}", res.unwrap_err());
};
}
} else {
error!(
"Something went wrong evaluating the following path: {:?}",
ep.local_uri(),
);
}
Ok(())
}
/// Database cleaning tasks.
///
/// Runs a download checker which looks for `Episode.local_uri` entries that
/// doesn't exist and sets them to None
///
/// Runs a cleaner for played Episode's that are pass the lifetime limit and
/// scheduled for removal.
pub fn checkup(cleanup_date: DateTime<Utc>) -> Result<(), DataError> {
info!("Running database checks.");
download_checker()?;
played_cleaner(cleanup_date)?;
info!("Checks completed.");
Ok(())
}
/// Remove fragment identifiers and query pairs from a URL
/// If url parsing fails, return's a trimmed version of the original input.
pub fn url_cleaner(s: &str) -> String {
// Copied from the cookbook.
// https://rust-lang-nursery.github.io/rust-cookbook/net.html
// #remove-fragment-identifiers-and-query-pairs-from-a-url
match Url::parse(s) {
Ok(parsed) => parsed[..Position::AfterPath].to_owned(),
_ => s.trim().to_owned(),
}
}
/// Returns the URI of a Show Downloads given it's title.
pub fn get_download_folder(pd_title: &str) -> Result<String, DataError> {
// It might be better to make it a hash of the title or the Show rowid
let download_fold = format!("{}/{}", DL_DIR.to_str().unwrap(), pd_title);
// Create the folder
fs::DirBuilder::new()
.recursive(true)
.create(&download_fold)?;
Ok(download_fold)
}
/// Removes all the entries associated with the given show from the database,
/// and deletes all of the downloaded content.
// TODO: Write Tests
pub fn delete_show(pd: &Show) -> Result<(), DataError> {
dbqueries::remove_feed(pd)?;
info!("{} was removed succesfully.", pd.title());
let fold = get_download_folder(pd.title())?;
fs::remove_dir_all(&fold)?;
info!("All the content at, {} was removed succesfully", &fold);
Ok(())
}
#[cfg(test)]
use Feed;
#[cfg(test)]
/// Helper function that open a local file, parse the rss::Channel and gives back a Feed object.
/// Alternative Feed constructor to be used for tests.
pub fn get_feed(file_path: &str, id: i32) -> Feed {
use feed::FeedBuilder;
use rss::Channel;
use std::fs;
use std::io::BufReader;
// open the xml file
let feed = fs::File::open(file_path).unwrap();
// parse it into a channel
let chan = Channel::read_from(BufReader::new(feed)).unwrap();
FeedBuilder::default()
.channel(chan)
.source_id(id)
.build()
.unwrap()
}
#[cfg(test)]
mod tests {
extern crate tempdir;
use self::tempdir::TempDir;
use super::*;
use chrono::Duration;
use database::truncate_db;
use models::NewEpisodeBuilder;
use std::fs::File;
use std::io::Write;
fn helper_db() -> TempDir {
// Clean the db
truncate_db().unwrap();
// Setup tmp file stuff
let tmp_dir = TempDir::new("podcasts_test").unwrap();
let valid_path = tmp_dir.path().join("virtual_dl.mp3");
let bad_path = tmp_dir.path().join("invalid_thing.mp3");
let mut tmp_file = File::create(&valid_path).unwrap();
writeln!(tmp_file, "Foooo").unwrap();
// Setup episodes
let n1 = NewEpisodeBuilder::default()
.title("foo_bar".to_string())
.show_id(0)
.build()
.unwrap()
.to_episode()
.unwrap();
let n2 = NewEpisodeBuilder::default()
.title("bar_baz".to_string())
.show_id(1)
.build()
.unwrap()
.to_episode()
.unwrap();
let mut ep1 = dbqueries::get_episode_from_pk(n1.title(), n1.show_id()).unwrap();
let mut ep2 = dbqueries::get_episode_from_pk(n2.title(), n2.show_id()).unwrap();
ep1.set_local_uri(Some(valid_path.to_str().unwrap()));
ep2.set_local_uri(Some(bad_path.to_str().unwrap()));
ep1.save().unwrap();
ep2.save().unwrap();
tmp_dir
}
#[test]
fn test_download_checker() {
let tmp_dir = helper_db();
download_checker().unwrap();
let episodes = dbqueries::get_downloaded_episodes().unwrap();
let valid_path = tmp_dir.path().join("virtual_dl.mp3");
assert_eq!(episodes.len(), 1);
assert_eq!(
Some(valid_path.to_str().unwrap()),
episodes.first().unwrap().local_uri()
);
let _tmp_dir = helper_db();
download_checker().unwrap();
let episode = dbqueries::get_episode_from_pk("bar_baz", 1).unwrap();
assert!(episode.local_uri().is_none());
}
#[test]
fn test_download_cleaner() {
let _tmp_dir = helper_db();
let mut episode: EpisodeCleanerModel =
dbqueries::get_episode_from_pk("foo_bar", 0).unwrap().into();
let valid_path = episode.local_uri().unwrap().to_owned();
delete_local_content(&mut episode).unwrap();
assert_eq!(Path::new(&valid_path).exists(), false);
}
#[test]
fn test_played_cleaner_expired() {
let _tmp_dir = helper_db();
let mut episode = dbqueries::get_episode_from_pk("foo_bar", 0).unwrap();
let cleanup_date = Utc::now() - Duration::seconds(1000);
let epoch = cleanup_date.timestamp() as i32 - 1;
episode.set_played(Some(epoch));
episode.save().unwrap();
let valid_path = episode.local_uri().unwrap().to_owned();
// This should delete the file
played_cleaner(cleanup_date).unwrap();
assert_eq!(Path::new(&valid_path).exists(), false);
}
#[test]
fn test_played_cleaner_none() {
let _tmp_dir = helper_db();
let mut episode = dbqueries::get_episode_from_pk("foo_bar", 0).unwrap();
let cleanup_date = Utc::now() - Duration::seconds(1000);
let epoch = cleanup_date.timestamp() as i32 + 1;
episode.set_played(Some(epoch));
episode.save().unwrap();
let valid_path = episode.local_uri().unwrap().to_owned();
// This should not delete the file
played_cleaner(cleanup_date).unwrap();
assert_eq!(Path::new(&valid_path).exists(), true);
}
#[test]
fn test_url_cleaner() {
let good_url = "http://traffic.megaphone.fm/FL8608731318.mp3";
let bad_url = "http://traffic.megaphone.fm/FL8608731318.mp3?updated=1484685184";
assert_eq!(url_cleaner(bad_url), good_url);
assert_eq!(url_cleaner(good_url), good_url);
assert_eq!(url_cleaner(&format!(" {}\t\n", bad_url)), good_url);
}
#[test]
// This test needs access to local system so we ignore it by default.
#[ignore]
fn test_get_dl_folder() {
let foo_ = format!("{}/{}", DL_DIR.to_str().unwrap(), "foo");
assert_eq!(get_download_folder("foo").unwrap(), foo_);
let _ = fs::remove_dir_all(foo_);
}
}
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,688 @@
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>Intercepted with Jeremy Scahill</title>
<link>https://theintercept.com/podcasts</link>
<language>en</language>
<copyright>First Look Media Works, Inc.</copyright>
<description>The people behind The Intercepts fearless reporting and incisive commentary—Jeremy Scahill, Glenn Greenwald, Betsy Reed and others—discuss the crucial issues of our time: national security, civil liberties, foreign policy, and criminal justice. Plus interviews with artists, thinkers, and newsmakers who challenge our preconceptions about the world we live in.</description>
<image>
<url>http://static.megaphone.fm/podcasts/d5735a50-d904-11e6-8532-73c7de466ea6/image/uploads_2F1484252190700-qhn5krasklbce3dh-a797539282700ea0298a3a26f7e49b0b_2FIntercepted_COVER%2B_281_29.png</url>
<title>Intercepted with Jeremy Scahill</title>
<link>https://theintercept.com/podcasts</link>
</image>
<itunes:explicit>no</itunes:explicit>
<itunes:type>episodic</itunes:type>
<itunes:subtitle>The people behind The Intercepts fearless reporting and incisive commentary discuss the crucial issues of our time.</itunes:subtitle>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:summary>The people behind The Intercepts fearless reporting and incisive commentary—Jeremy Scahill, Glenn Greenwald, Betsy Reed and others—discuss the crucial issues of our time: national security, civil liberties, foreign policy, and criminal justice. Plus interviews with artists, thinkers, and newsmakers who challenge our preconceptions about the world we live in.</itunes:summary>
<itunes:owner>
<itunes:name>The Intercept / Panoply</itunes:name>
<itunes:email>podcasts@theintercept.com</itunes:email>
</itunes:owner>
<itunes:image href="http://static.megaphone.fm/podcasts/d5735a50-d904-11e6-8532-73c7de466ea6/image/uploads_2F1484252190700-qhn5krasklbce3dh-a797539282700ea0298a3a26f7e49b0b_2FIntercepted_COVER%2B_281_29.png" />
<itunes:category text="News &amp; Politics">
</itunes:category>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/InterceptedWithJeremyScahill" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="interceptedwithjeremyscahill" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
<title>White Mirror</title>
<description>Jeremy lays out the bloody US history in Haiti and El Salvador and blasts the bipartisan, selective amnesia and historical revisionism that “American exceptionalism” demands. Rep. Tulsi Gabbard discusses U.S. regime change, North Korea and why Bernie Sanders would have defeated Trump. As Robert Mueller hits Bannon with a Grand Jury subpoena, former CIA operative and&amp;nbsp; Cipher Brief columnist John Sipher and journalist Marcy Wheeler of Emptywheel analyze the Russia investigation and the Steele dossier. Leading Marxist scholar David Harvey talks about debt peonage in the age of Trump and the crimes of capitalism.</description>
<pubDate>Wed, 17 Jan 2018 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>White Mirror</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump is a racist and the perfect man to represent Americas racist legacy in the countries he called shitholes. </itunes:subtitle>
<itunes:summary>
<![CDATA[Jeremy lays out the bloody US history in Haiti and El Salvador and blasts the bipartisan, selective amnesia and historical revisionism that “American exceptionalism” demands. Rep. Tulsi Gabbard discusses U.S. regime change, North Korea and why Bernie Sanders would have defeated Trump. As Robert Mueller hits Bannon with a Grand Jury subpoena, former CIA operative and&nbsp; Cipher Brief columnist John Sipher and journalist Marcy Wheeler of Emptywheel analyze the Russia investigation and the Steele dossier. Leading Marxist scholar David Harvey talks about debt peonage in the age of Trump and the crimes of capitalism.]]>
</itunes:summary>
<itunes:duration>6409</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[3660ad94-fb38-11e7-847d-436a066985fa]]></guid>
<enclosure url="http://traffic.megaphone.fm/PPY1407171456.mp3?updated=1516180736" length="102550465" type="audio/mpeg" />
</item>
<item>
<title>BONUS: All The News Unfit to Print</title>
<description>James Risen is a legend in the world of investigative and national security journalism. As a reporter for the New York Times, Risen broke some of the most important stories of the post 9/11 era, from the warrantless surveillance against Americans conducted under the Bush-Cheney administration, to black prison sites run by the CIA, to failed covert actions in Iran. Risen has won the Pulitzer and other major journalism awards. But perhaps what he is now most famous for is fighting a battle under both the Bush and Obama administrations as they demanded — under threat of imprisonment —the name of one of Risens alleged confidential sources. But it isnt just the government that Risen had to fight. He also battled his own editors and other powerful figures at the New York Times. Risen is now a senior national security correspondent at The Intercept where his incredible inside story has now been published. We talk with Risen about his career at the New York Times in a special edition of Intercepted.</description>
<pubDate>Wed, 03 Jan 2018 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>BONUS: All The News Unfit to Print</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>James Risen on His Battles with Bush, Obama, and the New York Times</itunes:subtitle>
<itunes:summary>
<![CDATA[James Risen is a legend in the world of investigative and national security journalism. As a reporter for the New York Times, Risen broke some of the most important stories of the post 9/11 era, from the warrantless surveillance against Americans conducted under the Bush-Cheney administration, to black prison sites run by the CIA, to failed covert actions in Iran. Risen has won the Pulitzer and other major journalism awards. But perhaps what he is now most famous for is fighting a battle under both the Bush and Obama administrations as they demanded — under threat of imprisonment —the name of one of Risens alleged confidential sources. But it isnt just the government that Risen had to fight. He also battled his own editors and other powerful figures at the New York Times. Risen is now a senior national security correspondent at The Intercept where his incredible inside story has now been published. We talk with Risen about his career at the New York Times in a special edition of Intercepted.]]>
</itunes:summary>
<itunes:duration>3805</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<guid isPermaLink="false"><![CDATA[6bdd6660-f039-11e7-acba-33ffde0bb3cc]]></guid>
<enclosure url="http://traffic.megaphone.fm/PPY1217453507.mp3" length="60884950" type="audio/mpeg" />
</item>
<item>
<title>Full Metal Jackass</title>
<description>Former Nixon White House counsel John Dean talks about the Mueller investigation, how the CIA may benefit from Trumps presidency and how Trump stacks up to Nixon and Reagan. Pentagon Papers whistleblower Daniel Ellsberg talks about the classified secrets he has kept for decades. He has just published his story in a new book, The Doomsday Machine. Field of Vision takes us inside the very strange world of Steve Bannons films. Patterson Hood of the band Drive-By Truckers performs.</description>
<pubDate>Wed, 13 Dec 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>Full Metal Jackass</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Former Nixon Lawyer John Dean and Daniel Ellsberg Analyze the Trump Moment</itunes:subtitle>
<itunes:summary>
<![CDATA[Former Nixon White House counsel John Dean talks about the Mueller investigation, how the CIA may benefit from Trumps presidency and how Trump stacks up to Nixon and Reagan. Pentagon Papers whistleblower Daniel Ellsberg talks about the classified secrets he has kept for decades. He has just published his story in a new book, The Doomsday Machine. Field of Vision takes us inside the very strange world of Steve Bannons films. Patterson Hood of the band Drive-By Truckers performs.]]>
</itunes:summary>
<itunes:duration>5670</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[bb062002-9d9f-11e7-b8c4-9701f8d8d38e]]></guid>
<enclosure url="http://traffic.megaphone.fm/PPY9016904056.mp3" length="90720966" type="audio/mpeg" />
</item>
<item>
<title>Who's Afraid of the Alt-Deep State?</title>
<description>Matthew Cole joins Jeremy for a discussion about their explosive report in The Intercept that Blackwater founder Erik Prince has been pitching a private spy operation to the White House and CIA. Activist and comedian Randy Credico, who has been hit with a subpoena from the House Intelligence Committee investigating Trump and Russia, joins us.&amp;nbsp; Journalist Barrett Brown talks about the FBIs campaign against him and offers a critique of Wikileaks. Singer Amanda Palmer talks about her provocative new video for a cover she did of Pink Floyds “Mother."</description>
<pubDate>Wed, 06 Dec 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>Who's Afraid of the Alt-Deep State?</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump wants to make 1980s Reagan-era covert wars great again.</itunes:subtitle>
<itunes:summary>
<![CDATA[Matthew Cole joins Jeremy for a discussion about their explosive report in The Intercept that Blackwater founder Erik Prince has been pitching a private spy operation to the White House and CIA. Activist and comedian Randy Credico, who has been hit with a subpoena from the House Intelligence Committee investigating Trump and Russia, joins us.&nbsp; Journalist Barrett Brown talks about the FBIs campaign against him and offers a critique of Wikileaks. Singer Amanda Palmer talks about her provocative new video for a cover she did of Pink Floyds “Mother."]]>
</itunes:summary>
<itunes:duration>6260</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[bafb58fc-9d9f-11e7-b8c4-070c14a1debb]]></guid>
<enclosure url="http://traffic.megaphone.fm/PPY9210981870.mp3" length="100160574" type="audio/mpeg" />
</item>
<item>
<title>Very Bad Men</title>
<description>This week on Intercepted: Sen. Chris Murphy blasts the US government for its role in the destruction of Yemen. Jeremy tears apart Thomas Friedmans gross love letter to the Saudi Crown Prince and talks about the bi-partisan war against journalism from Bill Clinton to Donald Trump. The Intercepts Betsy Reed and Buzzfeeds Katie Baker analyze this unprecedented public fight against sexual assaulters. Analysis from Harare, Zimbabwe on the ouster of Robert Mugabe. Comedian Joe Para performs a dramatic reenactment of a secret Snowden document.</description>
<pubDate>Wed, 29 Nov 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>Very Bad Men</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Trump, the Saudi Crown Prince, Sexual Assaulters, and Robert Mugabe</itunes:subtitle>
<itunes:summary>
<![CDATA[This week on Intercepted: Sen. Chris Murphy blasts the US government for its role in the destruction of Yemen. Jeremy tears apart Thomas Friedmans gross love letter to the Saudi Crown Prince and talks about the bi-partisan war against journalism from Bill Clinton to Donald Trump. The Intercepts Betsy Reed and Buzzfeeds Katie Baker analyze this unprecedented public fight against sexual assaulters. Analysis from Harare, Zimbabwe on the ouster of Robert Mugabe. Comedian Joe Para performs a dramatic reenactment of a secret Snowden document.]]>
</itunes:summary>
<itunes:duration>5565</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[baf3e644-9d9f-11e7-b8c4-9f5a004c8b47]]></guid>
<enclosure url="http://traffic.megaphone.fm/PPY5979450332.mp3?updated=1511943682" length="89042024" type="audio/mpeg" />
</item>
<item>
<title>The Distraction in Chief</title>
<description>This week on Intercepted: Rami Khouri breaks down the Saudi agenda in the Middle East, its destruction of Yemen and the bizarre case of the exiled Lebanese prime minister. Aram Roston of Buzzfeed, Spencer Ackerman of the Daily Beast, and The Intercepts Matthew Cole join Jeremy for a discussion on the mysterious death of a Green Beret in Mali and why the CIA and US military are quite content with the Trump presidency. Wikileaks slid into Donald Trump Jr.s DMs. Intercept co-founder Glenn Greenwald analyzes what the messages say and how the media covered the story. And we talk to two newly elected Democrats in Virginia: Lee Carter and Elizabeth Guzman. Donald Trump stars in American Beauty.</description>
<pubDate>Wed, 15 Nov 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>The Distraction in Chief</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>While the media overwhelmingly focuses on Trump and Russia, Yemen is dying, covert ops are spreading and war is raging.</itunes:subtitle>
<itunes:summary>
<![CDATA[This week on Intercepted: Rami Khouri breaks down the Saudi agenda in the Middle East, its destruction of Yemen and the bizarre case of the exiled Lebanese prime minister. Aram Roston of Buzzfeed, Spencer Ackerman of the Daily Beast, and The Intercepts Matthew Cole join Jeremy for a discussion on the mysterious death of a Green Beret in Mali and why the CIA and US military are quite content with the Trump presidency. Wikileaks slid into Donald Trump Jr.s DMs. Intercept co-founder Glenn Greenwald analyzes what the messages say and how the media covered the story. And we talk to two newly elected Democrats in Virginia: Lee Carter and Elizabeth Guzman. Donald Trump stars in American Beauty.]]>
</itunes:summary>
<itunes:duration>5716</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[baec6cf2-9d9f-11e7-b8c4-832adc6b044a]]></guid>
<enclosure url="http://traffic.megaphone.fm/PPY5077597385.mp3" length="91468695" type="audio/mpeg" />
</item>
<item>
<title>Say Hello to My Little Hands</title>
<description>This week on Intercepted: Rep. Ro Khanna calls for a complete end to all U.S. military assistance to Saudi Arabia and the&amp;nbsp; catastrophe in Yemen. The former chief prosecutor at Guantanamo, Col. Morris Davis, blasts Trump over his interference in the case of Army Sergeant Bowe Bergdahl and the recent terror attack in New York. And as the Paradise Papers rock the world of the rich who use offshore banks and law firms, we get analysis from Nomi Prins.</description>
<pubDate>Wed, 08 Nov 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>Say Hello to My Little Hands</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>True (War) Crimes of the Rich and Infamous</itunes:subtitle>
<itunes:summary>
<![CDATA[This week on Intercepted: Rep. Ro Khanna calls for a complete end to all U.S. military assistance to Saudi Arabia and the&nbsp; catastrophe in Yemen. The former chief prosecutor at Guantanamo, Col. Morris Davis, blasts Trump over his interference in the case of Army Sergeant Bowe Bergdahl and the recent terror attack in New York. And as the Paradise Papers rock the world of the rich who use offshore banks and law firms, we get analysis from Nomi Prins.]]>
</itunes:summary>
<itunes:duration>5476</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[bae4af26-9d9f-11e7-b8c4-d7bd1cbbac44]]></guid>
<enclosure url="http://traffic.megaphone.fm/PPY3384065210.mp3" length="87615947" type="audio/mpeg" />
</item>
<item>
<title>Criminal Indictments at Home, Secret Wars Abroad</title>
<description>This week on Intercepted: New York Times reporter Charlie Savage and former federal prosecutor Ken White of Popehat break down the recent indictment and plea deal and what it may mean for Trump. Investigative journalist Nick Turse and Kenya scholar Samar Al-Bulushi take us into the world of US militarism in Africa: secret drone bases, US commandos and Washington-backed African forces operating under the guise of the “war on terror.” Musician Roberto Lange of Helado Negro performs.</description>
<pubDate>Wed, 01 Nov 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>Criminal Indictments at Home, Secret Wars Abroad</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Robert Muellers investigation intensifies as Trump grants the CIA and military new kill powers.</itunes:subtitle>
<itunes:summary>
<![CDATA[This week on Intercepted: New York Times reporter Charlie Savage and former federal prosecutor Ken White of Popehat break down the recent indictment and plea deal and what it may mean for Trump. Investigative journalist Nick Turse and Kenya scholar Samar Al-Bulushi take us into the world of US militarism in Africa: secret drone bases, US commandos and Washington-backed African forces operating under the guise of the “war on terror.” Musician Roberto Lange of Helado Negro performs.]]>
</itunes:summary>
<itunes:duration>4504</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[badd1b62-9d9f-11e7-b8c4-bb0a3510ea9d]]></guid>
<enclosure url="http://traffic.megaphone.fm/PPY9002073032.mp3" length="72073299" type="audio/mpeg" />
</item>
<item>
<title>Mike Pence is The Koch Brothers' Manchurian Candidate</title>
<description>This week on Intercepted: Investigative journalist Jane Mayer exposes the Koch Brother puppet masters behind Vice President Mike Pences rise to power and the ruthless pursuit of corporate profits that put Pence a heartbeat from the presidency.We speak to Chinese dissident and renown artist Ai Weiwei about the humanitarian catastrophe of the 65 million globally displaced migrants and his new documentary, Human Flow. And we end with Deerhoof's Greg Saunier on the songs of “Mountain Moves.”</description>
<pubDate>Wed, 25 Oct 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>Mike Pence is The Koch Brothers' Manchurian Candidate</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>The ruthless pursuit of corporate profits is a heartbeat from the presidency.</itunes:subtitle>
<itunes:summary>
<![CDATA[This week on Intercepted: Investigative journalist Jane Mayer exposes the Koch Brother puppet masters behind Vice President Mike Pences rise to power and the ruthless pursuit of corporate profits that put Pence a heartbeat from the presidency.We speak to Chinese dissident and renown artist Ai Weiwei about the humanitarian catastrophe of the 65 million globally displaced migrants and his new documentary, Human Flow. And we end with Deerhoof's Greg Saunier on the songs of “Mountain Moves.”]]>
</itunes:summary>
<itunes:duration>4458</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[bad56944-9d9f-11e7-b8c4-036f3898314a]]></guid>
<enclosure url="http://traffic.megaphone.fm/PPY6525793662.mp3?updated=1508912939" length="71329332" type="audio/mpeg" />
</item>
<item>
<title>Canada is Racist Too</title>
<description>This week on Intercepted live from Toronto: A recent poll puts activist Desmond Cole in prime position to win the mayorship. We talk to him about Canadas stop and frisk and how Cole would change Toronto. Journalist Naomi Klein warns that the Trudeau and Trump brands may have more in common than expected. And returning Iraqi-Canadian hip-hop artist Narcy gives a powerful live performance.&lt;br&gt;&lt;br&gt;Become a sustaining member! Go to &lt;a href="https://theintercept.com/join"&gt;theintercept.com/join&lt;/a&gt; for more.</description>
<pubDate>Wed, 18 Oct 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>Canada is Racist Too</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Could a young, radical black activist be the next mayor of Toronto?</itunes:subtitle>
<itunes:summary>
<![CDATA[This week on Intercepted live from Toronto: A recent poll puts activist Desmond Cole in prime position to win the mayorship. We talk to him about Canadas stop and frisk and how Cole would change Toronto. Journalist Naomi Klein warns that the Trudeau and Trump brands may have more in common than expected. And returning Iraqi-Canadian hip-hop artist Narcy gives a powerful live performance.<br><br>Become a sustaining member! Go to <a href="https://theintercept.com/join">theintercept.com/join</a> for more.]]>
</itunes:summary>
<itunes:duration>4613</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[bacdc1bc-9d9f-11e7-b8c4-bf06486207e8]]></guid>
<enclosure url="http://traffic.megaphone.fm/PPY1212140419.mp3" length="73809084" type="audio/mpeg" />
</item>
<item>
<title>The White Stuff</title>
<description>Trump sent Mike Pence on a mission to protest black protesters at an NFL game. Acclaimed author and journalist Ta-Nehisi Coates talks about Trump, Obama, Bernie Sanders, Hillary Clinton, the NFL and much more. Mehrsa Baradaran breaks down the roots of economic apartheid in the US, the ongoing impact of slavery on black communities and offers a provocative history of black banks. And the lead singer of Mashrou Leila, Hamed Sinno, talks about being queer and Arab in the Middle East and Trumps America.</description>
<pubDate>Wed, 11 Oct 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>The White Stuff</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Ta-Nehisi Coates talks about Trump, Obama, Bernie Sanders, Hillary Clinton, the NFL and much more.</itunes:subtitle>
<itunes:summary>
<![CDATA[Trump sent Mike Pence on a mission to protest black protesters at an NFL game. Acclaimed author and journalist Ta-Nehisi Coates talks about Trump, Obama, Bernie Sanders, Hillary Clinton, the NFL and much more. Mehrsa Baradaran breaks down the roots of economic apartheid in the US, the ongoing impact of slavery on black communities and offers a provocative history of black banks. And the lead singer of Mashrou Leila, Hamed Sinno, talks about being queer and Arab in the Middle East and Trumps America.]]>
</itunes:summary>
<itunes:duration>5664</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[bac62452-9d9f-11e7-b8c4-17ec33943c11]]></guid>
<enclosure url="http://traffic.megaphone.fm/PPY7057322394.mp3?updated=1507702418" length="90635702" type="audio/mpeg" />
</item>
<item>
<title>Guns Before Country</title>
<description>This week, Jeremy talks about the Coalition of the Killing — gun lobbyists, politicians and weapons manufacturers — the only beneficiaries of the massacre in Las Vegas. Alynda Segarra of the band Hurray for the Riff Raff explores her Puerto Rican roots and performs new songs. Former US Army Ranger Rory Fanning talks about his slain comrade, NFL star-turned soldier Pat Tillman. Historian Jeanne Theoharis shreds the sanitizing of the legacies of Martin Luther King Jr. and Rosa Parks. And Donald Trump takes his love of guns into the Twilight Zone.&lt;br&gt;&lt;br&gt;Support our show — become a member!&amp;nbsp; &lt;a href="http://theintercept.com/join"&gt;theintercept.com/join&lt;/a&gt;&lt;br&gt;&lt;br&gt;Panoply's podcast listener survey: &lt;a href="http://survey.panoply.fm"&gt;survey.panoply.fm&lt;/a&gt;</description>
<pubDate>Wed, 04 Oct 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>Guns Before Country</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Lobbyists, politicians and weapons manufacturers are the only beneficiaries of the massacre in Las Vegas. </itunes:subtitle>
<itunes:summary>
<![CDATA[This week, Jeremy talks about the Coalition of the Killing — gun lobbyists, politicians and weapons manufacturers — the only beneficiaries of the massacre in Las Vegas. Alynda Segarra of the band Hurray for the Riff Raff explores her Puerto Rican roots and performs new songs. Former US Army Ranger Rory Fanning talks about his slain comrade, NFL star-turned soldier Pat Tillman. Historian Jeanne Theoharis shreds the sanitizing of the legacies of Martin Luther King Jr. and Rosa Parks. And Donald Trump takes his love of guns into the Twilight Zone.<br><br>Support our show — become a member!&nbsp; <a href="http://theintercept.com/join">theintercept.com/join</a><br><br>Panoply's podcast listener survey: <a href="http://survey.panoply.fm">survey.panoply.fm</a>]]>
</itunes:summary>
<itunes:duration>4763</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[babd79c4-9d9f-11e7-b8c4-bfa2bf7b2870]]></guid>
<enclosure url="http://traffic.megaphone.fm/PPY1463981678.mp3" length="76216529" type="audio/mpeg" />
</item>
<item>
<title>For Whom the Trump Trolls</title>
<description>This week on Intercepted, physicist David Wright from the Union of Concerned Scientists explains how easy it would be for Trump to launch a nuclear strike. Professor James Fernandez of NYU talks about the Abraham Lincoln Brigade, the 3,000 Americans who tried to stop fascism before it spread in Europe. We speak with the directors of a haunting new film about a terror attack in an Israeli bus station that leads to the brutal mob killing of an innocent Eritrean immigrant. And Donald Trump gets a visit from the two Bobs in his Office Space.</description>
<pubDate>Wed, 27 Sep 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>For Whom the Trump Trolls</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>What the Abraham Lincoln Brigade can teach us about fighting fascism in the 21st century.</itunes:subtitle>
<itunes:summary>
<![CDATA[This week on Intercepted, physicist David Wright from the Union of Concerned Scientists explains how easy it would be for Trump to launch a nuclear strike. Professor James Fernandez of NYU talks about the Abraham Lincoln Brigade, the 3,000 Americans who tried to stop fascism before it spread in Europe. We speak with the directors of a haunting new film about a terror attack in an Israeli bus station that leads to the brutal mob killing of an innocent Eritrean immigrant. And Donald Trump gets a visit from the two Bobs in his Office Space.]]>
</itunes:summary>
<itunes:duration>4754</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[bab3035e-9d9f-11e7-b8c4-a723efdad05b]]></guid>
<enclosure url="http://traffic.megaphone.fm/PPY7212168126.mp3?updated=1506529903" length="76071497" type="audio/mpeg" />
</item>
<item>
<title>'Merican Psycho</title>
<description>Jeremy analyzes Trumps belligerent UN speech and the massive military budget the Democrats just gave him. Journalist Gary Rivlin takes us deep inside the world of the Goldman Sachs executives now working for Trump. Poet Aja Monet performs. The Intercepts Alice Speri investigates the militarization of police and how Israel is training American cops. Plus, Donald Trump stars in American Psycho.</description>
<pubDate>Wed, 20 Sep 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>'Merican Psycho</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump visits the UN and returns some videotapes.</itunes:subtitle>
<itunes:summary>
<![CDATA[Jeremy analyzes Trumps belligerent UN speech and the massive military budget the Democrats just gave him. Journalist Gary Rivlin takes us deep inside the world of the Goldman Sachs executives now working for Trump. Poet Aja Monet performs. The Intercepts Alice Speri investigates the militarization of police and how Israel is training American cops. Plus, Donald Trump stars in American Psycho.]]>
</itunes:summary>
<itunes:duration>4370</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[baa7cb06-9d9f-11e7-b8c4-d7ae2711974f]]></guid>
<enclosure url="http://traffic.megaphone.fm/PPY8078356160.mp3" length="69924570" type="audio/mpeg" />
</item>
<item>
<title>The Super Bowl of Racism</title>
<description>NSA whistleblower Edward Snowden discusses the massive Equifax data breach and allegations of Russian interference in the US election. Commentator Shaun King explains his call for a boycott of the NFL and talks about his campaign to bring violent neo-Nazis to justice. Rapper Open Mike Eagle performs.</description>
<pubDate>Wed, 13 Sep 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>The Super Bowl of Racism</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump loves him some beauty pageants. But he probably wasnt so hot on this years Miss Texas who called him out on neo-Nazi violence.</itunes:subtitle>
<itunes:summary>
<![CDATA[NSA whistleblower Edward Snowden discusses the massive Equifax data breach and allegations of Russian interference in the US election. Commentator Shaun King explains his call for a boycott of the NFL and talks about his campaign to bring violent neo-Nazis to justice. Rapper Open Mike Eagle performs.]]>
</itunes:summary>
<itunes:duration>4171</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[7df4070a-9832-11e7-adac-cb37b05d5e24]]></guid>
<enclosure url="http://traffic.megaphone.fm/PPY6458293736.mp3" length="66738886" type="audio/mpeg" />
</item>
<item>
<title>Atlas Golfed — U.S.-Backed Think Tanks Target Latin America</title>
<description>This week on Intercepted: Jeremy gives an update on the aftermath of Blackwaters 2007 massacre of Iraqi civilians. Intercept reporter Lee Fang lays out how a network of libertarian think tanks called the Atlas Network is insidiously shaping political infrastructure in Latin America. We speak with attorney and former Hugo Chavez adviser Eva Golinger about the Venezuela's political turmoil.And we hear Claudia Lizardo of the Caracas-based band, La Pequeña Revancha, talk about her music and hopes for Venezuela.</description>
<pubDate>Wed, 09 Aug 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump is on his version of a staycation, chilling at his golf course resort in New Jersey and watching FOX News or tweeting non-stop — when hes not golfing or threatening nuclear war.</itunes:subtitle>
<itunes:summary>
<![CDATA[This week on Intercepted: Jeremy gives an update on the aftermath of Blackwaters 2007 massacre of Iraqi civilians. Intercept reporter Lee Fang lays out how a network of libertarian think tanks called the Atlas Network is insidiously shaping political infrastructure in Latin America. We speak with attorney and former Hugo Chavez adviser Eva Golinger about the Venezuela's political turmoil.And we hear Claudia Lizardo of the Caracas-based band, La Pequeña Revancha, talk about her music and hopes for Venezuela.]]>
</itunes:summary>
<itunes:duration>4415</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[7c207a24-e33f-11e6-9438-eb45dcf36a1d]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL5331443769.mp3" length="67527575" type="audio/mpeg" />
</item>
<item>
<title>Pyongyang and the White House Gang</title>
<description>News from the White House this week has been like a twisted mash up of Here Comes Honey Boo Boo, Macbeth, Project Runway and a Mr. Bean movie. Dime-store Sopranos reject Anthony Scaramucci was fired after just 10 days as White House communications director. Reince Priebus is out as chief of staff, Gen. John Kelly is in. And with spiking tensions between the United States and North Korea, we reflect on the history of the region. Plus, The Intercepts Naomi Klein talks to U.K. Labour Party leader Jeremy Corbyn about the lessons the Democratic Party could learn from Corbyns unexpected electoral success.</description>
<pubDate>Wed, 02 Aug 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>With spiking tensions between the U.S. and North Korea, we reflect on the history of the region. And The Intercepts Naomi Klein talks to U.K. Labour Party leader Jeremy Corbyn.</itunes:subtitle>
<itunes:summary>
<![CDATA[News from the White House this week has been like a twisted mash up of Here Comes Honey Boo Boo, Macbeth, Project Runway and a Mr. Bean movie. Dime-store Sopranos reject Anthony Scaramucci was fired after just 10 days as White House communications director. Reince Priebus is out as chief of staff, Gen. John Kelly is in. And with spiking tensions between the United States and North Korea, we reflect on the history of the region. Plus, The Intercepts Naomi Klein talks to U.K. Labour Party leader Jeremy Corbyn about the lessons the Democratic Party could learn from Corbyns unexpected electoral success.]]>
</itunes:summary>
<itunes:duration>3712</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<guid isPermaLink="false"><![CDATA[5850753c-dcf9-11e6-a5a2-a7df163d0693]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL4502761802.mp3" length="56280711" type="audio/mpeg" />
</item>
<item>
<title>Glenn Greenwald on the New Cold War</title>
<description>With all the constant hype about Russia, youd think we were living in a new Cold War. This week on Intercepted: Glenn Greenwald fills in for Jeremy Scahill, and we take a deep dive into the origins and evolution of the Trump-Russia story. Fox News' Tucker Carlson and Glenn find something they can actually agree on (the Democratic establishments Russia hysteria), but diverge on Tuckers coverage of immigration and crime. Russian-American writer Masha Gessen explains how conspiracy thinking is a mirror of the leaders we put in power.</description>
<pubDate>Wed, 26 Jul 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>With all the constant hype about Russia, youd think we were living in a new Cold War.</itunes:subtitle>
<itunes:summary>
<![CDATA[With all the constant hype about Russia, youd think we were living in a new Cold War. This week on Intercepted: Glenn Greenwald fills in for Jeremy Scahill, and we take a deep dive into the origins and evolution of the Trump-Russia story. Fox News' Tucker Carlson and Glenn find something they can actually agree on (the Democratic establishments Russia hysteria), but diverge on Tuckers coverage of immigration and crime. Russian-American writer Masha Gessen explains how conspiracy thinking is a mirror of the leaders we put in power.]]>
</itunes:summary>
<itunes:duration>3565</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<guid isPermaLink="false"><![CDATA[584711b8-dcf9-11e6-a5a2-d7a378461c40]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL8633314507.mp3" length="53935124" type="audio/mpeg" />
</item>
<item>
<title>Veni, Vidi, Tweeti</title>
<description>Donald Trump enjoyed playing fireman and asking where the fire is. Hint: all around you, Mr. President. This week on Intercepted: the famed rebel academic, Alfred McCoy, whose book on narcotrafficking the CIA tried to stop from being published, lays out his meticulously argued theory that the U.S. empire will fall by the year 2030. The Washington Posts media columnist, Margaret Sullivan, talks about Trump ratcheting up the war on whistleblowers and the existence of a free press.</description>
<pubDate>Wed, 19 Jul 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump enjoyed playing fireman and asking where the fire is. Hint: all around you, Mr. President.</itunes:subtitle>
<itunes:summary>
<![CDATA[Donald Trump enjoyed playing fireman and asking where the fire is. Hint: all around you, Mr. President. This week on Intercepted: the famed rebel academic, Alfred McCoy, whose book on narcotrafficking the CIA tried to stop from being published, lays out his meticulously argued theory that the U.S. empire will fall by the year 2030. The Washington Posts media columnist, Margaret Sullivan, talks about Trump ratcheting up the war on whistleblowers and the existence of a free press.]]>
</itunes:summary>
<itunes:duration>4146</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[583dc8f6-dcf9-11e6-a5a2-97233491f3c8]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL4964577496.mp3" length="63216744" type="audio/mpeg" />
</item>
<item>
<title>Dumb, Dumber and Don Jr.</title>
<description>This week on Intercepted: Don Jr. is in the shit throne over a secret meeting he had with a Russian lawyer. Could this be, as many in the media are claiming, the smoking gun of Russia collusion? Intercept co-founder Glenn Greenwald weighs in and debunks a forged NSA document sent to Rachel Maddow. Intercept reporters Alice Speri and Alleen Brown talk about the shadowy mercenary company TigerSwan. We also hear music from Victoria Ruiz of the punk band Downtown Boys.</description>
<pubDate>Wed, 12 Jul 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>The old adage that the cover-up is worse than the crime seems like it was tailored specifically for Donald Trump and his merry band of imbeciles, ideological zealots, and…family members.</itunes:subtitle>
<itunes:summary>
<![CDATA[This week on Intercepted: Don Jr. is in the shit throne over a secret meeting he had with a Russian lawyer. Could this be, as many in the media are claiming, the smoking gun of Russia collusion? Intercept co-founder Glenn Greenwald weighs in and debunks a forged NSA document sent to Rachel Maddow. Intercept reporters Alice Speri and Alleen Brown talk about the shadowy mercenary company TigerSwan. We also hear music from Victoria Ruiz of the punk band Downtown Boys.]]>
</itunes:summary>
<itunes:duration>4059</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[5834b428-dcf9-11e6-a5a2-f7aca16eec6e]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL5169968320.mp3" length="61824940" type="audio/mpeg" />
</item>
<item>
<title>The House of Trump</title>
<description>President Trump said when it comes to health insurance, he would cover everyone. He lied. Meanwhile the Crown Prince of America, Jared Kushner, and Mohammed Bin Salman, Crown Prince of Saudi Arabia, play house with foreign policy. This week: Al Jazeeras Mehdi Hasan fills in for Jeremy Scahill. Intercept reporter Murtaza Hussain and journalist Rula Jebreal discuss the global consequences of the House of Trumps meddling in the Middle East. Historian Tom Holland joins Mehdi for a debate on the role of Islam within the Islamic State. Plus, actor Bill Camp reprises his role as the “SIGINT Philosopher.”</description>
<pubDate>Wed, 28 Jun 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>The royal family of the United States takes some heat as the fate of American healthcare hangs on a few votes. </itunes:subtitle>
<itunes:summary>
<![CDATA[President Trump said when it comes to health insurance, he would cover everyone. He lied. Meanwhile the Crown Prince of America, Jared Kushner, and Mohammed Bin Salman, Crown Prince of Saudi Arabia, play house with foreign policy. This week: Al Jazeeras Mehdi Hasan fills in for Jeremy Scahill. Intercept reporter Murtaza Hussain and journalist Rula Jebreal discuss the global consequences of the House of Trumps meddling in the Middle East. Historian Tom Holland joins Mehdi for a debate on the role of Islam within the Islamic State. Plus, actor Bill Camp reprises his role as the “SIGINT Philosopher.”]]>
</itunes:summary>
<itunes:duration>3597</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<guid isPermaLink="false"><![CDATA[5825189c-dcf9-11e6-a5a2-3765693ebff5]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL5926659703.mp3" length="54443781" type="audio/mpeg" />
</item>
<item>
<title>Dispatch from the Dirtbag Left</title>
<description>While all eyes in Washington remain focused on the Russia investigation, a Republican firm forgot to secure its invasive personal data on 198 million American voters. This week on Intercepted: We speak to radical librarian Alison Macrina of the Library Freedom Project about the fight against digital surveillance. Sam Biddle gives an update on attacks on U.S. voting systems. And, we speak with one of the rising stars of the “dirtbag left,” Felix Biederman of Chapo Trap House.</description>
<pubDate>Wed, 21 Jun 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Why #resistance Twitter, establishment Democrats and neocon apologists are not leftists.</itunes:subtitle>
<itunes:summary>
<![CDATA[While all eyes in Washington remain focused on the Russia investigation, a Republican firm forgot to secure its invasive personal data on 198 million American voters. This week on Intercepted: We speak to radical librarian Alison Macrina of the Library Freedom Project about the fight against digital surveillance. Sam Biddle gives an update on attacks on U.S. voting systems. And, we speak with one of the rising stars of the “dirtbag left,” Felix Biederman of Chapo Trap House.]]>
</itunes:summary>
<itunes:duration>3540</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[581dd44c-dcf9-11e6-a5a2-03edebf2031b]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL7980248897.mp3" length="53535555" type="audio/mpeg" />
</item>
<item>
<title>The Trump Mixtape — Dantes Inferno meets Disco Inferno</title>
<description>Donald Trump has a great affinity for strongmen and for unquestioned loyalty of those who work for him. This week on Intercepted: Trumps besties in Saudi Arabia convinced him that Qatar is the premiere Arab nation sponsoring terrorism. Amnesty Internationals Sherine Tadros and al Jazeeras Mehdi Hasan analyze the hypocrisy-laden, bizarre crisis. Jeremy discusses the prosecution of an alleged NSA leaker. MSNBCs Chris Hayes talks Russia, Trump, the media and his new book A Colony in a Nation. DJ Spooky imagines a Trump-inspired mash-up of Dantes Inferno and Disco Inferno.</description>
<pubDate>Wed, 14 Jun 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump has made crystal clear that he has a great affinity for strongmen and for unquestioned loyalty of those who work for him. </itunes:subtitle>
<itunes:summary>
<![CDATA[Donald Trump has a great affinity for strongmen and for unquestioned loyalty of those who work for him. This week on Intercepted: Trumps besties in Saudi Arabia convinced him that Qatar is the premiere Arab nation sponsoring terrorism. Amnesty Internationals Sherine Tadros and al Jazeeras Mehdi Hasan analyze the hypocrisy-laden, bizarre crisis. Jeremy discusses the prosecution of an alleged NSA leaker. MSNBCs Chris Hayes talks Russia, Trump, the media and his new book A Colony in a Nation. DJ Spooky imagines a Trump-inspired mash-up of Dantes Inferno and Disco Inferno.]]>
</itunes:summary>
<itunes:duration>4346</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[5815ed86-dcf9-11e6-a5a2-ab3d4ad4b944]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL2441335022.mp3?updated=1497422014" length="66430432" type="audio/mpeg" />
</item>
<item>
<title>The Woman Democrats Love to Hate</title>
<description>The Green Partys Jill Stein has been widely attacked by Democrats simply for running for president. Some blame her for Hillary Clintons loss. This week, Stein strikes back at her critics and reveals the story behind the infamous Moscow dinner where she was seated with Vladimir Putin and Gen. Michael Flynn. The Intercepts DC bureau chief Ryan Grim digs into the contents of a newly published top secret NSA document outlining alleged Russian cyberattacks against software companies that service U.S. elections. And singer-songwriter Damien Jurado performs.</description>
<pubDate>Wed, 07 Jun 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Jill Stein has been widely attacked by Democrats simply for running for president. </itunes:subtitle>
<itunes:summary>
<![CDATA[The Green Partys Jill Stein has been widely attacked by Democrats simply for running for president. Some blame her for Hillary Clintons loss. This week, Stein strikes back at her critics and reveals the story behind the infamous Moscow dinner where she was seated with Vladimir Putin and Gen. Michael Flynn. The Intercepts DC bureau chief Ryan Grim digs into the contents of a newly published top secret NSA document outlining alleged Russian cyberattacks against software companies that service U.S. elections. And singer-songwriter Damien Jurado performs.]]>
</itunes:summary>
<itunes:duration>3693</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[580e21d2-dcf9-11e6-a5a2-53fae963a8d5]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL5889277506.mp3?updated=1496817965" length="55977273" type="audio/mpeg" />
</item>
<item>
<title>There's Something About Jared</title>
<description>This week, the scandal spotlight shines on Trumps influential (and strangely quiet) son-in-law. We talk to national security correspondent Spencer Ackerman of The Daily Beast about Jared Kushners alleged meetings with Russian officials to establish back channel communications. Organizer and scholar Mariame Kaba offers a peoples history of prisons in the US and the politicians—both Democrats and Republicans—who have made them what they are today. And we hear an incredible rendition of “The Partisan” from composers and musicians Leo Heiblum of Mexico and Tenzin Choegyal of Tibet.&amp;nbsp;</description>
<pubDate>Wed, 31 May 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Jared Kushner is sort of like Donald Trumps less savvy version of Don Corleones consigliere. But did he make the Russians an offer they couldnt refuse?</itunes:subtitle>
<itunes:summary>
<![CDATA[This week, the scandal spotlight shines on Trumps influential (and strangely quiet) son-in-law. We talk to national security correspondent Spencer Ackerman of The Daily Beast about Jared Kushners alleged meetings with Russian officials to establish back channel communications. Organizer and scholar Mariame Kaba offers a peoples history of prisons in the US and the politicians—both Democrats and Republicans—who have made them what they are today. And we hear an incredible rendition of “The Partisan” from composers and musicians Leo Heiblum of Mexico and Tenzin Choegyal of Tibet.&nbsp;]]>
</itunes:summary>
<itunes:duration>3762</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[5807254e-dcf9-11e6-a5a2-cb45327dca79]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL3830941587.mp3" length="57086537" type="audio/mpeg" />
</item>
<item>
<title>Donald Trump and his League of Extraordinary Despots</title>
<description>This week, Donald Trump stood in a sea of tyrants and joined in a bizarre group petting of a glowing white orb. Professor Asad AbuKhalil dissects Trumps summit in Saudi Arabia and the role Trumps friends in the Middle East play in fueling such horrors as the attack on Manchester. The Intercepts new DC bureau chief, Ryan Grim, and national security reporter Matthew Cole discuss Gen. Michael Flynn and whether anyone in the Trump administration realizes how insane their boss is. And Steve Earle performs live.</description>
<pubDate>Wed, 24 May 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>This week, Donald Trump stood in a sea of tyrants and joined in a bizarre group petting of a glowing white orb.</itunes:subtitle>
<itunes:summary>
<![CDATA[This week, Donald Trump stood in a sea of tyrants and joined in a bizarre group petting of a glowing white orb. Professor Asad AbuKhalil dissects Trumps summit in Saudi Arabia and the role Trumps friends in the Middle East play in fueling such horrors as the attack on Manchester. The Intercepts new DC bureau chief, Ryan Grim, and national security reporter Matthew Cole discuss Gen. Michael Flynn and whether anyone in the Trump administration realizes how insane their boss is. And Steve Earle performs live.]]>
</itunes:summary>
<itunes:duration>4198</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57ffd3e8-dcf9-11e6-a5a2-17ed73ff2f09]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL3575958410.mp3" length="64048065" type="audio/mpeg" />
</item>
<item>
<title>Donald and the Terrible, Horrible, No Good, Very Bad Presidency</title>
<description>Donald Trump is spectacularly bad at being president. This week on Intercepted, investigative journalist Marcy Wheeler and The Intercepts Glenn Greenwald analyze the latest insanity emanating from the White House. Pulitzer Prize-winning journalist Tim Weiner and Intercept writer Trevor Aaronson discuss the firing of James Comey and debate his FBI legacy. And Palestinian author and journalist Rula Jebreal explains why President Trump is going to Saudi Arabia and Israel on his first international trip.</description>
<pubDate>Wed, 17 May 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump is spectacularly bad at being president. </itunes:subtitle>
<itunes:summary>
<![CDATA[Donald Trump is spectacularly bad at being president. This week on Intercepted, investigative journalist Marcy Wheeler and The Intercepts Glenn Greenwald analyze the latest insanity emanating from the White House. Pulitzer Prize-winning journalist Tim Weiner and Intercept writer Trevor Aaronson discuss the firing of James Comey and debate his FBI legacy. And Palestinian author and journalist Rula Jebreal explains why President Trump is going to Saudi Arabia and Israel on his first international trip.]]>
</itunes:summary>
<itunes:duration>3861</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57f826de-dcf9-11e6-a5a2-ff41a0b1698e]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL3660243774.mp3" length="58666422" type="audio/mpeg" />
</item>
<item>
<title>James Comey, Chelsea Manning and the secrets America keeps</title>
<description>Donald Trumps complicated relationship with FBI Director James Comey came to a shocking conclusion in Tuesday nights episode of American shitshow. Glenn Greenwald analyzes Comeys firing. Next week, Chelsea Manning will be freed from prison. We hear exclusive audio from her trial and talk to journalist Alexa OBrien. And French civil liberties activist Yasser Louati says despite her defeat in the presidential election, many of Marine Le Pens ideas are already embedded in mainstream French politics. And a premiere track from hip-hop artists MC Sole and DJ Pain 1.</description>
<pubDate>Wed, 10 May 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trumps complicated relationship with FBI Director James Comey came to a shocking conclusion in Tuesday nights episode of American shitshow.</itunes:subtitle>
<itunes:summary>
<![CDATA[Donald Trumps complicated relationship with FBI Director James Comey came to a shocking conclusion in Tuesday nights episode of American shitshow. Glenn Greenwald analyzes Comeys firing. Next week, Chelsea Manning will be freed from prison. We hear exclusive audio from her trial and talk to journalist Alexa OBrien. And French civil liberties activist Yasser Louati says despite her defeat in the presidential election, many of Marine Le Pens ideas are already embedded in mainstream French politics. And a premiere track from hip-hop artists MC Sole and DJ Pain 1.]]>
</itunes:summary>
<itunes:duration>4197</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57ef98d4-dcf9-11e6-a5a2-374c19bb24e7]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL5670631624.mp3" length="64045557" type="audio/mpeg" />
</item>
<item>
<title>BONUS: Jeremy talks Milo on Politically Re-Active</title>
<description>We're still a week away from the beginning of season two, but here's a taster of Jeremy's interview on our sister podcast, Politically Re-Active. Jeremy clears the air on his cancelled appearance on "Real Time with Bill Maher" with hosts W. Kamau Bell and Hari Kondabolu, and much more. To hear the full interview, subscribe to Politically Re-Active or head to politicallyreactive.com.</description>
<pubDate>Wed, 03 May 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle />
<itunes:summary>
<![CDATA[We're still a week away from the beginning of season two, but here's a taster of Jeremy's interview on our sister podcast, Politically Re-Active. Jeremy clears the air on his cancelled appearance on "Real Time with Bill Maher" with hosts W. Kamau Bell and Hari Kondabolu, and much more. To hear the full interview, subscribe to Politically Re-Active or head to politicallyreactive.com.]]>
</itunes:summary>
<itunes:duration>692</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[a940d60e-2fb9-11e7-8fb4-4b8f8bf5bfe4]]></guid>
<enclosure url="http://traffic.megaphone.fm/PPY5034885459.mp3" length="11072574" type="audio/mpeg" />
</item>
<item>
<title>Wikileaks vs the CIA</title>
<description>Wikileaks founder Julian Assange hits back at Trumps CIA director Mike Pompeo after Pompeo accused Wikileaks of being a “hostile non-state intelligence agency.” In a wide-ranging interview, Assange discusses the allegations Wikileaks was abetted by Russian intelligence in its publication of DNC emails, and the new-found admiration for him by FOX News and Donald Trump. Also, why Assange believes he and Hillary Clinton may get along if they ever met in person. And we premiere an unreleased song by Tom Morello of Rage Against the Machine.</description>
<pubDate>Wed, 19 Apr 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Julian Assange hits back at Trumps CIA director Mike Pompeo after Pompeo accused Wikileaks of being a “hostile non-state intelligence agency.”</itunes:subtitle>
<itunes:summary>
<![CDATA[Wikileaks founder Julian Assange hits back at Trumps CIA director Mike Pompeo after Pompeo accused Wikileaks of being a “hostile non-state intelligence agency.” In a wide-ranging interview, Assange discusses the allegations Wikileaks was abetted by Russian intelligence in its publication of DNC emails, and the new-found admiration for him by FOX News and Donald Trump. Also, why Assange believes he and Hillary Clinton may get along if they ever met in person. And we premiere an unreleased song by Tom Morello of Rage Against the Machine.]]>
</itunes:summary>
<itunes:duration>3901</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57e86f28-dcf9-11e6-a5a2-3f3b6bf611af]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL5660744294.mp3" length="59298377" type="audio/mpeg" />
</item>
<item>
<title>The Emperors New Cruise Missiles</title>
<description>Nothing brings warmongers, hawks and elites from both parties closer than a cruise missile strike. This weeks Intercepted will piss off Assad supporters and the Democrats and Republicans fawning over Trumps newest war. Former Congressman Dennis Kucinich questions the official story on the chemical weapons attack. Murtaza Hussain on what Assad gains by using chemical weapons. And, Maher Arar is a Syrian-born Canadian engineer who was kidnapped at JFK airport by US operatives after 9/11 and rendered to Syria and tortured by Assads agents. Arar says he opposes Assad and US intervention. All that and a bucket of media stupidity to celebrate beautiful missiles.</description>
<pubDate>Wed, 12 Apr 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Nothing brings warmongers, hawks and elites from both parties closer than a cruise missile strike.</itunes:subtitle>
<itunes:summary>
<![CDATA[Nothing brings warmongers, hawks and elites from both parties closer than a cruise missile strike. This weeks Intercepted will piss off Assad supporters and the Democrats and Republicans fawning over Trumps newest war. Former Congressman Dennis Kucinich questions the official story on the chemical weapons attack. Murtaza Hussain on what Assad gains by using chemical weapons. And, Maher Arar is a Syrian-born Canadian engineer who was kidnapped at JFK airport by US operatives after 9/11 and rendered to Syria and tortured by Assads agents. Arar says he opposes Assad and US intervention. All that and a bucket of media stupidity to celebrate beautiful missiles.]]>
</itunes:summary>
<itunes:duration>3764</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57e131d6-dcf9-11e6-a5a2-efc4038c6546]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL8700626063.mp3" length="57118720" type="audio/mpeg" />
</item>
<item>
<title>Trump's Secret Prince</title>
<description>Erik Prince—the most infamous mercenary in modern U.S. history—is Trumps secret emissary. This week, an exclusive interview with Rep. Jan Schakowsky, who has fought a decades-long battle against Prince. Tavis Smiley talks about the “Santa Claus-ification” of Dr. Martin Luther King Jr. on the 50th anniversary of Kings militant speech against the Vietnam War. Rep. Barbara Lee reflects on her own historic anti-war speech, delivered three days after 9/11. And Vice President Pence, who cant be alone in a room with a woman who is not his wife, goes Psycho.&lt;br&gt;&lt;br&gt;&lt;em&gt;Please take a moment to fill out Panoply's survey about the shows you listen to, love, and what else you'd like to hear: &lt;/em&gt;&lt;a href="http://survey.panoply.fm"&gt;&lt;em&gt;survey.panoply.fm&lt;/em&gt;&lt;/a&gt;&lt;em&gt;.&amp;nbsp; Many thanks!&lt;/em&gt;</description>
<pubDate>Wed, 05 Apr 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Erik Prince is the most infamous mercenary in modern U.S. history. Hes also Trumps shadow advisor and secret emissary.</itunes:subtitle>
<itunes:summary>
<![CDATA[Erik Prince—the most infamous mercenary in modern U.S. history—is Trumps secret emissary. This week, an exclusive interview with Rep. Jan Schakowsky, who has fought a decades-long battle against Prince. Tavis Smiley talks about the “Santa Claus-ification” of Dr. Martin Luther King Jr. on the 50th anniversary of Kings militant speech against the Vietnam War. Rep. Barbara Lee reflects on her own historic anti-war speech, delivered three days after 9/11. And Vice President Pence, who cant be alone in a room with a woman who is not his wife, goes Psycho.<br><br><em>Please take a moment to fill out Panoply's survey about the shows you listen to, love, and what else you'd like to hear: </em><a href="http://survey.panoply.fm"><em>survey.panoply.fm</em></a><em>.&nbsp; Many thanks!</em>]]>
</itunes:summary>
<itunes:duration>3623</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57da1dce-dcf9-11e6-a5a2-2fa5756ae4a7]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL7737191155.mp3?updated=1491374970" length="54858396" type="audio/mpeg" />
</item>
<item>
<title>Trump Declares War on the Planet</title>
<description>Donald Trump officially rejects climate change and unofficially declares war on planet Earth. Naomi Klein takes us on a terrifying journey into Trumps real life version of The Purge. Boots Riley of The Coup discusses Trump and hip hop and performs. Murtaza Hussain talks about the US bombings in Iraq and Syria that have killed 1,000 civilians in one month. And, we talk to the developer of an app that tracks US drone strikes that Apple has censored 13 times.</description>
<pubDate>Wed, 29 Mar 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump officially rejects climate change and unofficially declares war on planet Earth.</itunes:subtitle>
<itunes:summary>
<![CDATA[Donald Trump officially rejects climate change and unofficially declares war on planet Earth. Naomi Klein takes us on a terrifying journey into Trumps real life version of The Purge. Boots Riley of The Coup discusses Trump and hip hop and performs. Murtaza Hussain talks about the US bombings in Iraq and Syria that have killed 1,000 civilians in one month. And, we talk to the developer of an app that tracks US drone strikes that Apple has censored 13 times.]]>
</itunes:summary>
<itunes:duration>3512</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57d2f170-dcf9-11e6-a5a2-5fc4825a8119]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL9529758061.mp3" length="53079980" type="audio/mpeg" />
</item>
<item>
<title>Could Trump Start World War III?</title>
<description>Donald Trump has not started any new wars… yet. But his administration is pouring gasoline on several initiated by his predecessors. This week on Intercepted: US forces are deploying in Syria, as drone strikes expand in Yemen. And Russia and Iran loom over everything. We talk to veteran war correspondents Anand Gopal and Iona Craig. Glenn Greenwald analyzes James Comeys testimony on Capitol Hill and exposes a major lie spread about Edward Snowden. Actor William Camp “stars” in the real life story of the spy who became “the Socrates of the NSA.”</description>
<pubDate>Wed, 22 Mar 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump has not started any new wars… yet. But his administration is pouring gasoline on several initiated by his predecessors. </itunes:subtitle>
<itunes:summary>
<![CDATA[Donald Trump has not started any new wars… yet. But his administration is pouring gasoline on several initiated by his predecessors. This week on Intercepted: US forces are deploying in Syria, as drone strikes expand in Yemen. And Russia and Iran loom over everything. We talk to veteran war correspondents Anand Gopal and Iona Craig. Glenn Greenwald analyzes James Comeys testimony on Capitol Hill and exposes a major lie spread about Edward Snowden. Actor William Camp “stars” in the real life story of the spy who became “the Socrates of the NSA.”]]>
</itunes:summary>
<itunes:duration>3683</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57cc3f10-dcf9-11e6-a5a2-4fe59e09c4e9]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL9134059577.mp3" length="55811761" type="audio/mpeg" />
</item>
<item>
<title>Snowden vs. Trump</title>
<description>This week, Intercepted is live from the SXSW Festival in Austin. Edward Snowden joins us via video feed from Moscow. He discusses Trumps allegations of Obamas wiretapping, analyzes some of the CIAs hacking capabilities, and blasts critics who accuse him of being a Russian agent. And we talk to Libyan-American hip hop artist Kayem, who was forced to keep a low profile the past several years after multiple detentions and visits from the FBI. He shares some verses with Intercepted.</description>
<pubDate>Wed, 15 Mar 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Intercepted is live from the SXSW Festival in Austin with Edward Snowden joining via video feed from Moscow. </itunes:subtitle>
<itunes:summary>
<![CDATA[This week, Intercepted is live from the SXSW Festival in Austin. Edward Snowden joins us via video feed from Moscow. He discusses Trumps allegations of Obamas wiretapping, analyzes some of the CIAs hacking capabilities, and blasts critics who accuse him of being a Russian agent. And we talk to Libyan-American hip hop artist Kayem, who was forced to keep a low profile the past several years after multiple detentions and visits from the FBI. He shares some verses with Intercepted.]]>
</itunes:summary>
<itunes:duration>3331</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57c55fa6-dcf9-11e6-a5a2-1f24485c4305]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL3645242256.mp3" length="50191046" type="audio/mpeg" />
</item>
<item>
<title>Ready to Lie</title>
<description>The Notorious B.I.G. famously alleged that federal agents were mad because he was flagrant. Trump also believes he has beef with the Feds, accusing Obama of tapping his phones. The Intercepts Matthew Cole and journalist Marcy Wheeler dissect the accusations and the (curious) denials. Sam Biddle and Josh Begley explain what the CIA hacking docs published by Wikileaks say about our “smart” TVs and phones. Journalist Aura Bogado confronts Trumps assault on undocumented immigrants. Punk band Anti-Flag performs. Plus, Trump “stars” in a scene from Goodfellas. Can he get out of Mar-a-Lago alive?</description>
<pubDate>Wed, 08 Mar 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>The Notorious B.I.G. said federal agents were mad because he was flagrant. President Donald Trump also believes he has beef with the Feds. </itunes:subtitle>
<itunes:summary>
<![CDATA[The Notorious B.I.G. famously alleged that federal agents were mad because he was flagrant. Trump also believes he has beef with the Feds, accusing Obama of tapping his phones. The Intercepts Matthew Cole and journalist Marcy Wheeler dissect the accusations and the (curious) denials. Sam Biddle and Josh Begley explain what the CIA hacking docs published by Wikileaks say about our “smart” TVs and phones. Journalist Aura Bogado confronts Trumps assault on undocumented immigrants. Punk band Anti-Flag performs. Plus, Trump “stars” in a scene from Goodfellas. Can he get out of Mar-a-Lago alive?]]>
</itunes:summary>
<itunes:duration>4182</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57be3b36-dcf9-11e6-a5a2-07d3f1f2cb5f]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL3152884319.mp3" length="63798125" type="audio/mpeg" />
</item>
<item>
<title>Donald in Wonderland</title>
<description>Ex-CIA analyst Nada Bakos and former FBI agent Clint Watts explain how Trumps administration could use “alternative intelligence” to justify dangerous military actions. Shane Bauer of Mother Jones breaks down the connections between immigration raids and soaring private prison profits. Plus the world premiere of a song by the Iraqi-Canadian hip hop artist Narcy. We bet you never thought youd hear Steve Bannons name rapped in autotune.</description>
<pubDate>Wed, 01 Mar 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Pundits are heaping praise on his “presidential” speech to Congress. Dont believe the hype.</itunes:subtitle>
<itunes:summary>
<![CDATA[Ex-CIA analyst Nada Bakos and former FBI agent Clint Watts explain how Trumps administration could use “alternative intelligence” to justify dangerous military actions. Shane Bauer of Mother Jones breaks down the connections between immigration raids and soaring private prison profits. Plus the world premiere of a song by the Iraqi-Canadian hip hop artist Narcy. We bet you never thought youd hear Steve Bannons name rapped in autotune.]]>
</itunes:summary>
<itunes:duration>4196</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57b74678-dcf9-11e6-a5a2-4fbc5ae0d0cf]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL5707421213.mp3" length="64025913" type="audio/mpeg" />
</item>
<item>
<title>The Undisciplined Authoritarian</title>
<description>New York Times investigative reporter James Risen breaks down Trumps declaration that journalists are the enemy and analyzes Trumps royal court. ACLU lawyer Chase Strangio and former New England Patriots star Donté Stallworth talk about the war on the transgender community and the rising resistance of pro athletes. Sam Biddle exposes the Trump-connected firm that helped the NSA spy on the world and actor Wallace Shawn stars as an NSA operative who is worried about adversaries spying on his luncheons. Plus music from Anohni.</description>
<pubDate>Wed, 22 Feb 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Journalist James Risen faced imprisonment under Obamas Justice Department and is preparing to do battle with Donald Trump.</itunes:subtitle>
<itunes:summary>
<![CDATA[New York Times investigative reporter James Risen breaks down Trumps declaration that journalists are the enemy and analyzes Trumps royal court. ACLU lawyer Chase Strangio and former New England Patriots star Donté Stallworth talk about the war on the transgender community and the rising resistance of pro athletes. Sam Biddle exposes the Trump-connected firm that helped the NSA spy on the world and actor Wallace Shawn stars as an NSA operative who is worried about adversaries spying on his luncheons. Plus music from Anohni.]]>
</itunes:summary>
<itunes:duration>4209</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57b018d0-dcf9-11e6-a5a2-e736fa72fede]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL3910130795.mp3" length="64229877" type="audio/mpeg" />
</item>
<item>
<title>We Are All in Trumps Hunger Games Now</title>
<description>The first contestant in Donald Trumps reality administration has left the West Wing. This week, Glenn Greenwald offers some provocative pushback on the Russia fear-mongering surrounding Gen. Michael Flynns resignation (or firing). Naomi Klein walks the dark aisles of the Trump family department store. Former Congresswoman Liz Holtzman, a key figure in the impeachment of Richard Nixon, explains how impeachment actually works. And Hina Shamsi of the ACLU recounts her interrogation at the border. Plus a performance from Jedi Mind Tricks.&amp;nbsp;</description>
<pubDate>Wed, 15 Feb 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>As General Flynn Falls, Glenn Greenwald Blasts the Bipartisan Hypocrisy and Naomi Klein Brands Trump</itunes:subtitle>
<itunes:summary>
<![CDATA[The first contestant in Donald Trumps reality administration has left the West Wing. This week, Glenn Greenwald offers some provocative pushback on the Russia fear-mongering surrounding Gen. Michael Flynns resignation (or firing). Naomi Klein walks the dark aisles of the Trump family department store. Former Congresswoman Liz Holtzman, a key figure in the impeachment of Richard Nixon, explains how impeachment actually works. And Hina Shamsi of the ACLU recounts her interrogation at the border. Plus a performance from Jedi Mind Tricks.&nbsp;]]>
</itunes:summary>
<itunes:duration>3858</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57a87fd0-dcf9-11e6-a5a2-af85a8453351]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL5616910839.mp3" length="58608326" type="audio/mpeg" />
</item>
<item>
<title>Trump's Cabinet of Killers and Why Orange is the New Anti-Black</title>
<description>This week, investigative reporter Allan Nairn breaks down Trump's relationship with the CIA and the killer assembly of neocons and right-wing conspiracists running the U.S. war machine. Princeton professor Keeanga Yamahtta-Taylor dismantles Obama's problematic legacy and offers strategic advice for resisting Trump. The Intercept's own distinguished alt-historian, Jon Schwarz, offers a lesson on the origins of presidential executive orders. And Kimya Dawson gives a raw performance of a new song about racism and the police state.</description>
<pubDate>Wed, 08 Feb 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Less than a month into the new administration, and not even a presidential bath robe can protect President Trump's orange from becoming the new anti-black. </itunes:subtitle>
<itunes:summary>
<![CDATA[This week, investigative reporter Allan Nairn breaks down Trump's relationship with the CIA and the killer assembly of neocons and right-wing conspiracists running the U.S. war machine. Princeton professor Keeanga Yamahtta-Taylor dismantles Obama's problematic legacy and offers strategic advice for resisting Trump. The Intercept's own distinguished alt-historian, Jon Schwarz, offers a lesson on the origins of presidential executive orders. And Kimya Dawson gives a raw performance of a new song about racism and the police state.]]>
</itunes:summary>
<itunes:duration>3752</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57a133b0-dcf9-11e6-a5a2-9f64a29807d9]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL7005027452.mp3" length="56920189" type="audio/mpeg" />
</item>
<item>
<title>Trump Week Two: The Rise of Chief Yookeroo</title>
<description>Donald Trump is signing executive orders like autographed pictures. This week on Intercepted: Two former senior FBI agents blast the “Muslim ban” and Trumps campaign to make torture great again. Constitutional rights lawyers dissect the (il)legalities of Trumps orders. Rep. Barbara Lee confronts the president's terrifying approach to government.&amp;nbsp; New secret documents reveal how Trump could resurrect J. Edgar Hoovers legacy. Brother Ali freestyles a verse, and Peter Sarsgaard stars in the bizarre true story of an NSA operative with vacation tips for deploying to Guantanamo.&amp;nbsp;</description>
<pubDate>Wed, 01 Feb 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump is signing executive orders like autographed pictures. But this isn't a reality show.</itunes:subtitle>
<itunes:summary>
<![CDATA[Donald Trump is signing executive orders like autographed pictures. This week on Intercepted: Two former senior FBI agents blast the “Muslim ban” and Trumps campaign to make torture great again. Constitutional rights lawyers dissect the (il)legalities of Trumps orders. Rep. Barbara Lee confronts the president's terrifying approach to government.&nbsp; New secret documents reveal how Trump could resurrect J. Edgar Hoovers legacy. Brother Ali freestyles a verse, and Peter Sarsgaard stars in the bizarre true story of an NSA operative with vacation tips for deploying to Guantanamo.&nbsp;]]>
</itunes:summary>
<itunes:duration>3358</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57996266-dcf9-11e6-a5a2-4ff22525cee4]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL4823102330.mp3?updated=1485937504" length="50611513" type="audio/mpeg" />
</item>
<item>
<title>The Clock Strikes Thirteen, Donald Trump is President</title>
<description>The clock struck thirteen on January 20, Donald Trump is the president of the United States and episode one of Intercepted is here. Intercept co-founder Glenn Greenwald and editor-in-chief Betsy Reed join Jeremy Scahill for a discussion on the crazy apocalyptic present. They break down Trumps attacks on the media, that insane speech he gave at the CIA and the state of the Democratic party. Naomi Klein sends in a dispatch from the Womens March on Washington. Jeremy goes deep into the secretive world of Seymour Hershs kitchen, and shoots the shit with the legendary Pulitzer Prize-winning journalist about why he calls Trump a “circuit breaker." And we hear a spoken word performance from hip-hop artist Immortal Technique.&amp;nbsp;</description>
<pubDate>Wed, 25 Jan 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>The clock struck thirteen on January 20, Donald Trump is the president of the United States and Episode One of Intercepted is here.</itunes:subtitle>
<itunes:summary>
<![CDATA[The clock struck thirteen on January 20, Donald Trump is the president of the United States and episode one of Intercepted is here. Intercept co-founder Glenn Greenwald and editor-in-chief Betsy Reed join Jeremy Scahill for a discussion on the crazy apocalyptic present. They break down Trumps attacks on the media, that insane speech he gave at the CIA and the state of the Democratic party. Naomi Klein sends in a dispatch from the Womens March on Washington. Jeremy goes deep into the secretive world of Seymour Hershs kitchen, and shoots the shit with the legendary Pulitzer Prize-winning journalist about why he calls Trump a “circuit breaker." And we hear a spoken word performance from hip-hop artist Immortal Technique.&nbsp;]]>
</itunes:summary>
<itunes:duration>3433</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57913302-dcf9-11e6-a5a2-87c6a559fb64]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL1844876464.mp3" length="51822341" type="audio/mpeg" />
</item>
<item>
<title>Introducing Intercepted with Jeremy Scahill</title>
<description>Hear a preview of Intercepted, a new podcast coming January 25 from the people behind the fearless, adversarial journalism of The Intercept. Every week, host Jeremy Scahill will discuss the crucial issues of our time with fellow reporters, and outspoken writers, artists and thinkers.</description>
<pubDate>Fri, 13 Jan 2017 18:38:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>A preview of Intercepted, a new podcast coming January 25.</itunes:subtitle>
<itunes:summary>
<![CDATA[Hear a preview of Intercepted, a new podcast coming January 25 from the people behind the fearless, adversarial journalism of The Intercept. Every week, host Jeremy Scahill will discuss the crucial issues of our time with fellow reporters, and outspoken writers, artists and thinkers.]]>
</itunes:summary>
<itunes:duration>200</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<guid isPermaLink="false"><![CDATA[e6dc75b4-d9b9-11e6-9bea-d73080315ad2]]></guid>
<enclosure url="http://traffic.megaphone.fm/FL8608731318.mp3?updated=1484685184" length="3202403" type="audio/mpeg" />
</item>
</channel>
</rss>
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,370 @@
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:art19="https://art19.com/xmlns/rss-extensions/1.0">
<channel>
<title>Steal the Stars</title>
<description>
<![CDATA[<p>The first audio drama from Tor Labs and Gideon Media, Steal the Stars is a gripping noir science fiction thriller in 14 episodes: Forbidden love, a crashed UFO, an alien body, and an impossible heist unlike any ever attempted - scripted by Mac Rogers, the award-winning playwright and writer of the multi-million download The Message and LifeAfter.</p>]]>
</description>
<managingEditor>podcasts@macmillan.com</managingEditor>
<copyright>© Gideon Media</copyright>
<atom:link href="https://rss.art19.com/steal-the-stars" rel="self" type="application/rss+xml"/>
<link>http://tor-labs.com/</link>
<itunes:owner>
<itunes:email>podcasts@macmillan.com</itunes:email>
</itunes:owner>
<itunes:author>Tor Labs / Gideon Media</itunes:author>
<itunes:summary>
<![CDATA[<p>The first audio drama from Tor Labs and Gideon Media, Steal the Stars is a gripping noir science fiction thriller in 14 episodes: Forbidden love, a crashed UFO, an alien body, and an impossible heist unlike any ever attempted - scripted by Mac Rogers, the award-winning playwright and writer of the multi-million download The Message and LifeAfter.</p>]]>
</itunes:summary>
<language>en</language>
<itunes:explicit>yes</itunes:explicit>
<itunes:category text="Arts">
<itunes:category text="Performing Arts"/>
</itunes:category>
<itunes:type>episodic</itunes:type>
<itunes:image href="https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg"/>
<image>
<url>https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg</url>
<link>http://tor-labs.com/</link>
<title>Steal the Stars</title>
</image>
<item>
<title>14: As Fierce, As Colossal, As All-Consuming</title>
<description>
<![CDATA[<p>In an epic final showdown in the Texas desert - as Sierra closes in from all sides - Dak and Matt finally learn the truth about Moss.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is brought to you by Squarespace (Squarespace.com offer code STARS).</p>]]>
</description>
<itunes:title>14: As Fierce, As Colossal, As All-Consuming</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:episode>14</itunes:episode>
<itunes:summary>In an epic final showdown in the Texas desert - as Sierra closes in from all sides - Dak and Matt finally learn the truth about Moss. 
Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel
This week's episode is brought to you by Squarespace (Squarespace.com offer code STARS).</itunes:summary>
<content:encoded>
<![CDATA[<p>In an epic final showdown in the Texas desert - as Sierra closes in from all sides - Dak and Matt finally learn the truth about Moss.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is brought to you by Squarespace (Squarespace.com offer code STARS).</p>]]>
</content:encoded>
<guid isPermaLink="false">gid://art19-episode-locator/V0/Ck8iDIER5Fpmc9Rx4ICwxJAvcYGaJWLRNYRf8IAZu2c</guid>
<pubDate>Wed, 01 Nov 2017 03:31:00 -0000</pubDate>
<itunes:explicit>yes</itunes:explicit>
<itunes:image href="https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg"/>
<itunes:duration>00:43:50</itunes:duration>
<enclosure url="https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/b9a3e534-1070-4e21-91f2-e97d35dc9bf3.mp3" type="audio/mpeg" length="40163369"/>
</item>
<item>
<title>13: Matt-25</title>
<description>
<![CDATA[<p>Dak and Matt hide out for the night with Matt's ex-girlfriend Teresa, leading Dak to an unexpected moment of connection... and another unexpected moment that threatens to ruin everything.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is brought to you by Squarespace (Squarespace.com offer code STARS) and Parcast.</p>]]>
</description>
<itunes:title>13: Matt-25</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:episode>13</itunes:episode>
<itunes:summary>Dak and Matt hide out for the night with Matt's ex-girlfriend Teresa, leading Dak to an unexpected moment of connection... and another unexpected moment that threatens to ruin everything. 
Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel
This week's episode is brought to you by Squarespace (Squarespace.com offer code STARS) and Parcast.</itunes:summary>
<content:encoded>
<![CDATA[<p>Dak and Matt hide out for the night with Matt's ex-girlfriend Teresa, leading Dak to an unexpected moment of connection... and another unexpected moment that threatens to ruin everything.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is brought to you by Squarespace (Squarespace.com offer code STARS) and Parcast.</p>]]>
</content:encoded>
<guid isPermaLink="false">gid://art19-episode-locator/V0/_r5K_8_5HFIXQ1xhv7RHvMvYLOo_0JMnYWHNTaABxuQ</guid>
<pubDate>Wed, 25 Oct 2017 03:35:00 -0000</pubDate>
<itunes:explicit>yes</itunes:explicit>
<itunes:image href="https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg"/>
<itunes:duration>00:36:14</itunes:duration>
<enclosure url="https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/a72503e8-a984-4911-a1dc-e8dcc1a10dfd.mp3" type="audio/mpeg" length="31192711"/>
</item>
<item>
<title>12: All That Sky</title>
<description>
<![CDATA[<p>Dak and Matt are finally on the road with their extraterrestrial contraband, but Sierra is hot on their heels. They're finally forced to take refuge in the last place Dak wants to go.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is brought to you by Squarespace and Audible.</p>]]>
</description>
<itunes:title>12: All That Sky</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:episode>12</itunes:episode>
<itunes:summary>Dak and Matt are finally on the road with their extraterrestrial contraband, but Sierra is hot on their heels. They're finally forced to take refuge in the last place Dak wants to go. 
Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel
This week's episode is brought to you by Squarespace and Audible.</itunes:summary>
<content:encoded>
<![CDATA[<p>Dak and Matt are finally on the road with their extraterrestrial contraband, but Sierra is hot on their heels. They're finally forced to take refuge in the last place Dak wants to go.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is brought to you by Squarespace and Audible.</p>]]>
</content:encoded>
<guid isPermaLink="false">gid://art19-episode-locator/V0/U1ByYJR2Eq124QgYFZ6FH8Pa1vjpo_XeXfr1meRL6hU</guid>
<pubDate>Wed, 18 Oct 2017 03:31:00 -0000</pubDate>
<itunes:explicit>yes</itunes:explicit>
<itunes:image href="https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg"/>
<itunes:duration>00:34:34</itunes:duration>
<enclosure url="https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/cea5f3e8-f82c-439d-89c8-6cbd402b9df9.mp3" type="audio/mpeg" length="27200365"/>
</item>
<item>
<title>11: Checkpoints</title>
<description>
<![CDATA[<p>Getting Moss's body out of Hangar 11 is one thing. Getting it out of Quill Marine is quite another. And there's a lot of checkpoints - and angry people - standing between Dak &amp; Mat and freedom.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is brought to you by Lore on Amazon.</p>]]>
</description>
<itunes:title>11: Checkpoints</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:episode>11</itunes:episode>
<itunes:summary>Getting Moss's body out of Hangar 11 is one thing. Getting it out of Quill Marine is quite another. And there's a lot of checkpoints - and angry people - standing between Dak &amp;amp; Mat and freedom. 
Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel
This week's episode is brought to you by Lore on Amazon.</itunes:summary>
<content:encoded>
<![CDATA[<p>Getting Moss's body out of Hangar 11 is one thing. Getting it out of Quill Marine is quite another. And there's a lot of checkpoints - and angry people - standing between Dak &amp; Mat and freedom.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is brought to you by Lore on Amazon.</p>]]>
</content:encoded>
<guid isPermaLink="false">gid://art19-episode-locator/V0/7-k-JxtB5xrmn6ZuXF7Xz0VTgO_Zm580QQVpQJ2OCq4</guid>
<pubDate>Wed, 11 Oct 2017 03:30:00 -0000</pubDate>
<itunes:explicit>yes</itunes:explicit>
<itunes:image href="https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg"/>
<itunes:duration>00:22:42</itunes:duration>
<enclosure url="https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/3a6e5f73-0b8f-435b-a7c3-b569dd9cedf6.mp3" type="audio/mpeg" length="19402083"/>
</item>
<item>
<title>10: Protocol</title>
<description>
<![CDATA[<p>By the end of this day, Dak and Matt will either be dead... or they'll have just pulled off the most incredible heist of all time.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p>]]>
</description>
<itunes:title>10: Protocol</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:episode>10</itunes:episode>
<itunes:summary>By the end of this day, Dak and Matt will either be dead... or they'll have just pulled off the most incredible heist of all time. 
Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</itunes:summary>
<content:encoded>
<![CDATA[<p>By the end of this day, Dak and Matt will either be dead... or they'll have just pulled off the most incredible heist of all time.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p>]]>
</content:encoded>
<guid isPermaLink="false">gid://art19-episode-locator/V0/zPXgIdxCbanfZNot2NoqCtuA8p6TvneH8uRWjipDeaU</guid>
<pubDate>Wed, 04 Oct 2017 03:30:00 -0000</pubDate>
<itunes:explicit>yes</itunes:explicit>
<itunes:image href="https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg"/>
<itunes:duration>00:25:24</itunes:duration>
<enclosure url="https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/19d8cc64-22cf-4d00-a67f-b55f05d0443b.mp3" type="audio/mpeg" length="21997609"/>
</item>
<item>
<title>9: The Real Stuff</title>
<description>
<![CDATA[<p>Dak has to take two vitally important meetings today, with two of the most powerful men in Washington, DC. And they have to go perfectly: her fate and Matt's hang in the balance.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is sponsored by Spotify, Squarespace (Squarespace.com/stars) and Leesa (Leesa.com/stars)</p>]]>
</description>
<itunes:title>9: The Real Stuff</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:episode>9</itunes:episode>
<itunes:summary>Dak has to take two vitally important meetings today, with two of the most powerful men in Washington, DC. And they have to go perfectly: her fate and Matt's hang in the balance. 
Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel
This week's episode is sponsored by Spotify, Squarespace (Squarespace.com/stars) and Leesa (Leesa.com/stars)</itunes:summary>
<content:encoded>
<![CDATA[<p>Dak has to take two vitally important meetings today, with two of the most powerful men in Washington, DC. And they have to go perfectly: her fate and Matt's hang in the balance.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is sponsored by Spotify, Squarespace (Squarespace.com/stars) and Leesa (Leesa.com/stars)</p>]]>
</content:encoded>
<guid isPermaLink="false">gid://art19-episode-locator/V0/UmSCXUzVugdSQDFnPvUeSuDeLH6cVhXvYXI-YOebnpg</guid>
<pubDate>Wed, 27 Sep 2017 03:30:00 -0000</pubDate>
<itunes:explicit>yes</itunes:explicit>
<itunes:image href="https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg"/>
<itunes:duration>00:28:02</itunes:duration>
<enclosure url="https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/24e08163-7f79-4144-9bd8-0b1978e082cd.mp3" type="audio/mpeg" length="23081795"/>
</item>
<item>
<title>8: The Walls of the Maze</title>
<description>
<![CDATA[<p>Dak has a whole new plan to be with Matt now, a far more dangerous one. One which will carry her across the country to start putting the pieces in place for a perfect getaway.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is sponsored by Spotify and Audible (Audible.com/stealthestars).</p>]]>
</description>
<itunes:title>8: The Walls of the Maze</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:episode>8</itunes:episode>
<itunes:summary>Dak has a whole new plan to be with Matt now, a far more dangerous one. One which will carry her across the country to start putting the pieces in place for a perfect getaway. 
Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel
This week's episode is sponsored by Spotify and Audible (Audible.com/stealthestars).</itunes:summary>
<content:encoded>
<![CDATA[<p>Dak has a whole new plan to be with Matt now, a far more dangerous one. One which will carry her across the country to start putting the pieces in place for a perfect getaway.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is sponsored by Spotify and Audible (Audible.com/stealthestars).</p>]]>
</content:encoded>
<guid isPermaLink="false">gid://art19-episode-locator/V0/JZ3lAioyC2wxIx_HvrP_o7LgjercB6W5UsPbNsMn-ek</guid>
<pubDate>Wed, 20 Sep 2017 03:30:00 -0000</pubDate>
<itunes:explicit>yes</itunes:explicit>
<itunes:image href="https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg"/>
<itunes:duration>00:27:17</itunes:duration>
<enclosure url="https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/e8d9e9c0-f798-4283-ae7e-de5dc3cc7ef8.mp3" type="audio/mpeg" length="22116310"/>
</item>
<item>
<title>7: Altered Voices</title>
<description>
<![CDATA[<p>As Lloyd reveals startling new details about the origin of Object E, Dak and Matt's plan is hit with one brutal setback after another.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is sponsored by Spotify, Squarespace (Squarespace.com/stars) and Leesa (Leesa.com/stars)</p>]]>
</description>
<itunes:title>7: Altered Voices</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:episode>7</itunes:episode>
<itunes:summary>As Lloyd reveals startling new details about the origin of Object E, Dak and Matt's plan is hit with one brutal setback after another. 
Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel
This week's episode is sponsored by Spotify, Squarespace (Squarespace.com/stars) and Leesa (Leesa.com/stars)</itunes:summary>
<content:encoded>
<![CDATA[<p>As Lloyd reveals startling new details about the origin of Object E, Dak and Matt's plan is hit with one brutal setback after another.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is sponsored by Spotify, Squarespace (Squarespace.com/stars) and Leesa (Leesa.com/stars)</p>]]>
</content:encoded>
<guid isPermaLink="false">gid://art19-episode-locator/V0/i4i_I3dr9rxfV96N0rMCUcvDIdAdwV54lTJf29ZorTs</guid>
<pubDate>Wed, 13 Sep 2017 03:15:00 -0000</pubDate>
<itunes:explicit>yes</itunes:explicit>
<itunes:image href="https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg"/>
<itunes:duration>00:31:06</itunes:duration>
<enclosure url="https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/4183c9bc-b272-4a08-8be3-4e49895c7134.mp3" type="audio/mpeg" length="26498194"/>
</item>
<item>
<title>6: 900 Microns</title>
<description>
<![CDATA[<p>As Dak and Matt put their dangerous plan into effect - which involves stealing highly classified footage and meeting in secret with a reporter - Quill Marine gets some devastating news from Sierra.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is brought to you by Spotify.&nbsp;</p>]]>
</description>
<itunes:title>6: 900 Microns</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:episode>6</itunes:episode>
<itunes:summary>As Dak and Matt put their dangerous plan into effect - which involves stealing highly classified footage and meeting in secret with a reporter - Quill Marine gets some devastating news from Sierra. 
Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel
This week's episode is brought to you by Spotify. </itunes:summary>
<content:encoded>
<![CDATA[<p>As Dak and Matt put their dangerous plan into effect - which involves stealing highly classified footage and meeting in secret with a reporter - Quill Marine gets some devastating news from Sierra.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is brought to you by Spotify.&nbsp;</p>]]>
</content:encoded>
<guid isPermaLink="false">gid://art19-episode-locator/V0/9BGMWV_KT25yeSPMNF25Z0OF4-TBcZ2NYzX4znBSzZY</guid>
<pubDate>Wed, 06 Sep 2017 03:15:00 -0000</pubDate>
<itunes:explicit>yes</itunes:explicit>
<itunes:image href="https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg"/>
<itunes:duration>00:28:00</itunes:duration>
<enclosure url="https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/844ec351-9235-4c5b-9e80-012c61924b94.mp3" type="audio/mpeg" length="25448698"/>
</item>
<item>
<title>5: Lifers</title>
<description>
<![CDATA[<p>After Dak and Patty have to carry out the worst part of their job, Dak's romance with Matt reaches another level. With no legal way to be together, they decide on a desperate plan.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is brought to you by Audible (<a href="http://Audible.com/stealthestars" target="_blank">Audible.com/stealthestars</a>).</p>]]>
</description>
<itunes:title>5: Lifers</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:episode>5</itunes:episode>
<itunes:summary>After Dak and Patty have to carry out the worst part of their job, Dak's romance with Matt reaches another level. With no legal way to be together, they decide on a desperate plan. 
Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel
This week's episode is brought to you by Audible (Audible.com/stealthestars).</itunes:summary>
<content:encoded>
<![CDATA[<p>After Dak and Patty have to carry out the worst part of their job, Dak's romance with Matt reaches another level. With no legal way to be together, they decide on a desperate plan.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is brought to you by Audible (<a href="http://Audible.com/stealthestars" target="_blank">Audible.com/stealthestars</a>).</p>]]>
</content:encoded>
<guid isPermaLink="false">gid://art19-episode-locator/V0/P1U26uhQ4m-p9ZvKAM0aaMpXPCxKzYhYoKF8JQl5fcw</guid>
<pubDate>Wed, 30 Aug 2017 03:15:00 -0000</pubDate>
<itunes:explicit>yes</itunes:explicit>
<itunes:image href="https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg"/>
<itunes:duration>00:28:07</itunes:duration>
<enclosure url="https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/2b33e493-1751-4705-881e-7043ba5e1d56.mp3" type="audio/mpeg" length="24593554"/>
</item>
<item>
<title>4: Power Through</title>
<description>
<![CDATA[<p>Today, Trip Haydon - the head of Sierra and the man who holds all their fates in his hand - is visiting Quill Marine. It's the ultimate test of Dak's leadership. There's no margin for even one mistake.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is brought to you by Spotify, Plated (Plated.com/stars, terms apply) and Leesa (Leesa.com/stars).</p>]]>
</description>
<itunes:title>4: Power Through</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:episode>4</itunes:episode>
<itunes:summary>Today, Trip Haydon - the head of Sierra and the man who holds all their fates in his hand - is visiting Quill Marine. It's the ultimate test of Dak's leadership. There's no margin for even one mistake. 
Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel
This week's episode is brought to you by Spotify, Plated (Plated.com/stars, terms apply) and Leesa (Leesa.com/stars).</itunes:summary>
<content:encoded>
<![CDATA[<p>Today, Trip Haydon - the head of Sierra and the man who holds all their fates in his hand - is visiting Quill Marine. It's the ultimate test of Dak's leadership. There's no margin for even one mistake.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is brought to you by Spotify, Plated (Plated.com/stars, terms apply) and Leesa (Leesa.com/stars).</p>]]>
</content:encoded>
<guid isPermaLink="false">gid://art19-episode-locator/V0/CfyNFMaQmlDZhNV4yqiUtKMiD-YdGrgDAHRZDbqlCkk</guid>
<pubDate>Wed, 23 Aug 2017 03:15:00 -0000</pubDate>
<itunes:explicit>yes</itunes:explicit>
<itunes:image href="https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg"/>
<itunes:duration>00:38:48</itunes:duration>
<enclosure url="https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/ea58f0ff-693e-4d00-a133-e137a098b512.mp3" type="audio/mpeg" length="32449515"/>
</item>
<item>
<title>3: Turndown Service</title>
<description>
<![CDATA[<p>When they find out the man who runs Sierra is paying them a surprise visit, Dak and Matt have to carry out a hazardous test that will either bring them closer together or kill them.</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is sponsored by Plated&nbsp;(<a href="http://plated.com/stars" target="_blank">Plated.com/stars</a>.&nbsp;Terms&nbsp;and conditions&nbsp;apply) and Squarespace (<a href="http://Squarespace.com" target="_blank">Squarespace.com</a>, offer code: Stars).</p>]]>
</description>
<itunes:title>3: Turndown Service</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:episode>3</itunes:episode>
<itunes:summary>When they find out the man who runs Sierra is paying them a surprise visit, Dak and Matt have to carry out a hazardous test that will either bring them closer together or kill them.
Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel
This week's episode is sponsored by Plated (Plated.com/stars. Terms and conditions apply) and Squarespace (Squarespace.com, offer code: Stars).</itunes:summary>
<content:encoded>
<![CDATA[<p>When they find out the man who runs Sierra is paying them a surprise visit, Dak and Matt have to carry out a hazardous test that will either bring them closer together or kill them.</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is sponsored by Plated&nbsp;(<a href="http://plated.com/stars" target="_blank">Plated.com/stars</a>.&nbsp;Terms&nbsp;and conditions&nbsp;apply) and Squarespace (<a href="http://Squarespace.com" target="_blank">Squarespace.com</a>, offer code: Stars).</p>]]>
</content:encoded>
<guid isPermaLink="false">gid://art19-episode-locator/V0/KSQYXYJF7bgP95gjvhiI3YRSckvkLtu8FTVgfhM9lrk</guid>
<pubDate>Wed, 16 Aug 2017 03:15:00 -0000</pubDate>
<itunes:explicit>yes</itunes:explicit>
<itunes:image href="https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg"/>
<itunes:duration>00:33:08</itunes:duration>
<enclosure url="https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/0e800c7e-4d3c-4acf-aa3f-8d1e1f508d36.mp3" type="audio/mpeg" length="28936568"/>
</item>
<item>
<title>2: Three Dogs</title>
<description>
<![CDATA[<p>As Dak and Matt try to extinguish their forbidden relationship before it starts, we meet Lloyd, a brilliant xenobiologist who's about to risk his life in a dangerous encounter with the Harp.</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is sponsored by Plated&nbsp;(<a href="http://Plated.com/stars" target="_blank">Plated.com/stars</a>.&nbsp;Terms&nbsp;and conditions&nbsp;apply) and Leesa (<a href="http://Leesa.com/stars" target="_blank">Leesa.com/stars</a>).</p>]]>
</description>
<itunes:title>2: Three Dogs</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:episode>2</itunes:episode>
<itunes:summary>As Dak and Matt try to extinguish their forbidden relationship before it starts, we meet Lloyd, a brilliant xenobiologist who's about to risk his life in a dangerous encounter with the Harp.
Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel
This week's episode is sponsored by Plated (Plated.com/stars. Terms and conditions apply) and Leesa (Leesa.com/stars).</itunes:summary>
<content:encoded>
<![CDATA[<p>As Dak and Matt try to extinguish their forbidden relationship before it starts, we meet Lloyd, a brilliant xenobiologist who's about to risk his life in a dangerous encounter with the Harp.</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is sponsored by Plated&nbsp;(<a href="http://Plated.com/stars" target="_blank">Plated.com/stars</a>.&nbsp;Terms&nbsp;and conditions&nbsp;apply) and Leesa (<a href="http://Leesa.com/stars" target="_blank">Leesa.com/stars</a>).</p>]]>
</content:encoded>
<guid isPermaLink="false">gid://art19-episode-locator/V0/YSwgVQfG9gshqMg7TEpn1q7tjJVYbtM2_Y6zEvjl0Ns</guid>
<pubDate>Wed, 09 Aug 2017 03:15:00 -0000</pubDate>
<itunes:explicit>yes</itunes:explicit>
<itunes:image href="https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg"/>
<itunes:duration>00:31:20</itunes:duration>
<enclosure url="https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/752f5cc4-66ac-4254-9cf1-b1d35991069c.mp3" type="audio/mpeg" length="27205381"/>
</item>
<item>
<title>1: Warm Bodies</title>
<description>
<![CDATA[<p>Dakota Prentiss runs security at the secretive Quill Marine compound, run by private defense conglomerate Sierra. Today she's breaking in a new security staffer, Matt Salem. Which means Matt has to pass a crucial test: how he reacts to the secret at the heart of Quill Marine.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is brought to you by Audible (<a href="http://Audible.com/stealthestars" target="_blank">Audible.com/stealthestars</a>) and Plated (<a href="http://Plated.com/stars" target="_blank">Plated.com/stars</a>. Terms apply).</p>]]>
</description>
<itunes:title>1: Warm Bodies</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:episode>1</itunes:episode>
<itunes:summary>Dakota Prentiss runs security at the secretive Quill Marine compound, run by private defense conglomerate Sierra. Today she's breaking in a new security staffer, Matt Salem. Which means Matt has to pass a crucial test: how he reacts to the secret at the heart of Quill Marine. 
Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel
This week's episode is brought to you by Audible (Audible.com/stealthestars) and Plated (Plated.com/stars. Terms apply).</itunes:summary>
<content:encoded>
<![CDATA[<p>Dakota Prentiss runs security at the secretive Quill Marine compound, run by private defense conglomerate Sierra. Today she's breaking in a new security staffer, Matt Salem. Which means Matt has to pass a crucial test: how he reacts to the secret at the heart of Quill Marine.&nbsp;</p><p>Learn more about Steal the Stars novelization here: http://bit.ly/STSNovel</p><p>This week's episode is brought to you by Audible (<a href="http://Audible.com/stealthestars" target="_blank">Audible.com/stealthestars</a>) and Plated (<a href="http://Plated.com/stars" target="_blank">Plated.com/stars</a>. Terms apply).</p>]]>
</content:encoded>
<guid isPermaLink="false">gid://art19-episode-locator/V0/iKPHluojN_2HVUBDhz25sYOzeMO1xHLITg1JmTyE8nQ</guid>
<pubDate>Wed, 02 Aug 2017 03:00:00 -0000</pubDate>
<itunes:explicit>yes</itunes:explicit>
<itunes:image href="https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg"/>
<itunes:duration>00:27:06</itunes:duration>
<enclosure url="https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/f8c867ee-f954-46de-8bda-017305474e40.mp3" type="audio/mpeg" length="21696679"/>
</item>
<item>
<title>Introducing Steal the Stars</title>
<description>
<![CDATA[<p>Steal the Stars is the story of Dakota Prentiss and Matt Salem, two government employees guarding the biggest secret in the world: a crashed UFO. Episode 1 goes live on August 2, 2017.</p>]]>
</description>
<itunes:title>Introducing Steal the Stars</itunes:title>
<itunes:episodeType>trailer</itunes:episodeType>
<itunes:summary>Steal the Stars is the story of Dakota Prentiss and Matt Salem, two government employees guarding the biggest secret in the world: a crashed UFO. Episode 1 goes live on August 2, 2017.</itunes:summary>
<content:encoded>
<![CDATA[<p>Steal the Stars is the story of Dakota Prentiss and Matt Salem, two government employees guarding the biggest secret in the world: a crashed UFO. Episode 1 goes live on August 2, 2017.</p>]]>
</content:encoded>
<guid isPermaLink="false">gid://art19-episode-locator/V0/S6kmOE2cviFS0HD-IUYOPRO0fvjTPYmCsMDe5bjABnA</guid>
<pubDate>Tue, 11 Jul 2017 17:14:45 -0000</pubDate>
<itunes:explicit>yes</itunes:explicit>
<itunes:image href="https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg"/>
<itunes:duration>00:01:22</itunes:duration>
<enclosure url="https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/f13b703c-20d9-4ea5-83b6-dbcd2f02351a.mp3" type="audio/mpeg" length="1318661"/>
</item>
</channel>
</rss>
@@ -0,0 +1,578 @@
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:media="http://search.yahoo.com/mrss/" xmlns:sm="https://schema.syndicated.media/core/1.0/">
<channel>
<title>The Tip Off</title>
<description><![CDATA[<p>Welcome to The Tip Off- the podcast where we take you behind the scenes of some of the best investigative journalism from recent years. Each episode well be digging into an investigative scoop- hearing from the journalists behind the work as they tell us about the leads, the dead-ends and of course, the tip offs. Therell be car chases, slammed doors, terrorist cells, meetings in dimly lit bars and cafes, wrangling with despotic regimes and much more. So if youre curious about the fun, complicated detective work that goes into doing great investigative journalism- then this is the podcast for you.</p>]]></description>
<link>http://www.acast.com/thetipoff</link>
<lastBuildDate>Mon, 15 Jan 2018 11:59:56 GMT</lastBuildDate>
<pubDate>Thu, 11 Jan 2018 04:00:00 GMT</pubDate>
<ttl>30</ttl>
<language>en</language>
<copyright><![CDATA[]]></copyright>
<docs>https://www.acast.com/thetipoff</docs>
<image>
<url>https://imagecdn.acast.com/image?h=1500&amp;w=1500&amp;source=http%3A%2F%2Fi1.sndcdn.com%2Favatars-000317856075-a2coqz-original.jpg</url>
<title>The Tip Off</title>
<link>http://www.acast.com/thetipoff</link>
</image>
<itunes:image href="https://imagecdn.acast.com/image?h&#x3D;1500&amp;w&#x3D;1500&amp;source&#x3D;http%3A%2F%2Fi1.sndcdn.com%2Favatars-000317856075-a2coqz-original.jpg" />
<itunes:subtitle><![CDATA[Welcome to The Tip Off- the podcast where we take…]]></itunes:subtitle>
<itunes:type>episodic</itunes:type>
<itunes:author>The Tip Off</itunes:author>
<itunes:summary>Welcome to The Tip Off- the podcast where we take you behind the scenes of some of the best investigative journalism from recent years. Each episode well be digging into an investigative scoop- hearing from the journalists behind the work as they tell us about the leads, the dead-ends and of course, the tip offs. Therell be car chases, slammed doors, terrorist cells, meetings in dimly lit bars and cafes, wrangling with despotic regimes and much more. So if youre curious about the fun, complicated detective work that goes into doing great investigative journalism- then this is the podcast for you.</itunes:summary>
<atom:link rel="self" type="application/rss+xml" href="https://rss.acast.com/thetipoff" />
<itunes:owner>
<itunes:name><![CDATA[The Tip Off]]></itunes:name>
<itunes:email>tipoffpodcast@gmail.com</itunes:email>
</itunes:owner>
<itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
<itunes:category text="News &amp; Politics" />
<media:credit role="author">The Tip Off</media:credit>
<media:description type="html"><![CDATA[<p>Welcome to The Tip Off- the podcast where we take you behind the scenes of some of the best investigative journalism from recent years. Each episode well be digging into an investigative scoop- hearing from the journalists behind the work as they tell us about the leads, the dead-ends and of course, the tip offs. Therell be car chases, slammed doors, terrorist cells, meetings in dimly lit bars and cafes, wrangling with despotic regimes and much more. So if youre curious about the fun, complicated detective work that goes into doing great investigative journalism- then this is the podcast for you.</p>]]></media:description>
<item>
<title>Ep.13 Voices in the ether</title>
<itunes:subtitle>When you set out on an investigation you usually start with a hypothesis- an idea that you will test and challenge as you go. But not Paul Myles…
Working for On Our Radar, Paul set out to tell the story of dementia in the UK. Hours spent on trains, ...</itunes:subtitle>
<itunes:summary><![CDATA[When you set out on an investigation you usually start with a hypothesis- an idea that you will test and challenge as you go. But not Paul Myles…
Working for On Our Radar, Paul set out to tell the story of dementia in the UK. Hours spent on trains, workshops around the country and 3D printed phones brought him to Agnes, Melvyn and dozens of others. Together they give a never-before-seen insight into life with the condition.
Read all about it:
https://dementiadiaries.org/
https://www.buzzfeed.com/lukelewis/inspiring-tales-coping-with-dementia?utm_term=.raENZvdoA#.yoaMagBGd
https://www.theguardian.com/society/video/2017/jan/30/dementia-diaries-its-like-trying-to-go-through-a-brick-wall-video
http://www.telegraph.co.uk/science/2016/05/15/dealing-with-dementia-those-living-with-condition-outline-dos-an/
Hosted and produced: Maeve McClenaghan
Music: Dice Muse and Lee Rosevere]]></itunes:summary>
<guid isPermaLink="false"><![CDATA[cd7778b1-e81d-4d45-8fe6-cc712190eabe]]></guid>
<pubDate>Thu, 11 Jan 2018 04:00:00 GMT</pubDate>
<itunes:duration>00:33:24</itunes:duration>
<itunes:keywords></itunes:keywords>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<itunes:season>2</itunes:season>
<itunes:episode>13</itunes:episode>
<itunes:image href="https://imagecdn.acast.com/image?h&#x3D;1500&amp;w&#x3D;1500&amp;source&#x3D;https%3A%2F%2Fmediacdn.acast.com%2Fassets%2Fcd7778b1-e81d-4d45-8fe6-cc712190eabe%2Fcover-image-jc9kl26c-thetipoff_logo_1_.jpg" />
<description><![CDATA[<p>When you set out on an investigation you usually start with a hypothesis- an idea that you will test and challenge as you go. But not Paul Myles… </p><p><br></p><p>Working for On Our Radar, Paul set out to tell the story of dementia in the UK. Hours spent on trains, workshops around the country and 3D printed phones brought him to Agnes, Melvyn and dozens of others. Together they give a never-before-seen insight into life with the condition.</p><p><br></p><p><strong>Read all about it:</strong></p><p><a href="https://dementiadiaries.org/" target="_blank">https://dementiadiaries.org/</a></p><p><br></p><p><a href="https://www.buzzfeed.com/lukelewis/inspiring-tales-coping-with-dementia?utm_term=.raENZvdoA#.yoaMagBGd" target="_blank">https://www.buzzfeed.com/lukelewis/inspiring-tales-coping-with-dementia?utm_term=.raENZvdoA#.yoaMagBGd</a></p><p><br></p><p><a href="https://www.theguardian.com/society/video/2017/jan/30/dementia-diaries-its-like-trying-to-go-through-a-brick-wall-video" target="_blank">https://www.theguardian.com/society/video/2017/jan/30/dementia-diaries-its-like-trying-to-go-through-a-brick-wall-video</a> </p><p><br></p><p><a href="http://www.telegraph.co.uk/science/2016/05/15/dealing-with-dementia-those-living-with-condition-outline-dos-an/" target="_blank">http://www.telegraph.co.uk/science/2016/05/15/dealing-with-dementia-those-living-with-condition-outline-dos-an/</a></p><p><br></p><p>Hosted and produced: Maeve McClenaghan</p><p><br></p><p>Music: Dice Muse and <a href="http://freemusicarchive.org/music/Lee_Rosevere/Trappist-1/Lee_Rosevere_-_Trappist-1_-_05_Planet_F" target="_blank">Lee Rosevere</a> </p><p><br></p><p><br></p>]]></description>
<link>https://www.acast.com/thetipoff/ep.13voicesintheether</link>
<enclosure url="https://media.acast.com/thetipoff/ep.13voicesintheether/media.mp3" length="56188568" type="audio/mpeg"/>
</item>
<item>
<title>Ep. 12 The sound of news</title>
<itunes:subtitle>Leah Borromeo sees journalism differently to most. Or rather she hears it. Leah and colleagues are working on a project to tell investigative journalism through music.
So Maeve went along to the studio, to hear just exactly what that means.
Read a...</itunes:subtitle>
<itunes:summary><![CDATA[Leah Borromeo sees journalism differently to most. Or rather she hears it. Leah and colleagues are working on a project to tell investigative journalism through music.
So Maeve went along to the studio, to hear just exactly what that means.
Read all about it:
https://www.disobedientfilms.com/if-the-oceans-could-speak
https://www.disobedientfilms.com/climate-symphony
Hosted and produced: Maeve McClenaghan
Music: Dice Muse and Climate Symphony]]></itunes:summary>
<guid isPermaLink="false"><![CDATA[7fd9f024-1fd5-48a1-a96b-a3419da9f754]]></guid>
<pubDate>Thu, 28 Dec 2017 03:00:00 GMT</pubDate>
<itunes:duration>00:36:36</itunes:duration>
<itunes:keywords></itunes:keywords>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<itunes:season>2</itunes:season>
<itunes:episode>12</itunes:episode>
<itunes:image href="https://imagecdn.acast.com/image?h&#x3D;1500&amp;w&#x3D;1500&amp;source&#x3D;https%3A%2F%2Fmediacdn.acast.com%2Fassets%2F7fd9f024-1fd5-48a1-a96b-a3419da9f754%2Fcover-image-jbo1hf03-thetipoff_logo_1_.jpg" />
<description><![CDATA[<p>Leah Borromeo sees journalism differently to most. Or rather she hears it. Leah and colleagues are working on a project to tell investigative journalism through music.</p><p><br></p><p>So Maeve went along to the studio, to hear just exactly what that means. </p><p><br></p><p>Read all about it:</p><p><a href="https://www.disobedientfilms.com/if-the-oceans-could-speak" target="_blank">https://www.disobedientfilms.com/if-the-oceans-could-speak</a></p><p><br></p><p><a href="https://www.disobedientfilms.com/climate-symphony" target="_blank">https://www.disobedientfilms.com/climate-symphony</a> </p><p><br></p><p>Hosted and produced: Maeve McClenaghan</p><p><br></p><p>Music: Dice Muse and Climate Symphony</p><p><br></p><p><br></p>]]></description>
<link>https://www.acast.com/thetipoff/ep.12thesoundofnews</link>
<enclosure url="https://media.acast.com/thetipoff/ep.12thesoundofnews/media.mp3" length="63865436" type="audio/mpeg"/>
</item>
<item>
<title>Ep.11 Putting a price on health</title>
<itunes:subtitle>Ep. 11 Putting a price on health
Billy Kenber set out to look into one story and ended up finding another. Hidden within open datasets was proof of a practice that was costing the NHS hundreds of millions of pounds a year.
Battling to put the piece...</itunes:subtitle>
<itunes:summary><![CDATA[Billy Kenber set out to look into one story and ended up finding another. Hidden within open datasets was proof of a practice that was costing the NHS hundreds of millions of pounds a year.
Battling to put the pieces together in a quagmire of complex pricing structures and regulations understood by very few people, Billy blew the lid of a multi-million pound industry. And in the end one failed hypothesis led to an investigation that would change the law.
Read all about it:
https://www.thetimes.co.uk/article/extortionate-prices-add-260m-to-nhs-drug-bill-8mwtttwdk
https://www.thetimes.co.uk/article/victory-against-rip-off-drug-firms-after-times-investigation-qm6hlmqts
Hosted and produced: Maeve McClenaghan
Music: Dice Muse and Podington Bear]]></itunes:summary>
<guid isPermaLink="false"><![CDATA[2af5efc1-5e6b-446e-9bb3-38704b9392d9]]></guid>
<pubDate>Thu, 14 Dec 2017 04:00:00 GMT</pubDate>
<itunes:duration>00:32:46</itunes:duration>
<itunes:keywords></itunes:keywords>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<itunes:season>2</itunes:season>
<itunes:episode>11</itunes:episode>
<itunes:image href="https://imagecdn.acast.com/image?h&#x3D;1500&amp;w&#x3D;1500&amp;source&#x3D;https%3A%2F%2Fmediacdn.acast.com%2Fassets%2F2af5efc1-5e6b-446e-9bb3-38704b9392d9%2Fcover-image-jb5jim69-thetipoff_logo_1_.jpg" />
<description><![CDATA[<p><strong>Ep. 11 Putting a price on health</strong></p><p><br></p><p>Billy Kenber set out to look into one story and ended up finding another. Hidden within open datasets was proof of a practice that was costing the NHS hundreds of millions of pounds a year.</p><p><br></p><p>Battling to put the pieces together in a quagmire of complex pricing structures and regulations understood by very few people, Billy blew the lid of a multi-million pound industry. And in the end one failed hypothesis led to an investigation that would change the law.</p><p><br></p><p>Read all about it:</p><p><br></p><p><a href="https://www.thetimes.co.uk/article/extortionate-prices-add-260m-to-nhs-drug-bill-8mwtttwdk" target="_blank">https://www.thetimes.co.uk/article/extortionate-prices-add-260m-to-nhs-drug-bill-8mwtttwdk</a> </p><p><a href="https://www.thetimes.co.uk/article/victory-against-rip-off-drug-firms-after-times-investigation-qm6hlmqts" target="_blank">https://www.thetimes.co.uk/article/victory-against-rip-off-drug-firms-after-times-investigation-qm6hlmqts</a> </p><p><br></p><p>Hosted and produced: Maeve McClenaghan</p><p><br></p><p>Music: Dice Muse and <a href="http://freemusicarchive.org/music/Podington_Bear/" target="_blank">Podington Bear</a></p><p><br></p>]]></description>
<link>https://www.acast.com/thetipoff/ep.11puttingapriceonhealth</link>
<enclosure url="https://media.acast.com/thetipoff/ep.11puttingapriceonhealth/media.mp3" length="54656753" type="audio/mpeg"/>
</item>
<item>
<title>Ep. 10 Brown paper envelopes</title>
<itunes:subtitle>Jennifer Williams, of the Manchester Evening News, was hearing horrible stories coming from two hospitals in her patch. Rumour had it, there was a damning report out there... but getting hold of it would be easier said than done.
Sources, FOI battles...</itunes:subtitle>
<itunes:summary><![CDATA[Jennifer Williams, of the Manchester Evening News, was hearing horrible stories coming from two hospitals in her patch. Rumour had it, there was a damning report out there... but getting hold of it would be easier said than done.
Sources, FOI battles and an envelope full of surprises- this is the story of how one reporter revealed mothers and babies dying at a worrying rate.
Read all about it:
http://www.manchestereveningnews.co.uk/news/greater-manchester-news/pennine-acute-maternity-secret-report-12218989
http://www.manchestereveningnews.co.uk/news/greater-manchester-news/pennine-acute-maternity-report-revealed-12220033
Hosted and produced: Maeve McClenaghan
Music: Dice Muse, &nbsp;Komiku, John Spacek and Podington Bear]]></itunes:summary>
<guid isPermaLink="false"><![CDATA[97e601de-45a4-4e6b-bb34-3409081c9202]]></guid>
<pubDate>Thu, 30 Nov 2017 08:45:00 GMT</pubDate>
<itunes:duration>00:34:57</itunes:duration>
<itunes:keywords></itunes:keywords>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<itunes:season>2</itunes:season>
<itunes:episode>10</itunes:episode>
<itunes:image href="https://imagecdn.acast.com/image?h&#x3D;1500&amp;w&#x3D;1500&amp;source&#x3D;https%3A%2F%2Fmediacdn.acast.com%2Fassets%2F97e601de-45a4-4e6b-bb34-3409081c9202%2Fcover-image-jam7up44-thetipoff_logo_1_.jpg" />
<description><![CDATA[<p>Jennifer Williams, of the Manchester Evening News, was hearing horrible stories coming from two hospitals in her patch. Rumour had it, there was a damning report out there... but getting hold of it would be easier said than done.</p><p><br></p><p>Sources, FOI battles and an envelope full of surprises- this is the story of how one reporter revealed mothers and babies dying at a worrying rate.</p><p><br></p><p>Read all about it:</p><p><br></p><p><a href="http://www.manchestereveningnews.co.uk/news/greater-manchester-news/pennine-acute-maternity-secret-report-12218989" target="_blank">http://www.manchestereveningnews.co.uk/news/greater-manchester-news/pennine-acute-maternity-secret-report-12218989</a></p><p><br></p><p><a href="http://www.manchestereveningnews.co.uk/news/greater-manchester-news/pennine-acute-maternity-report-revealed-12220033" target="_blank">http://www.manchestereveningnews.co.uk/news/greater-manchester-news/pennine-acute-maternity-report-revealed-12220033</a></p><p><br></p><p>Hosted and produced: Maeve McClenaghan</p><p><br></p><p>Music: Dice Muse,&nbsp;<a href="http://freemusicarchive.org/music/Komiku/Its_time_for_adventure__vol_3/Komiku_-_Its_time_for_adventure_vol_3_-_09_You_yourself_and_the_main_character" target="_blank">Komiku</a>, <a href="http://freemusicarchive.org/" target="_blank">John Spacek</a> and <a href="http://freemusicarchive.org/music/Podington_Bear/" target="_blank">Podington Bear</a></p>]]></description>
<link>https://www.acast.com/thetipoff/ep.10brownpaperenvelopes</link>
<enclosure url="https://media.acast.com/thetipoff/ep.10brownpaperenvelopes/media.mp3" length="59888557" type="audio/mpeg"/>
</item>
<item>
<title>Ep.9 When the roof came down</title>
<itunes:subtitle>Ep.9 When the roof came down In late July I read a Facebook post that would send me on a three month journey- from town council steps, to bland hotels to dirty council flats- I followed the stories of women fleeing domestic violence only to be let down...</itunes:subtitle>
<itunes:summary><![CDATA[Ep.9 When the roof came down In late July I read a Facebook post that would send me on a three month journey- from town council steps, to bland hotels to dirty council flats- I followed the stories of women fleeing domestic violence only to be let down by the system designed to support them. Meanwhile, a team of journalists all across the country, dug into FOI data, pulled in local council funding bids and surveyed experts on the ground. Together we uncovered a country-wide crisis, with huge cuts to refuge funding and hundreds of vulnerable women turned away. WARNING: This episodes contains descriptions of domestic violence and strong language. If you need to talk to someone about domestic violence contact Women's Aid/Refuge free helpline on 0808 2000 247. If you are in immediate danger, call 999. Read all about it: https://www.thebureauinvestigates.com/stories/2017-10-16/a-system-at-breaking-point https://www.thebureauinvestigates.com/stories/2017-10-16/new-entry https://www.thebureauinvestigates.com/blog/2017-10-19/refuges-at-breaking-point-stories-from-around-the-country Hosted and produced: Maeve McClenaghan Testimony voiced by: Emer O Connor and Stephanie Soh Music: Dice Muse and Komiku http://freemusicarchive.org/music/Komiku/Its_time_for_adventure__vol_3/Komiku_-_Its_time_for_adventure_vol_3_-_09_You_yourself_and_the_main_character]]></itunes:summary>
<guid isPermaLink="false"><![CDATA[tag:soundcloud,2010:tracks/348656618]]></guid>
<pubDate>Thu, 26 Oct 2017 09:16:00 GMT</pubDate>
<itunes:duration>00:46:16</itunes:duration>
<itunes:keywords></itunes:keywords>
<itunes:explicit>yes</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<itunes:image href="https://imagecdn.acast.com/image?h&#x3D;1500&amp;w&#x3D;1500&amp;source&#x3D;https%3A%2F%2Fmediacdn.acast.com%2Fsource%2F945dc34f-f4e6-4921-830a-df050e540722%2Fd320b821-f2ba-4029-b95b-0cb840bfa8d8%2F44cc9c2e-879f-49c6-8b34-4d38d09e85d2%2Fartworks-000248917923-77ja4z-original.jpg" />
<description><![CDATA[<p>Ep.9 When the roof came down In late July I read a Facebook post that would send me on a three month journey- from town council steps, to bland hotels to dirty council flats- I followed the stories of women fleeing domestic violence only to be let down by the system designed to support them. Meanwhile, a team of journalists all across the country, dug into FOI data, pulled in local council funding bids and surveyed experts on the ground. Together we uncovered a country-wide crisis, with huge cuts to refuge funding and hundreds of vulnerable women turned away. WARNING: This episodes contains descriptions of domestic violence and strong language. If you need to talk to someone about domestic violence contact Women's Aid/Refuge free helpline on 0808 2000 247. If you are in immediate danger, call 999. Read all about it: https://www.thebureauinvestigates.com/stories/2017-10-16/a-system-at-breaking-point https://www.thebureauinvestigates.com/stories/2017-10-16/new-entry https://www.thebureauinvestigates.com/blog/2017-10-19/refuges-at-breaking-point-stories-from-around-the-country Hosted and produced: Maeve McClenaghan Testimony voiced by: Emer O Connor and Stephanie Soh Music: Dice Muse and Komiku http://freemusicarchive.org/music/Komiku/Its_time_for_adventure__vol_3/Komiku_-_Its_time_for_adventure_vol_3_-_09_You_yourself_and_the_main_character</p>]]></description>
<link>https://www.acast.com/thetipoff/ep9-when-the-roof-came-down</link>
<enclosure url="https://media.acast.com/thetipoff/ep9-when-the-roof-came-down/media.mp3" length="87063215" type="audio/mpeg"/>
</item>
<item>
<title>Ep.8 The stories untold</title>
<itunes:subtitle>Ep.8 The stories untold
Its one thing breaking a story- but how do you keep reporting a story that unfurls over years and not days?
Rebecca Omonira-Oyekanmi explains how she travelled to the vast refugee camps of Ethiopia before Rossalyn Warren takes...</itunes:subtitle>
<itunes:summary><![CDATA[Ep.8 The stories untold
Its one thing breaking a story- but how do you keep reporting a story that unfurls over years and not days?
Rebecca Omonira-Oyekanmi explains how she travelled to the vast refugee camps of Ethiopia before Rossalyn Warren takes up the baton, reporting from the perilous sea-crossings on the Mediterranean.
Working freelance, both women struggle to do the stories they care about while making a living.
WARNING: This episodes contains descriptions of domestic violence.
Read all about it:
http://www.newstatesman.com/world/africa/2017/03/i-want-try-live-or-die-how-refugees-decide-whether-make-dangerous-trip-europe
http://www.elleuk.com/life-and-culture/culture/longform/a36785/moroccan-teen-girl-fleeing-slavery/
Hosted and produced: Maeve McClenaghan
Music: Dice Muse, Clare Marks and Komiku
Audio of sea rescues from Medicins Sans Frontier
https://soundcloud.com/claremarks]]></itunes:summary>
<guid isPermaLink="false"><![CDATA[tag:soundcloud,2010:tracks/335067535]]></guid>
<pubDate>Thu, 27 Jul 2017 12:53:18 GMT</pubDate>
<itunes:duration>00:41:20</itunes:duration>
<itunes:keywords></itunes:keywords>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<itunes:image href="https://imagecdn.acast.com/image?h&#x3D;1500&amp;w&#x3D;1500&amp;source&#x3D;https%3A%2F%2Fmediacdn.acast.com%2Fsource%2F945dc34f-f4e6-4921-830a-df050e540722%2Fd3c055ed-eb98-42e1-8ef1-e5e201d58a24%2Ffa8e7880-4001-4f1a-b480-e6e04f709f96%2Fartworks-000235413887-wac8v7-original.jpg" />
<description><![CDATA[Ep.8 The stories untold
Its one thing breaking a story- but how do you keep reporting a story that unfurls over years and not days?
Rebecca Omonira-Oyekanmi explains how she travelled to the vast refugee camps of Ethiopia before Rossalyn Warren takes up the baton, reporting from the perilous sea-crossings on the Mediterranean.
Working freelance, both women struggle to do the stories they care about while making a living.
WARNING: This episodes contains descriptions of domestic violence.
Read all about it:
http://www.newstatesman.com/world/africa/2017/03/i-want-try-live-or-die-how-refugees-decide-whether-make-dangerous-trip-europe
http://www.elleuk.com/life-and-culture/culture/longform/a36785/moroccan-teen-girl-fleeing-slavery/
Hosted and produced: Maeve McClenaghan
Music: Dice Muse, Clare Marks and Komiku
Audio of sea rescues from Medicins Sans Frontier
https://soundcloud.com/claremarks]]></description>
<link>https://www.acast.com/thetipoff/ep.8-the-stories-untold</link>
<enclosure url="https://media.acast.com/thetipoff/ep.8-the-stories-untold/media.mp3" length="75233921" type="audio/mpeg"/>
</item>
<item>
<title>Ep.7 Codename Prometheus</title>
<itunes:subtitle>Ep. 7 Codename: Prometheus
Everyones heard of the Panama Papers- the stories from the biggest data lead in history rocked the world.
But how did it happen? Where did the data appear from? How do you sift through 11.5m files? And how on earth do you ...</itunes:subtitle>
<itunes:summary><![CDATA[Ep. 7 Codename: Prometheus
Everyones heard of the Panama Papers- the stories from the biggest data lead in history rocked the world.
But how did it happen? Where did the data appear from? How do you sift through 11.5m files? And how on earth do you herd hundreds of journalists to the same finish line?
Bastian Obermayer (Süddeutsche Zeitung), Holly Watt (Guardian) and Will Fitzgibbon (ICIJ) talk us through the trials and tribulations of the worlds biggest cross-border collaboration.
Read all about it:
https://www.theguardian.com/news/2016/apr/07/david-cameron-admits-he-profited-fathers-offshore-fund-panama-papers
https://panamapapers.icij.org/about.html
Hosted and produced: Maeve McClenaghan
Music: Dice Muse and Josh Spacek]]></itunes:summary>
<guid isPermaLink="false"><![CDATA[tag:soundcloud,2010:tracks/333989206]]></guid>
<pubDate>Thu, 20 Jul 2017 07:07:45 GMT</pubDate>
<itunes:duration>00:39:41</itunes:duration>
<itunes:keywords></itunes:keywords>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<itunes:image href="https://imagecdn.acast.com/image?h&#x3D;1500&amp;w&#x3D;1500&amp;source&#x3D;https%3A%2F%2Fmediacdn.acast.com%2Fsource%2F945dc34f-f4e6-4921-830a-df050e540722%2F66be48d0-9970-4254-a8ea-82a1066e2337%2Fe7762b1f-aada-433b-9edd-1a5ac348ab98%2Fartworks-000234362942-lmh754-original.jpg" />
<description><![CDATA[Ep. 7 Codename: Prometheus
Everyones heard of the Panama Papers- the stories from the biggest data lead in history rocked the world.
But how did it happen? Where did the data appear from? How do you sift through 11.5m files? And how on earth do you herd hundreds of journalists to the same finish line?
Bastian Obermayer (Süddeutsche Zeitung), Holly Watt (Guardian) and Will Fitzgibbon (ICIJ) talk us through the trials and tribulations of the worlds biggest cross-border collaboration.
Read all about it:
https://www.theguardian.com/news/2016/apr/07/david-cameron-admits-he-profited-fathers-offshore-fund-panama-papers
https://panamapapers.icij.org/about.html
Hosted and produced: Maeve McClenaghan
Music: Dice Muse and Josh Spacek]]></description>
<link>https://www.acast.com/thetipoff/ep.7-codename-prometheus</link>
<enclosure url="https://media.acast.com/thetipoff/ep.7-codename-prometheus/media.mp3" length="71273758" type="audio/mpeg"/>
</item>
<item>
<title>Ep.6 Caught offside?</title>
<itunes:subtitle>Ep. 6 Caught offside?
A two year investigation took reporters undercover as they met with top football managers and agents.
Claire Newell explains how the Daily Telegraphs investigation team exposed the murky world of British football, ending in the ...</itunes:subtitle>
<itunes:summary><![CDATA[Ep. 6 Caught offside?
A two year investigation took reporters undercover as they met with top football managers and agents.
Claire Newell explains how the Daily Telegraphs investigation team exposed the murky world of British football, ending in the England manager stepping down.
Read all about it:
http://www.telegraph.co.uk/news/2016/09/26/exclusive-investigation-england-manager-sam-allardyce-for-sale/
http://www.telegraph.co.uk/football-for-sale/
Hosted and produced: Maeve McClenaghan
Music: Dice Muse and Clare Marks
https://soundcloud.com/claremarks]]></itunes:summary>
<guid isPermaLink="false"><![CDATA[tag:soundcloud,2010:tracks/332988171]]></guid>
<pubDate>Thu, 13 Jul 2017 07:44:20 GMT</pubDate>
<itunes:duration>00:44:11</itunes:duration>
<itunes:keywords></itunes:keywords>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<itunes:image href="https://imagecdn.acast.com/image?h&#x3D;1500&amp;w&#x3D;1500&amp;source&#x3D;https%3A%2F%2Fmediacdn.acast.com%2Fsource%2F945dc34f-f4e6-4921-830a-df050e540722%2Fdb22e275-5348-44f8-a975-e2ae773910cf%2F3419a5d8-7ad2-41fb-bc03-861b4b7dd0b4%2Fartworks-000233400257-9pzv50-original.jpg" />
<description><![CDATA[Ep. 6 Caught offside?
A two year investigation took reporters undercover as they met with top football managers and agents.
Claire Newell explains how the Daily Telegraphs investigation team exposed the murky world of British football, ending in the England manager stepping down.
Read all about it:
http://www.telegraph.co.uk/news/2016/09/26/exclusive-investigation-england-manager-sam-allardyce-for-sale/
http://www.telegraph.co.uk/football-for-sale/
Hosted and produced: Maeve McClenaghan
Music: Dice Muse and Clare Marks
https://soundcloud.com/claremarks]]></description>
<link>https://www.acast.com/thetipoff/ep.6-caught-offside</link>
<enclosure url="https://media.acast.com/thetipoff/ep.6-caught-offside/media.mp3" length="82073824" type="audio/mpeg"/>
</item>
<item>
<title>Ep.5 It started with a body</title>
<itunes:subtitle>Ep. 5 It started with a body
It started with a body and ended up in a months long investigation exploring the scale of homelessness in a London borough.
We follow Emma Youle as one simple story grows and morphs into an award-winning campaign.
Read a...</itunes:subtitle>
<itunes:summary><![CDATA[Ep. 5 It started with a body
It started with a body and ended up in a months long investigation exploring the scale of homelessness in a London borough.
We follow Emma Youle as one simple story grows and morphs into an award-winning campaign.
Read all about it: http://www.hackneygazette.co.uk/news/hackney-council-pays-35million-a-year-to-keep-the-homeless-homeless-1-4851576
http://www.hackneygazette.co.uk/news/revealed-shocking-modern-day-slum-conditions-at-hackney-hostel-for-homeless-people-1-4589067
Hosted and produced: Maeve McClenaghan
Music: Dice Muse and Podington Bear]]></itunes:summary>
<guid isPermaLink="false"><![CDATA[tag:soundcloud,2010:tracks/331807588]]></guid>
<pubDate>Thu, 06 Jul 2017 06:43:02 GMT</pubDate>
<itunes:duration>00:38:17</itunes:duration>
<itunes:keywords></itunes:keywords>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<itunes:image href="https://imagecdn.acast.com/image?h&#x3D;1500&amp;w&#x3D;1500&amp;source&#x3D;https%3A%2F%2Fmediacdn.acast.com%2Fsource%2F945dc34f-f4e6-4921-830a-df050e540722%2F032b9688-585f-417d-903b-b651d8e3b20b%2F7e397853-7dad-4f38-b69f-8fa88b4567e8%2Fartworks-000232222022-dx0w5x-original.jpg" />
<description><![CDATA[Ep. 5 It started with a body
It started with a body and ended up in a months long investigation exploring the scale of homelessness in a London borough.
We follow Emma Youle as one simple story grows and morphs into an award-winning campaign.
Read all about it: http://www.hackneygazette.co.uk/news/hackney-council-pays-35million-a-year-to-keep-the-homeless-homeless-1-4851576
http://www.hackneygazette.co.uk/news/revealed-shocking-modern-day-slum-conditions-at-hackney-hostel-for-homeless-people-1-4589067
Hosted and produced: Maeve McClenaghan
Music: Dice Muse and Podington Bear]]></description>
<link>https://www.acast.com/thetipoff/ep.5-it-started-with-a-body</link>
<enclosure url="https://media.acast.com/thetipoff/ep.5-it-started-with-a-body/media.mp3" length="67903969" type="audio/mpeg"/>
</item>
<item>
<title>Ep.4 Knock Knock</title>
<itunes:subtitle>Ep.4 Knock knock
Jane Bradley is stood on doorstep in West London. She is about to knock and tell a mother that she suspects her son is one of the worlds most wanted terrorists.
We follow Janes progress as she tracks down not one but two of the Bea...</itunes:subtitle>
<itunes:summary><![CDATA[Ep.4 Knock knock
Jane Bradley is stood on doorstep in West London. She is about to knock and tell a mother that she suspects her son is one of the worlds most wanted terrorists.
We follow Janes progress as she tracks down not one but two of the Beatles terror cell.
Read all about it: https://www.buzzfeed.com/janebradley/unmasked-the-second-member-of-isiss-beatles-execution-cell?utm_term=.tbXjXVDRw#.vvG4w1PG7
https://www.buzzfeed.com/janebradley/my-son-the-isis-executioner?utm_term=.uxO3lDBw9#.uqWJrqAvR
Hosted and produced: Maeve McClenaghan
Production advice: Lorna Stewart
Music: Dice Muse]]></itunes:summary>
<guid isPermaLink="false"><![CDATA[tag:soundcloud,2010:tracks/330669491]]></guid>
<pubDate>Thu, 29 Jun 2017 07:53:28 GMT</pubDate>
<itunes:duration>00:35:05</itunes:duration>
<itunes:keywords></itunes:keywords>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<itunes:image href="https://imagecdn.acast.com/image?h&#x3D;1500&amp;w&#x3D;1500&amp;source&#x3D;https%3A%2F%2Fmediacdn.acast.com%2Fsource%2F945dc34f-f4e6-4921-830a-df050e540722%2F21aabb14-b47f-4bef-8cc0-b36eb65bf00a%2F4b5be8c8-9f36-440b-8422-19e220b39fb3%2Fartworks-000231099552-8kn14m-original.jpg" />
<description><![CDATA[Ep.4 Knock knock
Jane Bradley is stood on doorstep in West London. She is about to knock and tell a mother that she suspects her son is one of the worlds most wanted terrorists.
We follow Janes progress as she tracks down not one but two of the Beatles terror cell.
Read all about it: https://www.buzzfeed.com/janebradley/unmasked-the-second-member-of-isiss-beatles-execution-cell?utm_term=.tbXjXVDRw#.vvG4w1PG7
https://www.buzzfeed.com/janebradley/my-son-the-isis-executioner?utm_term=.uxO3lDBw9#.uqWJrqAvR
Hosted and produced: Maeve McClenaghan
Production advice: Lorna Stewart
Music: Dice Muse]]></description>
<link>https://www.acast.com/thetipoff/ep.4-knock-knock</link>
<enclosure url="https://media.acast.com/thetipoff/ep.4-knock-knock/media.mp3" length="60211376" type="audio/mpeg"/>
</item>
<item>
<title>Ep.3 Back to the source</title>
<itunes:subtitle>Ep.3 Back to the source
The Bureau of Investigative Journalisms Abigail Fielding-Smith finds a vital source, who lets her into the world of the Pentagons top-secret propaganda machine.
With: Abigail Fielding-Smith
Read all about it: http://labs....</itunes:subtitle>
<itunes:summary><![CDATA[Ep.3 Back to the source
The Bureau of Investigative Journalisms Abigail Fielding-Smith finds a vital source, who lets her into the world of the Pentagons top-secret propaganda machine.
With: Abigail Fielding-Smith
Read all about it: http://labs.thebureauinvestigates.com/fake-news-and-false-flags/
Hosted and produced: Maeve McClenaghan
Production advice: Lorna Stewart
Music: Dice Muse]]></itunes:summary>
<guid isPermaLink="false"><![CDATA[tag:soundcloud,2010:tracks/329457734]]></guid>
<pubDate>Thu, 22 Jun 2017 07:18:17 GMT</pubDate>
<itunes:duration>00:40:45</itunes:duration>
<itunes:keywords></itunes:keywords>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<itunes:image href="https://imagecdn.acast.com/image?h&#x3D;1500&amp;w&#x3D;1500&amp;source&#x3D;https%3A%2F%2Fmediacdn.acast.com%2Fsource%2F945dc34f-f4e6-4921-830a-df050e540722%2Ff12efe36-3be7-4ab3-88c5-d74029f554cb%2F9fb70bc0-ec6a-40f6-9233-3f768356e6ce%2Fartworks-000229985808-w1scxb-original.jpg" />
<description><![CDATA[Ep.3 Back to the source
The Bureau of Investigative Journalisms Abigail Fielding-Smith finds a vital source, who lets her into the world of the Pentagons top-secret propaganda machine.
With: Abigail Fielding-Smith
Read all about it: http://labs.thebureauinvestigates.com/fake-news-and-false-flags/
Hosted and produced: Maeve McClenaghan
Production advice: Lorna Stewart
Music: Dice Muse]]></description>
<link>https://www.acast.com/thetipoff/ep.3-back-to-the-source</link>
<enclosure url="https://media.acast.com/thetipoff/ep.3-back-to-the-source/media.mp3" length="73843165" type="audio/mpeg"/>
</item>
<item>
<title>Ep.2 The stuff of horror movies</title>
<itunes:subtitle>Ep. 2 The stuff of horror movies
Piece by piece the Washington Posts Louisa Loveluck puts together the picture of a horrifying Syrian torture facility, in a setting you wouldnt expect.
WARNING: This episode includes descriptions of violence and to...</itunes:subtitle>
<itunes:summary><![CDATA[Ep. 2 The stuff of horror movies
Piece by piece the Washington Posts Louisa Loveluck puts together the picture of a horrifying Syrian torture facility, in a setting you wouldnt expect.
WARNING: This episode includes descriptions of violence and torture and may not be suitable for all listeners.
With: Louisa Loveluck
Read all about it: https://www.washingtonpost.com/world/middle_east/the-hospitals-were-slaughterhouses-a-journey-intosyrias-secret-torture-wards/2017/04/02/90ccaa6e-0d61-11e7-b2bb-417e331877d9_story.html?utm_term=.78c0ffec5d51
Hosted and produced: Maeve McClenaghan
Production advice: Lorna Stewart
Music: Dice Muse and Podington Bear]]></itunes:summary>
<guid isPermaLink="false"><![CDATA[tag:soundcloud,2010:tracks/327984833]]></guid>
<pubDate>Wed, 14 Jun 2017 07:39:16 GMT</pubDate>
<itunes:duration>00:31:58</itunes:duration>
<itunes:keywords></itunes:keywords>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<itunes:image href="https://imagecdn.acast.com/image?h&#x3D;1500&amp;w&#x3D;1500&amp;source&#x3D;https%3A%2F%2Fmediacdn.acast.com%2Fsource%2F945dc34f-f4e6-4921-830a-df050e540722%2F421a1d64-4f8d-4071-91d8-3181ef188f9b%2Ff21198e8-9018-4e3b-91eb-7d75b029b300%2Fartworks-000228291000-fdcndf-original.jpg" />
<description><![CDATA[Ep. 2 The stuff of horror movies
Piece by piece the Washington Posts Louisa Loveluck puts together the picture of a horrifying Syrian torture facility, in a setting you wouldnt expect.
WARNING: This episode includes descriptions of violence and torture and may not be suitable for all listeners.
With: Louisa Loveluck
Read all about it: https://www.washingtonpost.com/world/middle_east/the-hospitals-were-slaughterhouses-a-journey-intosyrias-secret-torture-wards/2017/04/02/90ccaa6e-0d61-11e7-b2bb-417e331877d9_story.html?utm_term=.78c0ffec5d51
Hosted and produced: Maeve McClenaghan
Production advice: Lorna Stewart
Music: Dice Muse and Podington Bear]]></description>
<link>https://www.acast.com/thetipoff/ep.2-the-stuff-of-horror-movies</link>
<enclosure url="https://media.acast.com/thetipoff/ep.2-the-stuff-of-horror-movies/media.mp3" length="52760373" type="audio/mpeg"/>
</item>
<item>
<title>Ep.1 Follow the money</title>
<itunes:subtitle>Ep.1 Follow the money
Wigs, car chases and rucksacks stuffed with cash. Buzzfeeds Heidi Blake explains how she exposed the questionable financial practices of one of the Conservative Partys largest donors.
With: Heidi Blake
Read all about it: ht...</itunes:subtitle>
<itunes:summary><![CDATA[Ep.1 Follow the money
Wigs, car chases and rucksacks stuffed with cash. Buzzfeeds Heidi Blake explains how she exposed the questionable financial practices of one of the Conservative Partys largest donors.
With: Heidi Blake
Read all about it: https://www.buzzfeed.com/heidiblake/this-tory-donor-was-secretly-filmed-dropping-cash-stuffed-ru?utm_term=.oxjmBQGKN#.qneDMy19Q
Hosted and produced: Maeve McClenaghan
Production advice: Lorna Stewart
Music: Dice Muse]]></itunes:summary>
<guid isPermaLink="false"><![CDATA[tag:soundcloud,2010:tracks/327983748]]></guid>
<pubDate>Wed, 14 Jun 2017 07:21:57 GMT</pubDate>
<itunes:duration>00:37:50</itunes:duration>
<itunes:keywords></itunes:keywords>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<itunes:image href="https://imagecdn.acast.com/image?h&#x3D;1500&amp;w&#x3D;1500&amp;source&#x3D;https%3A%2F%2Fmediacdn.acast.com%2Fsource%2F945dc34f-f4e6-4921-830a-df050e540722%2Ff37fae08-d65c-45cf-9957-55a045a87cd7%2F97e8631f-4e55-41a3-87c1-29c6114e9b83%2Fartworks-000228290187-pd4yfy-original.jpg" />
<description><![CDATA[Ep.1 Follow the money
Wigs, car chases and rucksacks stuffed with cash. Buzzfeeds Heidi Blake explains how she exposed the questionable financial practices of one of the Conservative Partys largest donors.
With: Heidi Blake
Read all about it: https://www.buzzfeed.com/heidiblake/this-tory-donor-was-secretly-filmed-dropping-cash-stuffed-ru?utm_term=.oxjmBQGKN#.qneDMy19Q
Hosted and produced: Maeve McClenaghan
Production advice: Lorna Stewart
Music: Dice Muse]]></description>
<link>https://www.acast.com/thetipoff/ep.1-follow-the-money</link>
<enclosure url="https://media.acast.com/thetipoff/ep.1-follow-the-money/media.mp3" length="66839221" type="audio/mpeg"/>
</item>
<item>
<title>Coming soon... The Tip Off</title>
<itunes:subtitle>Welcome to The Tip Off, a new weekly podcast that delves into the stories behind some of the biggest headlines in British journalism.</itunes:subtitle>
<itunes:summary><![CDATA[Welcome to The Tip Off, a new weekly podcast that delves into the stories behind some of the biggest headlines in British journalism.]]></itunes:summary>
<guid isPermaLink="false"><![CDATA[tag:soundcloud,2010:tracks/327539708]]></guid>
<pubDate>Sun, 11 Jun 2017 12:24:16 GMT</pubDate>
<itunes:duration>00:11:39</itunes:duration>
<itunes:keywords></itunes:keywords>
<itunes:explicit>no</itunes:explicit>
<itunes:episodeType>full</itunes:episodeType>
<itunes:image href="https://imagecdn.acast.com/image?h&#x3D;1500&amp;w&#x3D;1500&amp;source&#x3D;https%3A%2F%2Fmediacdn.acast.com%2Fsource%2F945dc34f-f4e6-4921-830a-df050e540722%2F9e2116e5-b87e-43a7-ae0c-41cbb324b4d8%2F7d456cf4-3671-4d98-ae5c-1c2e92b13527%2Fartworks-000227873559-gxybj6-original.jpg" />
<description><![CDATA[Welcome to The Tip Off, a new weekly podcast that delves into the stories behind some of the biggest headlines in British journalism.]]></description>
<link>https://www.acast.com/thetipoff/coming-soon...-the-tip-off</link>
<enclosure url="https://media.acast.com/thetipoff/coming-soon...-the-tip-off/media.mp3" length="3978132" type="audio/mpeg"/>
</item>
</channel>
</rss>
@@ -0,0 +1,752 @@
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>Intercepted with Jeremy Scahill</title>
<link>https://theintercept.com/podcasts</link>
<language>en</language>
<copyright>First Look Media Works, Inc.</copyright>
<description>The people behind The Intercepts fearless reporting and incisive commentary—Jeremy Scahill, Glenn Greenwald, Betsy Reed and others—discuss the crucial issues of our time: national security, civil liberties, foreign policy, and criminal justice. Plus interviews with artists, thinkers, and newsmakers who challenge our preconceptions about the world we live in.</description>
<image>
<url>http://static.megaphone.fm/podcasts/d5735a50-d904-11e6-8532-73c7de466ea6/image/uploads_2F1484252190700-qhn5krasklbce3dh-a797539282700ea0298a3a26f7e49b0b_2FIntercepted_COVER%2B_281_29.png</url>
<title>Intercepted with Jeremy Scahill</title>
<link>https://theintercept.com/podcasts</link>
</image>
<itunes:explicit>no</itunes:explicit>
<itunes:type>episodic</itunes:type>
<itunes:subtitle>The people behind The Intercepts fearless reporting and incisive commentary discuss the crucial issues of our time.</itunes:subtitle>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:summary>The people behind The Intercepts fearless reporting and incisive commentary—Jeremy Scahill, Glenn Greenwald, Betsy Reed and others—discuss the crucial issues of our time: national security, civil liberties, foreign policy, and criminal justice. Plus interviews with artists, thinkers, and newsmakers who challenge our preconceptions about the world we live in.</itunes:summary>
<itunes:owner>
<itunes:name>The Intercept / Panoply</itunes:name>
<itunes:email>podcasts@theintercept.com</itunes:email>
</itunes:owner>
<itunes:image href="http://static.megaphone.fm/podcasts/d5735a50-d904-11e6-8532-73c7de466ea6/image/uploads_2F1484252190700-qhn5krasklbce3dh-a797539282700ea0298a3a26f7e49b0b_2FIntercepted_COVER%2B_281_29.png" />
<itunes:category text="News &amp; Politics">
</itunes:category>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/InterceptedWithJeremyScahill" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="interceptedwithjeremyscahill" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
<title>BONUS: The NFL's Violent Ballet</title>
<description>This year in the National Football League, there have been 281 recorded concussions that players have suffered — spanning from the pre-season right up to the last playoff games. This weekend is Super Bowl Sunday. That is a macabre sort of record — it represents the most concussions in a season since the NFL started keeping track six years ago. The hits that these players take over and over during their careers can lead to very serious brain damage and a&amp;nbsp; degenerative condition known as Chronic Traumatic Encephalopathy or CTE.&lt;br&gt;&lt;br&gt;We are doing this special episode of Intercepted to highlight a gut-wrenching new short film that The Intercepts Josh Begley has directed. It is called "Concussion Protocol."&lt;br&gt;&lt;br&gt;In this special bonus episode of Intercepted, Josh Begley, The Intercepts Shaun King and Donte Stallworth, a ten year veteran of the NFL, discuss brain injuries, the #TakeAKnee protests, and Trumps attacks on athletes.&lt;br&gt;&lt;br&gt;Josh Begleys video “Concussion Protocol” can be viewed at &lt;a href="https://theintercept.com/NFL"&gt;theintercept.com/NFL&lt;/a&gt;.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</description>
<pubDate>Thu, 01 Feb 2018 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>BONUS: The NFL's Violent Ballet</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle> There have been 281 recorded concussions in the National Football League this year.</itunes:subtitle>
<itunes:summary>
<![CDATA[This year in the National Football League, there have been 281 recorded concussions that players have suffered — spanning from the pre-season right up to the last playoff games. This weekend is Super Bowl Sunday. That is a macabre sort of record — it represents the most concussions in a season since the NFL started keeping track six years ago. The hits that these players take over and over during their careers can lead to very serious brain damage and a&nbsp; degenerative condition known as Chronic Traumatic Encephalopathy or CTE.<br><br>We are doing this special episode of Intercepted to highlight a gut-wrenching new short film that The Intercepts Josh Begley has directed. It is called "Concussion Protocol."<br><br>In this special bonus episode of Intercepted, Josh Begley, The Intercepts Shaun King and Donte Stallworth, a ten year veteran of the NFL, discuss brain injuries, the #TakeAKnee protests, and Trumps attacks on athletes.<br><br>Josh Begleys video “Concussion Protocol” can be viewed at <a href="https://theintercept.com/NFL">theintercept.com/NFL</a>.<br><br><br><br><br><br><br>]]>
</itunes:summary>
<itunes:duration>2456</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[53934cc4-0712-11e8-929c-1bcc1b677578]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY3860278286.mp3?updated=1517465594" length="39301120" type="audio/mpeg" />
</item>
<item>
<title>Hate of the Union</title>
<description>Naomi Klein and Jeremy analyze Trumps threats toward North Korea, his Executive Order on Guantanamo and the attack on immigrants, the poor, and the environment. Veteran journalist Juan González dissects the roots of fascism, the rise of authoritarian movements, and global migration trends. Marcy Wheeler gives a brief analysis of a theory floated by a former CIA officer that the “Steele dossier” contains Russian disinformation. Ali Abunimah of Electronic Intifada discusses Israeli collusion with the Trump campaign and Mike Pences trip to Israel. And Franklin James Fisher of the band Algiers talks about their music from "The Underside of Power."</description>
<pubDate>Wed, 31 Jan 2018 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>Hate of the Union</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trumps State of the Union speech was a hateful assault. </itunes:subtitle>
<itunes:summary>
<![CDATA[Naomi Klein and Jeremy analyze Trumps threats toward North Korea, his Executive Order on Guantanamo and the attack on immigrants, the poor, and the environment. Veteran journalist Juan González dissects the roots of fascism, the rise of authoritarian movements, and global migration trends. Marcy Wheeler gives a brief analysis of a theory floated by a former CIA officer that the “Steele dossier” contains Russian disinformation. Ali Abunimah of Electronic Intifada discusses Israeli collusion with the Trump campaign and Mike Pences trip to Israel. And Franklin James Fisher of the band Algiers talks about their music from "The Underside of Power."]]>
</itunes:summary>
<itunes:duration>5176</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[366e5f2a-fb38-11e7-847d-3709dcd25861]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY4088394307.mp3?updated=1517420286" length="82820702" type="audio/mpeg" />
</item>
<item>
<title>First They Came For the Immigrants</title>
<description>As Donald Trump forges ahead with his plans for mass deportations and Democrats flail in their response, Ninaj Roul and Yanira Arias describe the plight of hundreds of thousands of people in imminent danger of deportation. Journalist Nick Pinto reveals how ICE agents are staking out churches and homes of immigrant rights activists. Intercept Washington D.C. bureau chief Ryan Grim breaks down a clause slipped into the budget bill that gives the White House authority to fund CIA programs without oversight. We talk to revolutionary musical artist Seun Kuti, son of the legendary Afrobeat pioneer Fela, and hear music from his forthcoming album, Black Times.</description>
<pubDate>Wed, 24 Jan 2018 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>First They Came For the Immigrants</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump promised to go to war against immigrants.</itunes:subtitle>
<itunes:summary>
<![CDATA[As Donald Trump forges ahead with his plans for mass deportations and Democrats flail in their response, Ninaj Roul and Yanira Arias describe the plight of hundreds of thousands of people in imminent danger of deportation. Journalist Nick Pinto reveals how ICE agents are staking out churches and homes of immigrant rights activists. Intercept Washington D.C. bureau chief Ryan Grim breaks down a clause slipped into the budget bill that gives the White House authority to fund CIA programs without oversight. We talk to revolutionary musical artist Seun Kuti, son of the legendary Afrobeat pioneer Fela, and hear music from his forthcoming album, Black Times.]]>
</itunes:summary>
<itunes:duration>5391</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[366970c8-fb38-11e7-847d-5376b55355c7]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY4168280488.mp3" length="86265939" type="audio/mpeg" />
</item>
<item>
<title>BONUS: Leading Marxist Scholar David Harvey on Trump, Wall Street and Debt Peonage</title>
<description>We live in a society that does not study its own history —&amp;nbsp; its unvarnished history — and often current events are analyzed in a vacuum that almost never includes the context or history necessary to understand what is new, what is old and how we got to where we are. As Trump celebrates his first year in office and demonstrations confront a year of his rule, leading Marxist scholar David Harvey sat down for an interview on Intercepted. Harvey is one of the leading Marxist thinkers in the world and a leading authority on Marxs "Das Kapital," which turned 150 years old late last year. Harvey is Distinguished Professor of Anthropology and Geography at the City University of New York.</description>
<pubDate>Sun, 21 Jan 2018 13:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>BONUS: Leading Marxist Scholar David Harvey on Trump, Wall Street and Debt Peonage</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Our full interview with Prof. David Harvey.</itunes:subtitle>
<itunes:summary>
<![CDATA[We live in a society that does not study its own history —&nbsp; its unvarnished history — and often current events are analyzed in a vacuum that almost never includes the context or history necessary to understand what is new, what is old and how we got to where we are. As Trump celebrates his first year in office and demonstrations confront a year of his rule, leading Marxist scholar David Harvey sat down for an interview on Intercepted. Harvey is one of the leading Marxist thinkers in the world and a leading authority on Marxs "Das Kapital," which turned 150 years old late last year. Harvey is Distinguished Professor of Anthropology and Geography at the City University of New York.]]>
</itunes:summary>
<itunes:duration>4868</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[51eff276-fe3b-11e7-bfff-f76c738c2592]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY3569313669.mp3" length="77897142" type="audio/mpeg" />
</item>
<item>
<title>White Mirror</title>
<description>Jeremy lays out the bloody US history in Haiti and El Salvador and blasts the bipartisan, selective amnesia and historical revisionism that “American exceptionalism” demands. Rep. Tulsi Gabbard discusses U.S. regime change, North Korea and why Bernie Sanders would have defeated Trump. As Robert Mueller hits Bannon with a Grand Jury subpoena, former CIA operative and&amp;nbsp; Cipher Brief columnist John Sipher and journalist Marcy Wheeler of Emptywheel analyze the Russia investigation and the Steele dossier. Leading Marxist scholar David Harvey talks about debt peonage in the age of Trump and the crimes of capitalism.</description>
<pubDate>Wed, 17 Jan 2018 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>White Mirror</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump is a racist and the perfect man to represent Americas racist legacy in the countries he called shitholes. </itunes:subtitle>
<itunes:summary>
<![CDATA[Jeremy lays out the bloody US history in Haiti and El Salvador and blasts the bipartisan, selective amnesia and historical revisionism that “American exceptionalism” demands. Rep. Tulsi Gabbard discusses U.S. regime change, North Korea and why Bernie Sanders would have defeated Trump. As Robert Mueller hits Bannon with a Grand Jury subpoena, former CIA operative and&nbsp; Cipher Brief columnist John Sipher and journalist Marcy Wheeler of Emptywheel analyze the Russia investigation and the Steele dossier. Leading Marxist scholar David Harvey talks about debt peonage in the age of Trump and the crimes of capitalism.]]>
</itunes:summary>
<itunes:duration>6409</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[3660ad94-fb38-11e7-847d-436a066985fa]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY1407171456.mp3?updated=1516180736" length="102550465" type="audio/mpeg" />
</item>
<item>
<title>BONUS: All The News Unfit to Print</title>
<description>James Risen is a legend in the world of investigative and national security journalism. As a reporter for the New York Times, Risen broke some of the most important stories of the post 9/11 era, from the warrantless surveillance against Americans conducted under the Bush-Cheney administration, to black prison sites run by the CIA, to failed covert actions in Iran. Risen has won the Pulitzer and other major journalism awards. But perhaps what he is now most famous for is fighting a battle under both the Bush and Obama administrations as they demanded — under threat of imprisonment —the name of one of Risens alleged confidential sources. But it isnt just the government that Risen had to fight. He also battled his own editors and other powerful figures at the New York Times. Risen is now a senior national security correspondent at The Intercept where his incredible inside story has now been published. We talk with Risen about his career at the New York Times in a special edition of Intercepted.</description>
<pubDate>Wed, 03 Jan 2018 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>BONUS: All The News Unfit to Print</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>James Risen on His Battles with Bush, Obama, and the New York Times</itunes:subtitle>
<itunes:summary>
<![CDATA[James Risen is a legend in the world of investigative and national security journalism. As a reporter for the New York Times, Risen broke some of the most important stories of the post 9/11 era, from the warrantless surveillance against Americans conducted under the Bush-Cheney administration, to black prison sites run by the CIA, to failed covert actions in Iran. Risen has won the Pulitzer and other major journalism awards. But perhaps what he is now most famous for is fighting a battle under both the Bush and Obama administrations as they demanded — under threat of imprisonment —the name of one of Risens alleged confidential sources. But it isnt just the government that Risen had to fight. He also battled his own editors and other powerful figures at the New York Times. Risen is now a senior national security correspondent at The Intercept where his incredible inside story has now been published. We talk with Risen about his career at the New York Times in a special edition of Intercepted.]]>
</itunes:summary>
<itunes:duration>3805</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<guid isPermaLink="false"><![CDATA[6bdd6660-f039-11e7-acba-33ffde0bb3cc]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY1217453507.mp3" length="60884950" type="audio/mpeg" />
</item>
<item>
<title>Full Metal Jackass</title>
<description>Former Nixon White House counsel John Dean talks about the Mueller investigation, how the CIA may benefit from Trumps presidency and how Trump stacks up to Nixon and Reagan. Pentagon Papers whistleblower Daniel Ellsberg talks about the classified secrets he has kept for decades. He has just published his story in a new book, The Doomsday Machine. Field of Vision takes us inside the very strange world of Steve Bannons films. Patterson Hood of the band Drive-By Truckers performs.</description>
<pubDate>Wed, 13 Dec 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>Full Metal Jackass</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Former Nixon Lawyer John Dean and Daniel Ellsberg Analyze the Trump Moment</itunes:subtitle>
<itunes:summary>
<![CDATA[Former Nixon White House counsel John Dean talks about the Mueller investigation, how the CIA may benefit from Trumps presidency and how Trump stacks up to Nixon and Reagan. Pentagon Papers whistleblower Daniel Ellsberg talks about the classified secrets he has kept for decades. He has just published his story in a new book, The Doomsday Machine. Field of Vision takes us inside the very strange world of Steve Bannons films. Patterson Hood of the band Drive-By Truckers performs.]]>
</itunes:summary>
<itunes:duration>5670</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[bb062002-9d9f-11e7-b8c4-9701f8d8d38e]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY9016904056.mp3" length="90720966" type="audio/mpeg" />
</item>
<item>
<title>Who's Afraid of the Alt-Deep State?</title>
<description>Matthew Cole joins Jeremy for a discussion about their explosive report in The Intercept that Blackwater founder Erik Prince has been pitching a private spy operation to the White House and CIA. Activist and comedian Randy Credico, who has been hit with a subpoena from the House Intelligence Committee investigating Trump and Russia, joins us.&amp;nbsp; Journalist Barrett Brown talks about the FBIs campaign against him and offers a critique of Wikileaks. Singer Amanda Palmer talks about her provocative new video for a cover she did of Pink Floyds “Mother."</description>
<pubDate>Wed, 06 Dec 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>Who's Afraid of the Alt-Deep State?</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump wants to make 1980s Reagan-era covert wars great again.</itunes:subtitle>
<itunes:summary>
<![CDATA[Matthew Cole joins Jeremy for a discussion about their explosive report in The Intercept that Blackwater founder Erik Prince has been pitching a private spy operation to the White House and CIA. Activist and comedian Randy Credico, who has been hit with a subpoena from the House Intelligence Committee investigating Trump and Russia, joins us.&nbsp; Journalist Barrett Brown talks about the FBIs campaign against him and offers a critique of Wikileaks. Singer Amanda Palmer talks about her provocative new video for a cover she did of Pink Floyds “Mother."]]>
</itunes:summary>
<itunes:duration>6260</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[bafb58fc-9d9f-11e7-b8c4-070c14a1debb]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY9210981870.mp3" length="100160574" type="audio/mpeg" />
</item>
<item>
<title>Very Bad Men</title>
<description>This week on Intercepted: Sen. Chris Murphy blasts the US government for its role in the destruction of Yemen. Jeremy tears apart Thomas Friedmans gross love letter to the Saudi Crown Prince and talks about the bi-partisan war against journalism from Bill Clinton to Donald Trump. The Intercepts Betsy Reed and Buzzfeeds Katie Baker analyze this unprecedented public fight against sexual assaulters. Analysis from Harare, Zimbabwe on the ouster of Robert Mugabe. Comedian Joe Para performs a dramatic reenactment of a secret Snowden document.</description>
<pubDate>Wed, 29 Nov 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>Very Bad Men</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Trump, the Saudi Crown Prince, Sexual Assaulters, and Robert Mugabe</itunes:subtitle>
<itunes:summary>
<![CDATA[This week on Intercepted: Sen. Chris Murphy blasts the US government for its role in the destruction of Yemen. Jeremy tears apart Thomas Friedmans gross love letter to the Saudi Crown Prince and talks about the bi-partisan war against journalism from Bill Clinton to Donald Trump. The Intercepts Betsy Reed and Buzzfeeds Katie Baker analyze this unprecedented public fight against sexual assaulters. Analysis from Harare, Zimbabwe on the ouster of Robert Mugabe. Comedian Joe Para performs a dramatic reenactment of a secret Snowden document.]]>
</itunes:summary>
<itunes:duration>5565</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[baf3e644-9d9f-11e7-b8c4-9f5a004c8b47]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY5979450332.mp3?updated=1511943682" length="89042024" type="audio/mpeg" />
</item>
<item>
<title>The Distraction in Chief</title>
<description>This week on Intercepted: Rami Khouri breaks down the Saudi agenda in the Middle East, its destruction of Yemen and the bizarre case of the exiled Lebanese prime minister. Aram Roston of Buzzfeed, Spencer Ackerman of the Daily Beast, and The Intercepts Matthew Cole join Jeremy for a discussion on the mysterious death of a Green Beret in Mali and why the CIA and US military are quite content with the Trump presidency. Wikileaks slid into Donald Trump Jr.s DMs. Intercept co-founder Glenn Greenwald analyzes what the messages say and how the media covered the story. And we talk to two newly elected Democrats in Virginia: Lee Carter and Elizabeth Guzman. Donald Trump stars in American Beauty.</description>
<pubDate>Wed, 15 Nov 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>The Distraction in Chief</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>While the media overwhelmingly focuses on Trump and Russia, Yemen is dying, covert ops are spreading and war is raging.</itunes:subtitle>
<itunes:summary>
<![CDATA[This week on Intercepted: Rami Khouri breaks down the Saudi agenda in the Middle East, its destruction of Yemen and the bizarre case of the exiled Lebanese prime minister. Aram Roston of Buzzfeed, Spencer Ackerman of the Daily Beast, and The Intercepts Matthew Cole join Jeremy for a discussion on the mysterious death of a Green Beret in Mali and why the CIA and US military are quite content with the Trump presidency. Wikileaks slid into Donald Trump Jr.s DMs. Intercept co-founder Glenn Greenwald analyzes what the messages say and how the media covered the story. And we talk to two newly elected Democrats in Virginia: Lee Carter and Elizabeth Guzman. Donald Trump stars in American Beauty.]]>
</itunes:summary>
<itunes:duration>5716</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[baec6cf2-9d9f-11e7-b8c4-832adc6b044a]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY5077597385.mp3" length="91468695" type="audio/mpeg" />
</item>
<item>
<title>Say Hello to My Little Hands</title>
<description>This week on Intercepted: Rep. Ro Khanna calls for a complete end to all U.S. military assistance to Saudi Arabia and the&amp;nbsp; catastrophe in Yemen. The former chief prosecutor at Guantanamo, Col. Morris Davis, blasts Trump over his interference in the case of Army Sergeant Bowe Bergdahl and the recent terror attack in New York. And as the Paradise Papers rock the world of the rich who use offshore banks and law firms, we get analysis from Nomi Prins.</description>
<pubDate>Wed, 08 Nov 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>Say Hello to My Little Hands</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>True (War) Crimes of the Rich and Infamous</itunes:subtitle>
<itunes:summary>
<![CDATA[This week on Intercepted: Rep. Ro Khanna calls for a complete end to all U.S. military assistance to Saudi Arabia and the&nbsp; catastrophe in Yemen. The former chief prosecutor at Guantanamo, Col. Morris Davis, blasts Trump over his interference in the case of Army Sergeant Bowe Bergdahl and the recent terror attack in New York. And as the Paradise Papers rock the world of the rich who use offshore banks and law firms, we get analysis from Nomi Prins.]]>
</itunes:summary>
<itunes:duration>5476</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[bae4af26-9d9f-11e7-b8c4-d7bd1cbbac44]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY3384065210.mp3" length="87615947" type="audio/mpeg" />
</item>
<item>
<title>Criminal Indictments at Home, Secret Wars Abroad</title>
<description>This week on Intercepted: New York Times reporter Charlie Savage and former federal prosecutor Ken White of Popehat break down the recent indictment and plea deal and what it may mean for Trump. Investigative journalist Nick Turse and Kenya scholar Samar Al-Bulushi take us into the world of US militarism in Africa: secret drone bases, US commandos and Washington-backed African forces operating under the guise of the “war on terror.” Musician Roberto Lange of Helado Negro performs.</description>
<pubDate>Wed, 01 Nov 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>Criminal Indictments at Home, Secret Wars Abroad</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Robert Muellers investigation intensifies as Trump grants the CIA and military new kill powers.</itunes:subtitle>
<itunes:summary>
<![CDATA[This week on Intercepted: New York Times reporter Charlie Savage and former federal prosecutor Ken White of Popehat break down the recent indictment and plea deal and what it may mean for Trump. Investigative journalist Nick Turse and Kenya scholar Samar Al-Bulushi take us into the world of US militarism in Africa: secret drone bases, US commandos and Washington-backed African forces operating under the guise of the “war on terror.” Musician Roberto Lange of Helado Negro performs.]]>
</itunes:summary>
<itunes:duration>4504</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[badd1b62-9d9f-11e7-b8c4-bb0a3510ea9d]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY9002073032.mp3" length="72073299" type="audio/mpeg" />
</item>
<item>
<title>Mike Pence is The Koch Brothers' Manchurian Candidate</title>
<description>This week on Intercepted: Investigative journalist Jane Mayer exposes the Koch Brother puppet masters behind Vice President Mike Pences rise to power and the ruthless pursuit of corporate profits that put Pence a heartbeat from the presidency.We speak to Chinese dissident and renown artist Ai Weiwei about the humanitarian catastrophe of the 65 million globally displaced migrants and his new documentary, Human Flow. And we end with Deerhoof's Greg Saunier on the songs of “Mountain Moves.”</description>
<pubDate>Wed, 25 Oct 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>Mike Pence is The Koch Brothers' Manchurian Candidate</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>The ruthless pursuit of corporate profits is a heartbeat from the presidency.</itunes:subtitle>
<itunes:summary>
<![CDATA[This week on Intercepted: Investigative journalist Jane Mayer exposes the Koch Brother puppet masters behind Vice President Mike Pences rise to power and the ruthless pursuit of corporate profits that put Pence a heartbeat from the presidency.We speak to Chinese dissident and renown artist Ai Weiwei about the humanitarian catastrophe of the 65 million globally displaced migrants and his new documentary, Human Flow. And we end with Deerhoof's Greg Saunier on the songs of “Mountain Moves.”]]>
</itunes:summary>
<itunes:duration>4458</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[bad56944-9d9f-11e7-b8c4-036f3898314a]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY6525793662.mp3?updated=1508912939" length="71329332" type="audio/mpeg" />
</item>
<item>
<title>Canada is Racist Too</title>
<description>This week on Intercepted live from Toronto: A recent poll puts activist Desmond Cole in prime position to win the mayorship. We talk to him about Canadas stop and frisk and how Cole would change Toronto. Journalist Naomi Klein warns that the Trudeau and Trump brands may have more in common than expected. And returning Iraqi-Canadian hip-hop artist Narcy gives a powerful live performance.&lt;br&gt;&lt;br&gt;Become a sustaining member! Go to &lt;a href="https://theintercept.com/join"&gt;theintercept.com/join&lt;/a&gt; for more.</description>
<pubDate>Wed, 18 Oct 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>Canada is Racist Too</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Could a young, radical black activist be the next mayor of Toronto?</itunes:subtitle>
<itunes:summary>
<![CDATA[This week on Intercepted live from Toronto: A recent poll puts activist Desmond Cole in prime position to win the mayorship. We talk to him about Canadas stop and frisk and how Cole would change Toronto. Journalist Naomi Klein warns that the Trudeau and Trump brands may have more in common than expected. And returning Iraqi-Canadian hip-hop artist Narcy gives a powerful live performance.<br><br>Become a sustaining member! Go to <a href="https://theintercept.com/join">theintercept.com/join</a> for more.]]>
</itunes:summary>
<itunes:duration>4613</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[bacdc1bc-9d9f-11e7-b8c4-bf06486207e8]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY1212140419.mp3" length="73809084" type="audio/mpeg" />
</item>
<item>
<title>The White Stuff</title>
<description>Trump sent Mike Pence on a mission to protest black protesters at an NFL game. Acclaimed author and journalist Ta-Nehisi Coates talks about Trump, Obama, Bernie Sanders, Hillary Clinton, the NFL and much more. Mehrsa Baradaran breaks down the roots of economic apartheid in the US, the ongoing impact of slavery on black communities and offers a provocative history of black banks. And the lead singer of Mashrou Leila, Hamed Sinno, talks about being queer and Arab in the Middle East and Trumps America.</description>
<pubDate>Wed, 11 Oct 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>The White Stuff</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Ta-Nehisi Coates talks about Trump, Obama, Bernie Sanders, Hillary Clinton, the NFL and much more.</itunes:subtitle>
<itunes:summary>
<![CDATA[Trump sent Mike Pence on a mission to protest black protesters at an NFL game. Acclaimed author and journalist Ta-Nehisi Coates talks about Trump, Obama, Bernie Sanders, Hillary Clinton, the NFL and much more. Mehrsa Baradaran breaks down the roots of economic apartheid in the US, the ongoing impact of slavery on black communities and offers a provocative history of black banks. And the lead singer of Mashrou Leila, Hamed Sinno, talks about being queer and Arab in the Middle East and Trumps America.]]>
</itunes:summary>
<itunes:duration>5664</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[bac62452-9d9f-11e7-b8c4-17ec33943c11]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY7057322394.mp3?updated=1507702418" length="90635702" type="audio/mpeg" />
</item>
<item>
<title>Guns Before Country</title>
<description>This week, Jeremy talks about the Coalition of the Killing — gun lobbyists, politicians and weapons manufacturers — the only beneficiaries of the massacre in Las Vegas. Alynda Segarra of the band Hurray for the Riff Raff explores her Puerto Rican roots and performs new songs. Former US Army Ranger Rory Fanning talks about his slain comrade, NFL star-turned soldier Pat Tillman. Historian Jeanne Theoharis shreds the sanitizing of the legacies of Martin Luther King Jr. and Rosa Parks. And Donald Trump takes his love of guns into the Twilight Zone.&lt;br&gt;&lt;br&gt;Support our show — become a member!&amp;nbsp; &lt;a href="http://theintercept.com/join"&gt;theintercept.com/join&lt;/a&gt;&lt;br&gt;&lt;br&gt;Panoply's podcast listener survey: &lt;a href="http://survey.panoply.fm"&gt;survey.panoply.fm&lt;/a&gt;</description>
<pubDate>Wed, 04 Oct 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>Guns Before Country</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Lobbyists, politicians and weapons manufacturers are the only beneficiaries of the massacre in Las Vegas. </itunes:subtitle>
<itunes:summary>
<![CDATA[This week, Jeremy talks about the Coalition of the Killing — gun lobbyists, politicians and weapons manufacturers — the only beneficiaries of the massacre in Las Vegas. Alynda Segarra of the band Hurray for the Riff Raff explores her Puerto Rican roots and performs new songs. Former US Army Ranger Rory Fanning talks about his slain comrade, NFL star-turned soldier Pat Tillman. Historian Jeanne Theoharis shreds the sanitizing of the legacies of Martin Luther King Jr. and Rosa Parks. And Donald Trump takes his love of guns into the Twilight Zone.<br><br>Support our show — become a member!&nbsp; <a href="http://theintercept.com/join">theintercept.com/join</a><br><br>Panoply's podcast listener survey: <a href="http://survey.panoply.fm">survey.panoply.fm</a>]]>
</itunes:summary>
<itunes:duration>4763</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[babd79c4-9d9f-11e7-b8c4-bfa2bf7b2870]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY1463981678.mp3" length="76216529" type="audio/mpeg" />
</item>
<item>
<title>For Whom the Trump Trolls</title>
<description>This week on Intercepted, physicist David Wright from the Union of Concerned Scientists explains how easy it would be for Trump to launch a nuclear strike. Professor James Fernandez of NYU talks about the Abraham Lincoln Brigade, the 3,000 Americans who tried to stop fascism before it spread in Europe. We speak with the directors of a haunting new film about a terror attack in an Israeli bus station that leads to the brutal mob killing of an innocent Eritrean immigrant. And Donald Trump gets a visit from the two Bobs in his Office Space.</description>
<pubDate>Wed, 27 Sep 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>For Whom the Trump Trolls</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>What the Abraham Lincoln Brigade can teach us about fighting fascism in the 21st century.</itunes:subtitle>
<itunes:summary>
<![CDATA[This week on Intercepted, physicist David Wright from the Union of Concerned Scientists explains how easy it would be for Trump to launch a nuclear strike. Professor James Fernandez of NYU talks about the Abraham Lincoln Brigade, the 3,000 Americans who tried to stop fascism before it spread in Europe. We speak with the directors of a haunting new film about a terror attack in an Israeli bus station that leads to the brutal mob killing of an innocent Eritrean immigrant. And Donald Trump gets a visit from the two Bobs in his Office Space.]]>
</itunes:summary>
<itunes:duration>4754</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[bab3035e-9d9f-11e7-b8c4-a723efdad05b]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY7212168126.mp3?updated=1506529903" length="76071497" type="audio/mpeg" />
</item>
<item>
<title>'Merican Psycho</title>
<description>Jeremy analyzes Trumps belligerent UN speech and the massive military budget the Democrats just gave him. Journalist Gary Rivlin takes us deep inside the world of the Goldman Sachs executives now working for Trump. Poet Aja Monet performs. The Intercepts Alice Speri investigates the militarization of police and how Israel is training American cops. Plus, Donald Trump stars in American Psycho.</description>
<pubDate>Wed, 20 Sep 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>'Merican Psycho</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump visits the UN and returns some videotapes.</itunes:subtitle>
<itunes:summary>
<![CDATA[Jeremy analyzes Trumps belligerent UN speech and the massive military budget the Democrats just gave him. Journalist Gary Rivlin takes us deep inside the world of the Goldman Sachs executives now working for Trump. Poet Aja Monet performs. The Intercepts Alice Speri investigates the militarization of police and how Israel is training American cops. Plus, Donald Trump stars in American Psycho.]]>
</itunes:summary>
<itunes:duration>4370</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[baa7cb06-9d9f-11e7-b8c4-d7ae2711974f]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY8078356160.mp3" length="69924570" type="audio/mpeg" />
</item>
<item>
<title>The Super Bowl of Racism</title>
<description>NSA whistleblower Edward Snowden discusses the massive Equifax data breach and allegations of Russian interference in the US election. Commentator Shaun King explains his call for a boycott of the NFL and talks about his campaign to bring violent neo-Nazis to justice. Rapper Open Mike Eagle performs.</description>
<pubDate>Wed, 13 Sep 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:title>The Super Bowl of Racism</itunes:title>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump loves him some beauty pageants. But he probably wasnt so hot on this years Miss Texas who called him out on neo-Nazi violence.</itunes:subtitle>
<itunes:summary>
<![CDATA[NSA whistleblower Edward Snowden discusses the massive Equifax data breach and allegations of Russian interference in the US election. Commentator Shaun King explains his call for a boycott of the NFL and talks about his campaign to bring violent neo-Nazis to justice. Rapper Open Mike Eagle performs.]]>
</itunes:summary>
<itunes:duration>4171</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[7df4070a-9832-11e7-adac-cb37b05d5e24]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY6458293736.mp3" length="66738886" type="audio/mpeg" />
</item>
<item>
<title>Atlas Golfed — U.S.-Backed Think Tanks Target Latin America</title>
<description>This week on Intercepted: Jeremy gives an update on the aftermath of Blackwaters 2007 massacre of Iraqi civilians. Intercept reporter Lee Fang lays out how a network of libertarian think tanks called the Atlas Network is insidiously shaping political infrastructure in Latin America. We speak with attorney and former Hugo Chavez adviser Eva Golinger about the Venezuela's political turmoil.And we hear Claudia Lizardo of the Caracas-based band, La Pequeña Revancha, talk about her music and hopes for Venezuela.</description>
<pubDate>Wed, 09 Aug 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump is on his version of a staycation, chilling at his golf course resort in New Jersey and watching FOX News or tweeting non-stop — when hes not golfing or threatening nuclear war.</itunes:subtitle>
<itunes:summary>
<![CDATA[This week on Intercepted: Jeremy gives an update on the aftermath of Blackwaters 2007 massacre of Iraqi civilians. Intercept reporter Lee Fang lays out how a network of libertarian think tanks called the Atlas Network is insidiously shaping political infrastructure in Latin America. We speak with attorney and former Hugo Chavez adviser Eva Golinger about the Venezuela's political turmoil.And we hear Claudia Lizardo of the Caracas-based band, La Pequeña Revancha, talk about her music and hopes for Venezuela.]]>
</itunes:summary>
<itunes:duration>4415</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[7c207a24-e33f-11e6-9438-eb45dcf36a1d]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL5331443769.mp3" length="67527575" type="audio/mpeg" />
</item>
<item>
<title>Pyongyang and the White House Gang</title>
<description>News from the White House this week has been like a twisted mash up of Here Comes Honey Boo Boo, Macbeth, Project Runway and a Mr. Bean movie. Dime-store Sopranos reject Anthony Scaramucci was fired after just 10 days as White House communications director. Reince Priebus is out as chief of staff, Gen. John Kelly is in. And with spiking tensions between the United States and North Korea, we reflect on the history of the region. Plus, The Intercepts Naomi Klein talks to U.K. Labour Party leader Jeremy Corbyn about the lessons the Democratic Party could learn from Corbyns unexpected electoral success.</description>
<pubDate>Wed, 02 Aug 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>With spiking tensions between the U.S. and North Korea, we reflect on the history of the region. And The Intercepts Naomi Klein talks to U.K. Labour Party leader Jeremy Corbyn.</itunes:subtitle>
<itunes:summary>
<![CDATA[News from the White House this week has been like a twisted mash up of Here Comes Honey Boo Boo, Macbeth, Project Runway and a Mr. Bean movie. Dime-store Sopranos reject Anthony Scaramucci was fired after just 10 days as White House communications director. Reince Priebus is out as chief of staff, Gen. John Kelly is in. And with spiking tensions between the United States and North Korea, we reflect on the history of the region. Plus, The Intercepts Naomi Klein talks to U.K. Labour Party leader Jeremy Corbyn about the lessons the Democratic Party could learn from Corbyns unexpected electoral success.]]>
</itunes:summary>
<itunes:duration>3712</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<guid isPermaLink="false"><![CDATA[5850753c-dcf9-11e6-a5a2-a7df163d0693]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL4502761802.mp3" length="56280711" type="audio/mpeg" />
</item>
<item>
<title>Glenn Greenwald on the New Cold War</title>
<description>With all the constant hype about Russia, youd think we were living in a new Cold War. This week on Intercepted: Glenn Greenwald fills in for Jeremy Scahill, and we take a deep dive into the origins and evolution of the Trump-Russia story. Fox News' Tucker Carlson and Glenn find something they can actually agree on (the Democratic establishments Russia hysteria), but diverge on Tuckers coverage of immigration and crime. Russian-American writer Masha Gessen explains how conspiracy thinking is a mirror of the leaders we put in power.</description>
<pubDate>Wed, 26 Jul 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>With all the constant hype about Russia, youd think we were living in a new Cold War.</itunes:subtitle>
<itunes:summary>
<![CDATA[With all the constant hype about Russia, youd think we were living in a new Cold War. This week on Intercepted: Glenn Greenwald fills in for Jeremy Scahill, and we take a deep dive into the origins and evolution of the Trump-Russia story. Fox News' Tucker Carlson and Glenn find something they can actually agree on (the Democratic establishments Russia hysteria), but diverge on Tuckers coverage of immigration and crime. Russian-American writer Masha Gessen explains how conspiracy thinking is a mirror of the leaders we put in power.]]>
</itunes:summary>
<itunes:duration>3565</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<guid isPermaLink="false"><![CDATA[584711b8-dcf9-11e6-a5a2-d7a378461c40]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL8633314507.mp3" length="53935124" type="audio/mpeg" />
</item>
<item>
<title>Veni, Vidi, Tweeti</title>
<description>Donald Trump enjoyed playing fireman and asking where the fire is. Hint: all around you, Mr. President. This week on Intercepted: the famed rebel academic, Alfred McCoy, whose book on narcotrafficking the CIA tried to stop from being published, lays out his meticulously argued theory that the U.S. empire will fall by the year 2030. The Washington Posts media columnist, Margaret Sullivan, talks about Trump ratcheting up the war on whistleblowers and the existence of a free press.</description>
<pubDate>Wed, 19 Jul 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump enjoyed playing fireman and asking where the fire is. Hint: all around you, Mr. President.</itunes:subtitle>
<itunes:summary>
<![CDATA[Donald Trump enjoyed playing fireman and asking where the fire is. Hint: all around you, Mr. President. This week on Intercepted: the famed rebel academic, Alfred McCoy, whose book on narcotrafficking the CIA tried to stop from being published, lays out his meticulously argued theory that the U.S. empire will fall by the year 2030. The Washington Posts media columnist, Margaret Sullivan, talks about Trump ratcheting up the war on whistleblowers and the existence of a free press.]]>
</itunes:summary>
<itunes:duration>4146</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[583dc8f6-dcf9-11e6-a5a2-97233491f3c8]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL4964577496.mp3" length="63216744" type="audio/mpeg" />
</item>
<item>
<title>Dumb, Dumber and Don Jr.</title>
<description>This week on Intercepted: Don Jr. is in the shit throne over a secret meeting he had with a Russian lawyer. Could this be, as many in the media are claiming, the smoking gun of Russia collusion? Intercept co-founder Glenn Greenwald weighs in and debunks a forged NSA document sent to Rachel Maddow. Intercept reporters Alice Speri and Alleen Brown talk about the shadowy mercenary company TigerSwan. We also hear music from Victoria Ruiz of the punk band Downtown Boys.</description>
<pubDate>Wed, 12 Jul 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>The old adage that the cover-up is worse than the crime seems like it was tailored specifically for Donald Trump and his merry band of imbeciles, ideological zealots, and…family members.</itunes:subtitle>
<itunes:summary>
<![CDATA[This week on Intercepted: Don Jr. is in the shit throne over a secret meeting he had with a Russian lawyer. Could this be, as many in the media are claiming, the smoking gun of Russia collusion? Intercept co-founder Glenn Greenwald weighs in and debunks a forged NSA document sent to Rachel Maddow. Intercept reporters Alice Speri and Alleen Brown talk about the shadowy mercenary company TigerSwan. We also hear music from Victoria Ruiz of the punk band Downtown Boys.]]>
</itunes:summary>
<itunes:duration>4059</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[5834b428-dcf9-11e6-a5a2-f7aca16eec6e]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL5169968320.mp3" length="61824940" type="audio/mpeg" />
</item>
<item>
<title>The House of Trump</title>
<description>President Trump said when it comes to health insurance, he would cover everyone. He lied. Meanwhile the Crown Prince of America, Jared Kushner, and Mohammed Bin Salman, Crown Prince of Saudi Arabia, play house with foreign policy. This week: Al Jazeeras Mehdi Hasan fills in for Jeremy Scahill. Intercept reporter Murtaza Hussain and journalist Rula Jebreal discuss the global consequences of the House of Trumps meddling in the Middle East. Historian Tom Holland joins Mehdi for a debate on the role of Islam within the Islamic State. Plus, actor Bill Camp reprises his role as the “SIGINT Philosopher.”</description>
<pubDate>Wed, 28 Jun 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>The royal family of the United States takes some heat as the fate of American healthcare hangs on a few votes. </itunes:subtitle>
<itunes:summary>
<![CDATA[President Trump said when it comes to health insurance, he would cover everyone. He lied. Meanwhile the Crown Prince of America, Jared Kushner, and Mohammed Bin Salman, Crown Prince of Saudi Arabia, play house with foreign policy. This week: Al Jazeeras Mehdi Hasan fills in for Jeremy Scahill. Intercept reporter Murtaza Hussain and journalist Rula Jebreal discuss the global consequences of the House of Trumps meddling in the Middle East. Historian Tom Holland joins Mehdi for a debate on the role of Islam within the Islamic State. Plus, actor Bill Camp reprises his role as the “SIGINT Philosopher.”]]>
</itunes:summary>
<itunes:duration>3597</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<guid isPermaLink="false"><![CDATA[5825189c-dcf9-11e6-a5a2-3765693ebff5]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL5926659703.mp3" length="54443781" type="audio/mpeg" />
</item>
<item>
<title>Dispatch from the Dirtbag Left</title>
<description>While all eyes in Washington remain focused on the Russia investigation, a Republican firm forgot to secure its invasive personal data on 198 million American voters. This week on Intercepted: We speak to radical librarian Alison Macrina of the Library Freedom Project about the fight against digital surveillance. Sam Biddle gives an update on attacks on U.S. voting systems. And, we speak with one of the rising stars of the “dirtbag left,” Felix Biederman of Chapo Trap House.</description>
<pubDate>Wed, 21 Jun 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Why #resistance Twitter, establishment Democrats and neocon apologists are not leftists.</itunes:subtitle>
<itunes:summary>
<![CDATA[While all eyes in Washington remain focused on the Russia investigation, a Republican firm forgot to secure its invasive personal data on 198 million American voters. This week on Intercepted: We speak to radical librarian Alison Macrina of the Library Freedom Project about the fight against digital surveillance. Sam Biddle gives an update on attacks on U.S. voting systems. And, we speak with one of the rising stars of the “dirtbag left,” Felix Biederman of Chapo Trap House.]]>
</itunes:summary>
<itunes:duration>3540</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[581dd44c-dcf9-11e6-a5a2-03edebf2031b]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL7980248897.mp3" length="53535555" type="audio/mpeg" />
</item>
<item>
<title>The Trump Mixtape — Dantes Inferno meets Disco Inferno</title>
<description>Donald Trump has a great affinity for strongmen and for unquestioned loyalty of those who work for him. This week on Intercepted: Trumps besties in Saudi Arabia convinced him that Qatar is the premiere Arab nation sponsoring terrorism. Amnesty Internationals Sherine Tadros and al Jazeeras Mehdi Hasan analyze the hypocrisy-laden, bizarre crisis. Jeremy discusses the prosecution of an alleged NSA leaker. MSNBCs Chris Hayes talks Russia, Trump, the media and his new book A Colony in a Nation. DJ Spooky imagines a Trump-inspired mash-up of Dantes Inferno and Disco Inferno.</description>
<pubDate>Wed, 14 Jun 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump has made crystal clear that he has a great affinity for strongmen and for unquestioned loyalty of those who work for him. </itunes:subtitle>
<itunes:summary>
<![CDATA[Donald Trump has a great affinity for strongmen and for unquestioned loyalty of those who work for him. This week on Intercepted: Trumps besties in Saudi Arabia convinced him that Qatar is the premiere Arab nation sponsoring terrorism. Amnesty Internationals Sherine Tadros and al Jazeeras Mehdi Hasan analyze the hypocrisy-laden, bizarre crisis. Jeremy discusses the prosecution of an alleged NSA leaker. MSNBCs Chris Hayes talks Russia, Trump, the media and his new book A Colony in a Nation. DJ Spooky imagines a Trump-inspired mash-up of Dantes Inferno and Disco Inferno.]]>
</itunes:summary>
<itunes:duration>4346</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[5815ed86-dcf9-11e6-a5a2-ab3d4ad4b944]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL2441335022.mp3?updated=1497422014" length="66430432" type="audio/mpeg" />
</item>
<item>
<title>The Woman Democrats Love to Hate</title>
<description>The Green Partys Jill Stein has been widely attacked by Democrats simply for running for president. Some blame her for Hillary Clintons loss. This week, Stein strikes back at her critics and reveals the story behind the infamous Moscow dinner where she was seated with Vladimir Putin and Gen. Michael Flynn. The Intercepts DC bureau chief Ryan Grim digs into the contents of a newly published top secret NSA document outlining alleged Russian cyberattacks against software companies that service U.S. elections. And singer-songwriter Damien Jurado performs.</description>
<pubDate>Wed, 07 Jun 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Jill Stein has been widely attacked by Democrats simply for running for president. </itunes:subtitle>
<itunes:summary>
<![CDATA[The Green Partys Jill Stein has been widely attacked by Democrats simply for running for president. Some blame her for Hillary Clintons loss. This week, Stein strikes back at her critics and reveals the story behind the infamous Moscow dinner where she was seated with Vladimir Putin and Gen. Michael Flynn. The Intercepts DC bureau chief Ryan Grim digs into the contents of a newly published top secret NSA document outlining alleged Russian cyberattacks against software companies that service U.S. elections. And singer-songwriter Damien Jurado performs.]]>
</itunes:summary>
<itunes:duration>3693</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[580e21d2-dcf9-11e6-a5a2-53fae963a8d5]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL5889277506.mp3?updated=1496817965" length="55977273" type="audio/mpeg" />
</item>
<item>
<title>There's Something About Jared</title>
<description>This week, the scandal spotlight shines on Trumps influential (and strangely quiet) son-in-law. We talk to national security correspondent Spencer Ackerman of The Daily Beast about Jared Kushners alleged meetings with Russian officials to establish back channel communications. Organizer and scholar Mariame Kaba offers a peoples history of prisons in the US and the politicians—both Democrats and Republicans—who have made them what they are today. And we hear an incredible rendition of “The Partisan” from composers and musicians Leo Heiblum of Mexico and Tenzin Choegyal of Tibet.&amp;nbsp;</description>
<pubDate>Wed, 31 May 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Jared Kushner is sort of like Donald Trumps less savvy version of Don Corleones consigliere. But did he make the Russians an offer they couldnt refuse?</itunes:subtitle>
<itunes:summary>
<![CDATA[This week, the scandal spotlight shines on Trumps influential (and strangely quiet) son-in-law. We talk to national security correspondent Spencer Ackerman of The Daily Beast about Jared Kushners alleged meetings with Russian officials to establish back channel communications. Organizer and scholar Mariame Kaba offers a peoples history of prisons in the US and the politicians—both Democrats and Republicans—who have made them what they are today. And we hear an incredible rendition of “The Partisan” from composers and musicians Leo Heiblum of Mexico and Tenzin Choegyal of Tibet.&nbsp;]]>
</itunes:summary>
<itunes:duration>3762</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[5807254e-dcf9-11e6-a5a2-cb45327dca79]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL3830941587.mp3" length="57086537" type="audio/mpeg" />
</item>
<item>
<title>Donald Trump and his League of Extraordinary Despots</title>
<description>This week, Donald Trump stood in a sea of tyrants and joined in a bizarre group petting of a glowing white orb. Professor Asad AbuKhalil dissects Trumps summit in Saudi Arabia and the role Trumps friends in the Middle East play in fueling such horrors as the attack on Manchester. The Intercepts new DC bureau chief, Ryan Grim, and national security reporter Matthew Cole discuss Gen. Michael Flynn and whether anyone in the Trump administration realizes how insane their boss is. And Steve Earle performs live.</description>
<pubDate>Wed, 24 May 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>This week, Donald Trump stood in a sea of tyrants and joined in a bizarre group petting of a glowing white orb.</itunes:subtitle>
<itunes:summary>
<![CDATA[This week, Donald Trump stood in a sea of tyrants and joined in a bizarre group petting of a glowing white orb. Professor Asad AbuKhalil dissects Trumps summit in Saudi Arabia and the role Trumps friends in the Middle East play in fueling such horrors as the attack on Manchester. The Intercepts new DC bureau chief, Ryan Grim, and national security reporter Matthew Cole discuss Gen. Michael Flynn and whether anyone in the Trump administration realizes how insane their boss is. And Steve Earle performs live.]]>
</itunes:summary>
<itunes:duration>4198</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57ffd3e8-dcf9-11e6-a5a2-17ed73ff2f09]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL3575958410.mp3" length="64048065" type="audio/mpeg" />
</item>
<item>
<title>Donald and the Terrible, Horrible, No Good, Very Bad Presidency</title>
<description>Donald Trump is spectacularly bad at being president. This week on Intercepted, investigative journalist Marcy Wheeler and The Intercepts Glenn Greenwald analyze the latest insanity emanating from the White House. Pulitzer Prize-winning journalist Tim Weiner and Intercept writer Trevor Aaronson discuss the firing of James Comey and debate his FBI legacy. And Palestinian author and journalist Rula Jebreal explains why President Trump is going to Saudi Arabia and Israel on his first international trip.</description>
<pubDate>Wed, 17 May 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump is spectacularly bad at being president. </itunes:subtitle>
<itunes:summary>
<![CDATA[Donald Trump is spectacularly bad at being president. This week on Intercepted, investigative journalist Marcy Wheeler and The Intercepts Glenn Greenwald analyze the latest insanity emanating from the White House. Pulitzer Prize-winning journalist Tim Weiner and Intercept writer Trevor Aaronson discuss the firing of James Comey and debate his FBI legacy. And Palestinian author and journalist Rula Jebreal explains why President Trump is going to Saudi Arabia and Israel on his first international trip.]]>
</itunes:summary>
<itunes:duration>3861</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57f826de-dcf9-11e6-a5a2-ff41a0b1698e]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL3660243774.mp3" length="58666422" type="audio/mpeg" />
</item>
<item>
<title>James Comey, Chelsea Manning and the secrets America keeps</title>
<description>Donald Trumps complicated relationship with FBI Director James Comey came to a shocking conclusion in Tuesday nights episode of American shitshow. Glenn Greenwald analyzes Comeys firing. Next week, Chelsea Manning will be freed from prison. We hear exclusive audio from her trial and talk to journalist Alexa OBrien. And French civil liberties activist Yasser Louati says despite her defeat in the presidential election, many of Marine Le Pens ideas are already embedded in mainstream French politics. And a premiere track from hip-hop artists MC Sole and DJ Pain 1.</description>
<pubDate>Wed, 10 May 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trumps complicated relationship with FBI Director James Comey came to a shocking conclusion in Tuesday nights episode of American shitshow.</itunes:subtitle>
<itunes:summary>
<![CDATA[Donald Trumps complicated relationship with FBI Director James Comey came to a shocking conclusion in Tuesday nights episode of American shitshow. Glenn Greenwald analyzes Comeys firing. Next week, Chelsea Manning will be freed from prison. We hear exclusive audio from her trial and talk to journalist Alexa OBrien. And French civil liberties activist Yasser Louati says despite her defeat in the presidential election, many of Marine Le Pens ideas are already embedded in mainstream French politics. And a premiere track from hip-hop artists MC Sole and DJ Pain 1.]]>
</itunes:summary>
<itunes:duration>4197</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57ef98d4-dcf9-11e6-a5a2-374c19bb24e7]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL5670631624.mp3" length="64045557" type="audio/mpeg" />
</item>
<item>
<title>BONUS: Jeremy talks Milo on Politically Re-Active</title>
<description>We're still a week away from the beginning of season two, but here's a taster of Jeremy's interview on our sister podcast, Politically Re-Active. Jeremy clears the air on his cancelled appearance on "Real Time with Bill Maher" with hosts W. Kamau Bell and Hari Kondabolu, and much more. To hear the full interview, subscribe to Politically Re-Active or head to politicallyreactive.com.</description>
<pubDate>Wed, 03 May 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle />
<itunes:summary>
<![CDATA[We're still a week away from the beginning of season two, but here's a taster of Jeremy's interview on our sister podcast, Politically Re-Active. Jeremy clears the air on his cancelled appearance on "Real Time with Bill Maher" with hosts W. Kamau Bell and Hari Kondabolu, and much more. To hear the full interview, subscribe to Politically Re-Active or head to politicallyreactive.com.]]>
</itunes:summary>
<itunes:duration>692</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[a940d60e-2fb9-11e7-8fb4-4b8f8bf5bfe4]]></guid>
<enclosure url="https://traffic.megaphone.fm/PPY5034885459.mp3" length="11072574" type="audio/mpeg" />
</item>
<item>
<title>Wikileaks vs the CIA</title>
<description>Wikileaks founder Julian Assange hits back at Trumps CIA director Mike Pompeo after Pompeo accused Wikileaks of being a “hostile non-state intelligence agency.” In a wide-ranging interview, Assange discusses the allegations Wikileaks was abetted by Russian intelligence in its publication of DNC emails, and the new-found admiration for him by FOX News and Donald Trump. Also, why Assange believes he and Hillary Clinton may get along if they ever met in person. And we premiere an unreleased song by Tom Morello of Rage Against the Machine.</description>
<pubDate>Wed, 19 Apr 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Julian Assange hits back at Trumps CIA director Mike Pompeo after Pompeo accused Wikileaks of being a “hostile non-state intelligence agency.”</itunes:subtitle>
<itunes:summary>
<![CDATA[Wikileaks founder Julian Assange hits back at Trumps CIA director Mike Pompeo after Pompeo accused Wikileaks of being a “hostile non-state intelligence agency.” In a wide-ranging interview, Assange discusses the allegations Wikileaks was abetted by Russian intelligence in its publication of DNC emails, and the new-found admiration for him by FOX News and Donald Trump. Also, why Assange believes he and Hillary Clinton may get along if they ever met in person. And we premiere an unreleased song by Tom Morello of Rage Against the Machine.]]>
</itunes:summary>
<itunes:duration>3901</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57e86f28-dcf9-11e6-a5a2-3f3b6bf611af]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL5660744294.mp3" length="59298377" type="audio/mpeg" />
</item>
<item>
<title>The Emperors New Cruise Missiles</title>
<description>Nothing brings warmongers, hawks and elites from both parties closer than a cruise missile strike. This weeks Intercepted will piss off Assad supporters and the Democrats and Republicans fawning over Trumps newest war. Former Congressman Dennis Kucinich questions the official story on the chemical weapons attack. Murtaza Hussain on what Assad gains by using chemical weapons. And, Maher Arar is a Syrian-born Canadian engineer who was kidnapped at JFK airport by US operatives after 9/11 and rendered to Syria and tortured by Assads agents. Arar says he opposes Assad and US intervention. All that and a bucket of media stupidity to celebrate beautiful missiles.</description>
<pubDate>Wed, 12 Apr 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Nothing brings warmongers, hawks and elites from both parties closer than a cruise missile strike.</itunes:subtitle>
<itunes:summary>
<![CDATA[Nothing brings warmongers, hawks and elites from both parties closer than a cruise missile strike. This weeks Intercepted will piss off Assad supporters and the Democrats and Republicans fawning over Trumps newest war. Former Congressman Dennis Kucinich questions the official story on the chemical weapons attack. Murtaza Hussain on what Assad gains by using chemical weapons. And, Maher Arar is a Syrian-born Canadian engineer who was kidnapped at JFK airport by US operatives after 9/11 and rendered to Syria and tortured by Assads agents. Arar says he opposes Assad and US intervention. All that and a bucket of media stupidity to celebrate beautiful missiles.]]>
</itunes:summary>
<itunes:duration>3764</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57e131d6-dcf9-11e6-a5a2-efc4038c6546]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL8700626063.mp3" length="57118720" type="audio/mpeg" />
</item>
<item>
<title>Trump's Secret Prince</title>
<description>Erik Prince—the most infamous mercenary in modern U.S. history—is Trumps secret emissary. This week, an exclusive interview with Rep. Jan Schakowsky, who has fought a decades-long battle against Prince. Tavis Smiley talks about the “Santa Claus-ification” of Dr. Martin Luther King Jr. on the 50th anniversary of Kings militant speech against the Vietnam War. Rep. Barbara Lee reflects on her own historic anti-war speech, delivered three days after 9/11. And Vice President Pence, who cant be alone in a room with a woman who is not his wife, goes Psycho.&lt;br&gt;&lt;br&gt;&lt;em&gt;Please take a moment to fill out Panoply's survey about the shows you listen to, love, and what else you'd like to hear: &lt;/em&gt;&lt;a href="http://survey.panoply.fm"&gt;&lt;em&gt;survey.panoply.fm&lt;/em&gt;&lt;/a&gt;&lt;em&gt;.&amp;nbsp; Many thanks!&lt;/em&gt;</description>
<pubDate>Wed, 05 Apr 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Erik Prince is the most infamous mercenary in modern U.S. history. Hes also Trumps shadow advisor and secret emissary.</itunes:subtitle>
<itunes:summary>
<![CDATA[Erik Prince—the most infamous mercenary in modern U.S. history—is Trumps secret emissary. This week, an exclusive interview with Rep. Jan Schakowsky, who has fought a decades-long battle against Prince. Tavis Smiley talks about the “Santa Claus-ification” of Dr. Martin Luther King Jr. on the 50th anniversary of Kings militant speech against the Vietnam War. Rep. Barbara Lee reflects on her own historic anti-war speech, delivered three days after 9/11. And Vice President Pence, who cant be alone in a room with a woman who is not his wife, goes Psycho.<br><br><em>Please take a moment to fill out Panoply's survey about the shows you listen to, love, and what else you'd like to hear: </em><a href="http://survey.panoply.fm"><em>survey.panoply.fm</em></a><em>.&nbsp; Many thanks!</em>]]>
</itunes:summary>
<itunes:duration>3623</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57da1dce-dcf9-11e6-a5a2-2fa5756ae4a7]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL7737191155.mp3?updated=1491374970" length="54858396" type="audio/mpeg" />
</item>
<item>
<title>Trump Declares War on the Planet</title>
<description>Donald Trump officially rejects climate change and unofficially declares war on planet Earth. Naomi Klein takes us on a terrifying journey into Trumps real life version of The Purge. Boots Riley of The Coup discusses Trump and hip hop and performs. Murtaza Hussain talks about the US bombings in Iraq and Syria that have killed 1,000 civilians in one month. And, we talk to the developer of an app that tracks US drone strikes that Apple has censored 13 times.</description>
<pubDate>Wed, 29 Mar 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump officially rejects climate change and unofficially declares war on planet Earth.</itunes:subtitle>
<itunes:summary>
<![CDATA[Donald Trump officially rejects climate change and unofficially declares war on planet Earth. Naomi Klein takes us on a terrifying journey into Trumps real life version of The Purge. Boots Riley of The Coup discusses Trump and hip hop and performs. Murtaza Hussain talks about the US bombings in Iraq and Syria that have killed 1,000 civilians in one month. And, we talk to the developer of an app that tracks US drone strikes that Apple has censored 13 times.]]>
</itunes:summary>
<itunes:duration>3512</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57d2f170-dcf9-11e6-a5a2-5fc4825a8119]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL9529758061.mp3" length="53079980" type="audio/mpeg" />
</item>
<item>
<title>Could Trump Start World War III?</title>
<description>Donald Trump has not started any new wars… yet. But his administration is pouring gasoline on several initiated by his predecessors. This week on Intercepted: US forces are deploying in Syria, as drone strikes expand in Yemen. And Russia and Iran loom over everything. We talk to veteran war correspondents Anand Gopal and Iona Craig. Glenn Greenwald analyzes James Comeys testimony on Capitol Hill and exposes a major lie spread about Edward Snowden. Actor William Camp “stars” in the real life story of the spy who became “the Socrates of the NSA.”</description>
<pubDate>Wed, 22 Mar 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump has not started any new wars… yet. But his administration is pouring gasoline on several initiated by his predecessors. </itunes:subtitle>
<itunes:summary>
<![CDATA[Donald Trump has not started any new wars… yet. But his administration is pouring gasoline on several initiated by his predecessors. This week on Intercepted: US forces are deploying in Syria, as drone strikes expand in Yemen. And Russia and Iran loom over everything. We talk to veteran war correspondents Anand Gopal and Iona Craig. Glenn Greenwald analyzes James Comeys testimony on Capitol Hill and exposes a major lie spread about Edward Snowden. Actor William Camp “stars” in the real life story of the spy who became “the Socrates of the NSA.”]]>
</itunes:summary>
<itunes:duration>3683</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57cc3f10-dcf9-11e6-a5a2-4fe59e09c4e9]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL9134059577.mp3" length="55811761" type="audio/mpeg" />
</item>
<item>
<title>Snowden vs. Trump</title>
<description>This week, Intercepted is live from the SXSW Festival in Austin. Edward Snowden joins us via video feed from Moscow. He discusses Trumps allegations of Obamas wiretapping, analyzes some of the CIAs hacking capabilities, and blasts critics who accuse him of being a Russian agent. And we talk to Libyan-American hip hop artist Kayem, who was forced to keep a low profile the past several years after multiple detentions and visits from the FBI. He shares some verses with Intercepted.</description>
<pubDate>Wed, 15 Mar 2017 10:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Intercepted is live from the SXSW Festival in Austin with Edward Snowden joining via video feed from Moscow. </itunes:subtitle>
<itunes:summary>
<![CDATA[This week, Intercepted is live from the SXSW Festival in Austin. Edward Snowden joins us via video feed from Moscow. He discusses Trumps allegations of Obamas wiretapping, analyzes some of the CIAs hacking capabilities, and blasts critics who accuse him of being a Russian agent. And we talk to Libyan-American hip hop artist Kayem, who was forced to keep a low profile the past several years after multiple detentions and visits from the FBI. He shares some verses with Intercepted.]]>
</itunes:summary>
<itunes:duration>3331</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57c55fa6-dcf9-11e6-a5a2-1f24485c4305]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL3645242256.mp3" length="50191046" type="audio/mpeg" />
</item>
<item>
<title>Ready to Lie</title>
<description>The Notorious B.I.G. famously alleged that federal agents were mad because he was flagrant. Trump also believes he has beef with the Feds, accusing Obama of tapping his phones. The Intercepts Matthew Cole and journalist Marcy Wheeler dissect the accusations and the (curious) denials. Sam Biddle and Josh Begley explain what the CIA hacking docs published by Wikileaks say about our “smart” TVs and phones. Journalist Aura Bogado confronts Trumps assault on undocumented immigrants. Punk band Anti-Flag performs. Plus, Trump “stars” in a scene from Goodfellas. Can he get out of Mar-a-Lago alive?</description>
<pubDate>Wed, 08 Mar 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>The Notorious B.I.G. said federal agents were mad because he was flagrant. President Donald Trump also believes he has beef with the Feds. </itunes:subtitle>
<itunes:summary>
<![CDATA[The Notorious B.I.G. famously alleged that federal agents were mad because he was flagrant. Trump also believes he has beef with the Feds, accusing Obama of tapping his phones. The Intercepts Matthew Cole and journalist Marcy Wheeler dissect the accusations and the (curious) denials. Sam Biddle and Josh Begley explain what the CIA hacking docs published by Wikileaks say about our “smart” TVs and phones. Journalist Aura Bogado confronts Trumps assault on undocumented immigrants. Punk band Anti-Flag performs. Plus, Trump “stars” in a scene from Goodfellas. Can he get out of Mar-a-Lago alive?]]>
</itunes:summary>
<itunes:duration>4182</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57be3b36-dcf9-11e6-a5a2-07d3f1f2cb5f]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL3152884319.mp3" length="63798125" type="audio/mpeg" />
</item>
<item>
<title>Donald in Wonderland</title>
<description>Ex-CIA analyst Nada Bakos and former FBI agent Clint Watts explain how Trumps administration could use “alternative intelligence” to justify dangerous military actions. Shane Bauer of Mother Jones breaks down the connections between immigration raids and soaring private prison profits. Plus the world premiere of a song by the Iraqi-Canadian hip hop artist Narcy. We bet you never thought youd hear Steve Bannons name rapped in autotune.</description>
<pubDate>Wed, 01 Mar 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Pundits are heaping praise on his “presidential” speech to Congress. Dont believe the hype.</itunes:subtitle>
<itunes:summary>
<![CDATA[Ex-CIA analyst Nada Bakos and former FBI agent Clint Watts explain how Trumps administration could use “alternative intelligence” to justify dangerous military actions. Shane Bauer of Mother Jones breaks down the connections between immigration raids and soaring private prison profits. Plus the world premiere of a song by the Iraqi-Canadian hip hop artist Narcy. We bet you never thought youd hear Steve Bannons name rapped in autotune.]]>
</itunes:summary>
<itunes:duration>4196</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57b74678-dcf9-11e6-a5a2-4fbc5ae0d0cf]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL5707421213.mp3" length="64025913" type="audio/mpeg" />
</item>
<item>
<title>The Undisciplined Authoritarian</title>
<description>New York Times investigative reporter James Risen breaks down Trumps declaration that journalists are the enemy and analyzes Trumps royal court. ACLU lawyer Chase Strangio and former New England Patriots star Donté Stallworth talk about the war on the transgender community and the rising resistance of pro athletes. Sam Biddle exposes the Trump-connected firm that helped the NSA spy on the world and actor Wallace Shawn stars as an NSA operative who is worried about adversaries spying on his luncheons. Plus music from Anohni.</description>
<pubDate>Wed, 22 Feb 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Journalist James Risen faced imprisonment under Obamas Justice Department and is preparing to do battle with Donald Trump.</itunes:subtitle>
<itunes:summary>
<![CDATA[New York Times investigative reporter James Risen breaks down Trumps declaration that journalists are the enemy and analyzes Trumps royal court. ACLU lawyer Chase Strangio and former New England Patriots star Donté Stallworth talk about the war on the transgender community and the rising resistance of pro athletes. Sam Biddle exposes the Trump-connected firm that helped the NSA spy on the world and actor Wallace Shawn stars as an NSA operative who is worried about adversaries spying on his luncheons. Plus music from Anohni.]]>
</itunes:summary>
<itunes:duration>4209</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57b018d0-dcf9-11e6-a5a2-e736fa72fede]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL3910130795.mp3" length="64229877" type="audio/mpeg" />
</item>
<item>
<title>We Are All in Trumps Hunger Games Now</title>
<description>The first contestant in Donald Trumps reality administration has left the West Wing. This week, Glenn Greenwald offers some provocative pushback on the Russia fear-mongering surrounding Gen. Michael Flynns resignation (or firing). Naomi Klein walks the dark aisles of the Trump family department store. Former Congresswoman Liz Holtzman, a key figure in the impeachment of Richard Nixon, explains how impeachment actually works. And Hina Shamsi of the ACLU recounts her interrogation at the border. Plus a performance from Jedi Mind Tricks.&amp;nbsp;</description>
<pubDate>Wed, 15 Feb 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>As General Flynn Falls, Glenn Greenwald Blasts the Bipartisan Hypocrisy and Naomi Klein Brands Trump</itunes:subtitle>
<itunes:summary>
<![CDATA[The first contestant in Donald Trumps reality administration has left the West Wing. This week, Glenn Greenwald offers some provocative pushback on the Russia fear-mongering surrounding Gen. Michael Flynns resignation (or firing). Naomi Klein walks the dark aisles of the Trump family department store. Former Congresswoman Liz Holtzman, a key figure in the impeachment of Richard Nixon, explains how impeachment actually works. And Hina Shamsi of the ACLU recounts her interrogation at the border. Plus a performance from Jedi Mind Tricks.&nbsp;]]>
</itunes:summary>
<itunes:duration>3858</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57a87fd0-dcf9-11e6-a5a2-af85a8453351]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL5616910839.mp3" length="58608326" type="audio/mpeg" />
</item>
<item>
<title>Trump's Cabinet of Killers and Why Orange is the New Anti-Black</title>
<description>This week, investigative reporter Allan Nairn breaks down Trump's relationship with the CIA and the killer assembly of neocons and right-wing conspiracists running the U.S. war machine. Princeton professor Keeanga Yamahtta-Taylor dismantles Obama's problematic legacy and offers strategic advice for resisting Trump. The Intercept's own distinguished alt-historian, Jon Schwarz, offers a lesson on the origins of presidential executive orders. And Kimya Dawson gives a raw performance of a new song about racism and the police state.</description>
<pubDate>Wed, 08 Feb 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Less than a month into the new administration, and not even a presidential bath robe can protect President Trump's orange from becoming the new anti-black. </itunes:subtitle>
<itunes:summary>
<![CDATA[This week, investigative reporter Allan Nairn breaks down Trump's relationship with the CIA and the killer assembly of neocons and right-wing conspiracists running the U.S. war machine. Princeton professor Keeanga Yamahtta-Taylor dismantles Obama's problematic legacy and offers strategic advice for resisting Trump. The Intercept's own distinguished alt-historian, Jon Schwarz, offers a lesson on the origins of presidential executive orders. And Kimya Dawson gives a raw performance of a new song about racism and the police state.]]>
</itunes:summary>
<itunes:duration>3752</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57a133b0-dcf9-11e6-a5a2-9f64a29807d9]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL7005027452.mp3" length="56920189" type="audio/mpeg" />
</item>
<item>
<title>Trump Week Two: The Rise of Chief Yookeroo</title>
<description>Donald Trump is signing executive orders like autographed pictures. This week on Intercepted: Two former senior FBI agents blast the “Muslim ban” and Trumps campaign to make torture great again. Constitutional rights lawyers dissect the (il)legalities of Trumps orders. Rep. Barbara Lee confronts the president's terrifying approach to government.&amp;nbsp; New secret documents reveal how Trump could resurrect J. Edgar Hoovers legacy. Brother Ali freestyles a verse, and Peter Sarsgaard stars in the bizarre true story of an NSA operative with vacation tips for deploying to Guantanamo.&amp;nbsp;</description>
<pubDate>Wed, 01 Feb 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>Donald Trump is signing executive orders like autographed pictures. But this isn't a reality show.</itunes:subtitle>
<itunes:summary>
<![CDATA[Donald Trump is signing executive orders like autographed pictures. This week on Intercepted: Two former senior FBI agents blast the “Muslim ban” and Trumps campaign to make torture great again. Constitutional rights lawyers dissect the (il)legalities of Trumps orders. Rep. Barbara Lee confronts the president's terrifying approach to government.&nbsp; New secret documents reveal how Trump could resurrect J. Edgar Hoovers legacy. Brother Ali freestyles a verse, and Peter Sarsgaard stars in the bizarre true story of an NSA operative with vacation tips for deploying to Guantanamo.&nbsp;]]>
</itunes:summary>
<itunes:duration>3358</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57996266-dcf9-11e6-a5a2-4ff22525cee4]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL4823102330.mp3?updated=1485937504" length="50611513" type="audio/mpeg" />
</item>
<item>
<title>The Clock Strikes Thirteen, Donald Trump is President</title>
<description>The clock struck thirteen on January 20, Donald Trump is the president of the United States and episode one of Intercepted is here. Intercept co-founder Glenn Greenwald and editor-in-chief Betsy Reed join Jeremy Scahill for a discussion on the crazy apocalyptic present. They break down Trumps attacks on the media, that insane speech he gave at the CIA and the state of the Democratic party. Naomi Klein sends in a dispatch from the Womens March on Washington. Jeremy goes deep into the secretive world of Seymour Hershs kitchen, and shoots the shit with the legendary Pulitzer Prize-winning journalist about why he calls Trump a “circuit breaker." And we hear a spoken word performance from hip-hop artist Immortal Technique.&amp;nbsp;</description>
<pubDate>Wed, 25 Jan 2017 11:00:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>The clock struck thirteen on January 20, Donald Trump is the president of the United States and Episode One of Intercepted is here.</itunes:subtitle>
<itunes:summary>
<![CDATA[The clock struck thirteen on January 20, Donald Trump is the president of the United States and episode one of Intercepted is here. Intercept co-founder Glenn Greenwald and editor-in-chief Betsy Reed join Jeremy Scahill for a discussion on the crazy apocalyptic present. They break down Trumps attacks on the media, that insane speech he gave at the CIA and the state of the Democratic party. Naomi Klein sends in a dispatch from the Womens March on Washington. Jeremy goes deep into the secretive world of Seymour Hershs kitchen, and shoots the shit with the legendary Pulitzer Prize-winning journalist about why he calls Trump a “circuit breaker." And we hear a spoken word performance from hip-hop artist Immortal Technique.&nbsp;]]>
</itunes:summary>
<itunes:duration>3433</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
<guid isPermaLink="false"><![CDATA[57913302-dcf9-11e6-a5a2-87c6a559fb64]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL1844876464.mp3" length="51822341" type="audio/mpeg" />
</item>
<item>
<title>Introducing Intercepted with Jeremy Scahill</title>
<description>Hear a preview of Intercepted, a new podcast coming January 25 from the people behind the fearless, adversarial journalism of The Intercept. Every week, host Jeremy Scahill will discuss the crucial issues of our time with fellow reporters, and outspoken writers, artists and thinkers.</description>
<pubDate>Fri, 13 Jan 2017 18:38:00 -0000</pubDate>
<itunes:author>The Intercept / Panoply</itunes:author>
<itunes:episodeType>full</itunes:episodeType>
<itunes:subtitle>A preview of Intercepted, a new podcast coming January 25.</itunes:subtitle>
<itunes:summary>
<![CDATA[Hear a preview of Intercepted, a new podcast coming January 25 from the people behind the fearless, adversarial journalism of The Intercept. Every week, host Jeremy Scahill will discuss the crucial issues of our time with fellow reporters, and outspoken writers, artists and thinkers.]]>
</itunes:summary>
<itunes:duration>200</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<guid isPermaLink="false"><![CDATA[e6dc75b4-d9b9-11e6-9bea-d73080315ad2]]></guid>
<enclosure url="https://traffic.megaphone.fm/FL8608731318.mp3?updated=1484685184" length="3202403" type="audio/mpeg" />
</item>
</channel>
</rss>
@@ -0,0 +1,73 @@
<?xml version='1.0' encoding='UTF-8'?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
<channel>
<title>Ελληνοφρένεια</title>
<link>https://ellinofreneia.sealabs.net/feed.rss</link>
<description>Ανεπίσημο feed της Ελληνοφρένειας</description>
<atom:link href="https://ellinofreneia.sealabs.net/feed.rss" rel="self"/>
<copyright>All rights reversed by http://ellinofreneianet.gr/</copyright>
<docs>http://www.rssboard.org/rss-specification</docs>
<generator>python-feedgen</generator>
<image>
<url>https://ellinofreneia.sealabs.net/logo.png</url>
<title>Ελληνοφρένεια</title>
<link>https://ellinofreneia.sealabs.net/feed.rss</link>
</image>
<language>el</language>
<lastBuildDate>Tue, 27 Mar 2018 13:00:56 +0000</lastBuildDate>
<pubDate>Tue, 27 Mar 2018 13:00:56 +0000</pubDate>
<itunes:explicit>no</itunes:explicit>
<itunes:owner>
<itunes:name>Τζένη Μπώτση</itunes:name>
<itunes:email>tbotsi@example.com</itunes:email>
</itunes:owner>
<item>
<title>Η ρ_φ Ελληνοφρένεια της 27ης Μαρτίου 2018</title>
<guid isPermaLink="false">https://ellinofreneia.sealabs.net/audio/%CE%97%20%CF%81_%CF%86%20%CE%95%CE%BB%CE%BB%CE%B7%CE%BD%CE%BF%CF%86%CF%81%CE%AD%CE%BD%CE%B5%CE%B9%CE%B1%20%CF%84%CE%B7%CF%82%2027%CE%B7%CF%82%20%CE%9C%CE%B1%CF%81%CF%84%CE%AF%CE%BF%CF%85%202018.mp3</guid>
<enclosure url="https://ellinofreneia.sealabs.net/audio/%CE%97%20%CF%81_%CF%86%20%CE%95%CE%BB%CE%BB%CE%B7%CE%BD%CE%BF%CF%86%CF%81%CE%AD%CE%BD%CE%B5%CE%B9%CE%B1%20%CF%84%CE%B7%CF%82%2027%CE%B7%CF%82%20%CE%9C%CE%B1%CF%81%CF%84%CE%AF%CE%BF%CF%85%202018.mp3" length="36087430" type="audio/mpeg"/>
<pubDate>Tue, 27 Mar 2018 11:11:02 +0000</pubDate>
<itunes:image href="https://ellinofreneia.sealabs.net/audio/%CE%97%20%CF%81_%CF%86%20%CE%95%CE%BB%CE%BB%CE%B7%CE%BD%CE%BF%CF%86%CF%81%CE%AD%CE%BD%CE%B5%CE%B9%CE%B1%20%CF%84%CE%B7%CF%82%2027%CE%B7%CF%82%20%CE%9C%CE%B1%CF%81%CF%84%CE%AF%CE%BF%CF%85%202018.jpg"/>
<itunes:duration>2257</itunes:duration>
</item>
<item>
<title>Η ρ_φ Ελληνοφρένεια της 26ης Μαρτίου 2018</title>
<guid isPermaLink="false">https://ellinofreneia.sealabs.net/audio/%CE%97%20%CF%81_%CF%86%20%CE%95%CE%BB%CE%BB%CE%B7%CE%BD%CE%BF%CF%86%CF%81%CE%AD%CE%BD%CE%B5%CE%B9%CE%B1%20%CF%84%CE%B7%CF%82%2026%CE%B7%CF%82%20%CE%9C%CE%B1%CF%81%CF%84%CE%AF%CE%BF%CF%85%202018.mp3</guid>
<enclosure url="https://ellinofreneia.sealabs.net/audio/%CE%97%20%CF%81_%CF%86%20%CE%95%CE%BB%CE%BB%CE%B7%CE%BD%CE%BF%CF%86%CF%81%CE%AD%CE%BD%CE%B5%CE%B9%CE%B1%20%CF%84%CE%B7%CF%82%2026%CE%B7%CF%82%20%CE%9C%CE%B1%CF%81%CF%84%CE%AF%CE%BF%CF%85%202018.mp3" length="34974405" type="audio/mpeg"/>
<pubDate>Mon, 26 Mar 2018 11:16:17 +0000</pubDate>
<itunes:image href="https://ellinofreneia.sealabs.net/audio/%CE%97%20%CF%81_%CF%86%20%CE%95%CE%BB%CE%BB%CE%B7%CE%BD%CE%BF%CF%86%CF%81%CE%AD%CE%BD%CE%B5%CE%B9%CE%B1%20%CF%84%CE%B7%CF%82%2026%CE%B7%CF%82%20%CE%9C%CE%B1%CF%81%CF%84%CE%AF%CE%BF%CF%85%202018.jpg"/>
<itunes:duration>2188</itunes:duration>
</item>
<item>
<title>Η ρ_φ Ελληνοφρένεια της 23ης Μαρτίου 2018</title>
<guid isPermaLink="false">https://ellinofreneia.sealabs.net/audio/%CE%97%20%CF%81_%CF%86%20%CE%95%CE%BB%CE%BB%CE%B7%CE%BD%CE%BF%CF%86%CF%81%CE%AD%CE%BD%CE%B5%CE%B9%CE%B1%20%CF%84%CE%B7%CF%82%2023%CE%B7%CF%82%20%CE%9C%CE%B1%CF%81%CF%84%CE%AF%CE%BF%CF%85%202018.mp3</guid>
<enclosure url="https://ellinofreneia.sealabs.net/audio/%CE%97%20%CF%81_%CF%86%20%CE%95%CE%BB%CE%BB%CE%B7%CE%BD%CE%BF%CF%86%CF%81%CE%AD%CE%BD%CE%B5%CE%B9%CE%B1%20%CF%84%CE%B7%CF%82%2023%CE%B7%CF%82%20%CE%9C%CE%B1%CF%81%CF%84%CE%AF%CE%BF%CF%85%202018.mp3" length="38491114" type="audio/mpeg"/>
<pubDate>Fri, 23 Mar 2018 12:11:08 +0000</pubDate>
<itunes:image href="https://ellinofreneia.sealabs.net/audio/%CE%97%20%CF%81_%CF%86%20%CE%95%CE%BB%CE%BB%CE%B7%CE%BD%CE%BF%CF%86%CF%81%CE%AD%CE%BD%CE%B5%CE%B9%CE%B1%20%CF%84%CE%B7%CF%82%2023%CE%B7%CF%82%20%CE%9C%CE%B1%CF%81%CF%84%CE%AF%CE%BF%CF%85%202018.jpg"/>
<itunes:duration>2408</itunes:duration>
</item>
<item>
<title>Η ρ_φ Ελληνοφρένεια της 22ας Μαρτίου 2018</title>
<guid isPermaLink="false">https://ellinofreneia.sealabs.net/audio/%CE%97%20%CF%81_%CF%86%20%CE%95%CE%BB%CE%BB%CE%B7%CE%BD%CE%BF%CF%86%CF%81%CE%AD%CE%BD%CE%B5%CE%B9%CE%B1%20%CF%84%CE%B7%CF%82%2022%CE%B1%CF%82%20%CE%9C%CE%B1%CF%81%CF%84%CE%AF%CE%BF%CF%85%202018.mp3</guid>
<enclosure url="https://ellinofreneia.sealabs.net/audio/%CE%97%20%CF%81_%CF%86%20%CE%95%CE%BB%CE%BB%CE%B7%CE%BD%CE%BF%CF%86%CF%81%CE%AD%CE%BD%CE%B5%CE%B9%CE%B1%20%CF%84%CE%B7%CF%82%2022%CE%B1%CF%82%20%CE%9C%CE%B1%CF%81%CF%84%CE%AF%CE%BF%CF%85%202018.mp3" length="35607613" type="audio/mpeg"/>
<pubDate>Thu, 22 Mar 2018 12:31:20 +0000</pubDate>
<itunes:image href="https://ellinofreneia.sealabs.net/audio/%CE%97%20%CF%81_%CF%86%20%CE%95%CE%BB%CE%BB%CE%B7%CE%BD%CE%BF%CF%86%CF%81%CE%AD%CE%BD%CE%B5%CE%B9%CE%B1%20%CF%84%CE%B7%CF%82%2022%CE%B1%CF%82%20%CE%9C%CE%B1%CF%81%CF%84%CE%AF%CE%BF%CF%85%202018.jpg"/>
<itunes:duration>2227</itunes:duration>
</item>
<item>
<title>Η ρ_φ Ελληνοφρένεια της 21ης Μαρτίου 2018</title>
<guid isPermaLink="false">https://ellinofreneia.sealabs.net/audio/%CE%97%20%CF%81_%CF%86%20%CE%95%CE%BB%CE%BB%CE%B7%CE%BD%CE%BF%CF%86%CF%81%CE%AD%CE%BD%CE%B5%CE%B9%CE%B1%20%CF%84%CE%B7%CF%82%2021%CE%B7%CF%82%20%CE%9C%CE%B1%CF%81%CF%84%CE%AF%CE%BF%CF%85%202018.mp3</guid>
<enclosure url="https://ellinofreneia.sealabs.net/audio/%CE%97%20%CF%81_%CF%86%20%CE%95%CE%BB%CE%BB%CE%B7%CE%BD%CE%BF%CF%86%CF%81%CE%AD%CE%BD%CE%B5%CE%B9%CE%B1%20%CF%84%CE%B7%CF%82%2021%CE%B7%CF%82%20%CE%9C%CE%B1%CF%81%CF%84%CE%AF%CE%BF%CF%85%202018.mp3" length="36459832" type="audio/mpeg"/>
<pubDate>Wed, 21 Mar 2018 12:10:59 +0000</pubDate>
<itunes:image href="https://ellinofreneia.sealabs.net/audio/%CE%97%20%CF%81_%CF%86%20%CE%95%CE%BB%CE%BB%CE%B7%CE%BD%CE%BF%CF%86%CF%81%CE%AD%CE%BD%CE%B5%CE%B9%CE%B1%20%CF%84%CE%B7%CF%82%2021%CE%B7%CF%82%20%CE%9C%CE%B1%CF%81%CF%84%CE%AF%CE%BF%CF%85%202018.jpg"/>
<itunes:duration>2281</itunes:duration>
</item>
<item>
<title>Η ρ_φ Ελληνοφρένεια της 20ης Μαρτίου 2018</title>
<guid isPermaLink="false">https://ellinofreneia.sealabs.net/audio/%CE%97%20%CF%81_%CF%86%20%CE%95%CE%BB%CE%BB%CE%B7%CE%BD%CE%BF%CF%86%CF%81%CE%AD%CE%BD%CE%B5%CE%B9%CE%B1%20%CF%84%CE%B7%CF%82%2020%CE%B7%CF%82%20%CE%9C%CE%B1%CF%81%CF%84%CE%AF%CE%BF%CF%85%202018.mp3</guid>
<enclosure url="https://ellinofreneia.sealabs.net/audio/%CE%97%20%CF%81_%CF%86%20%CE%95%CE%BB%CE%BB%CE%B7%CE%BD%CE%BF%CF%86%CF%81%CE%AD%CE%BD%CE%B5%CE%B9%CE%B1%20%CF%84%CE%B7%CF%82%2020%CE%B7%CF%82%20%CE%9C%CE%B1%CF%81%CF%84%CE%AF%CE%BF%CF%85%202018.mp3" length="34507127" type="audio/mpeg"/>
<pubDate>Tue, 20 Mar 2018 12:11:06 +0000</pubDate>
<itunes:image href="https://ellinofreneia.sealabs.net/audio/%CE%97%20%CF%81_%CF%86%20%CE%95%CE%BB%CE%BB%CE%B7%CE%BD%CE%BF%CF%86%CF%81%CE%AD%CE%BD%CE%B5%CE%B9%CE%B1%20%CF%84%CE%B7%CF%82%2020%CE%B7%CF%82%20%CE%9C%CE%B1%CF%81%CF%84%CE%AF%CE%BF%CF%85%202018.jpg"/>
<itunes:duration>2159</itunes:duration>
</item>
</channel>
</rss>
+45
View File
@@ -0,0 +1,45 @@
# Snapshots of RSS feeds taken with InternetArchive's wayback machine.
## Links
#### Intercepted
Web view: https://web.archive.org/web/20180120083840/https://feeds.feedburner.com/InterceptedWithJeremyScahill
Raw file: https://web.archive.org/web/20180120083840if_/https://feeds.feedburner.com/InterceptedWithJeremyScahill
Updated
* [Web view](https://web.archive.org/web/20180203132146/https://feeds.feedburner.com/InterceptedWithJeremyScahill)
* [Raw file](https://web.archive.org/web/20180203132146/https://feeds.feedburner.com/InterceptedWithJeremyScahill)
#### The TipOff
Web view: https://web.archive.org/web/20180120110727/https://rss.acast.com/thetipoff
Raw file: https://web.archive.org/web/20180120110727if_/https://rss.acast.com/thetipoff
#### Linux Unplugged
Web view: https://web.archive.org/web/20180120110314/https://feeds.feedburner.com/linuxunplugged
Raw file: https://web.archive.org/web/20180120110314if_/https://feeds.feedburner.com/linuxunplugged
#### Steal the stars
Web view: https://web.archive.org/web/20180120104957/https://rss.art19.com/steal-the-stars
Raw file: https://web.archive.org/web/20180120104957if_/https://rss.art19.com/steal-the-stars
#### Greater than Code
Web view: https://web.archive.org/web/20180120104741/https://www.greaterthancode.com/feed/podcast
Raw file: https://web.archive.org/web/20180120104741if_/https://www.greaterthancode.com/feed/podcast
#### Ellinofreneia
Web view: https://web.archive.org/web/20180328083913/https://ellinofreneia.sealabs.net/audio/podcast.rss
Raw file: https://web.archive.org/web/20180328083913if_/https://ellinofreneia.sealabs.net/audio/podcast.rss