2021-07-16 22:56:41 +00:00
|
|
|
<template>
|
|
|
|
<div class="uk-vertical-align uk-text-center uk-height-1-1 ">
|
|
|
|
<form class="uk-panel uk-panel-box">
|
|
|
|
<div class="uk-form-row">
|
|
|
|
<input type="file" @change="fileChange" ref="fileSelector" />
|
|
|
|
</div>
|
|
|
|
<div class="uk-form-row">
|
|
|
|
<b>Selected Subscriptions: {{ selectedSubscriptions }}</b>
|
|
|
|
</div>
|
2021-08-28 07:57:16 +00:00
|
|
|
<div class="uk-form-row">
|
|
|
|
<b>Override: <input class="uk-checkbox" v-model="override" type="checkbox"/></b>
|
|
|
|
</div>
|
2021-07-16 22:56:41 +00:00
|
|
|
<div class="uk-form-row">
|
|
|
|
<a
|
|
|
|
class="uk-width-1-1 uk-button uk-button-primary uk-button-large uk-width-auto"
|
|
|
|
style="background: #222"
|
|
|
|
@click="handleImport"
|
|
|
|
>Import</a
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<br />
|
|
|
|
<b>Importing Subscriptions from YouTube</b>
|
|
|
|
<br />
|
|
|
|
<div>
|
|
|
|
Open
|
|
|
|
<a href="https://takeout.google.com/takeout/custom/youtube">takeout.google.com/takeout/custom/youtube</a>
|
|
|
|
<br />
|
|
|
|
In "Select data to include", click on "All YouTube data included" and select only "subscriptions".
|
|
|
|
<br />
|
|
|
|
Create the export and download the zip file.
|
|
|
|
<br />
|
|
|
|
Extract subscriptions.json from the zip file.
|
|
|
|
<br />
|
|
|
|
Select and import the file above.
|
|
|
|
</div>
|
|
|
|
<br />
|
|
|
|
<b>Importing Subscriptions from Invidious</b>
|
|
|
|
<br />
|
|
|
|
<div>
|
|
|
|
Open
|
|
|
|
<a href="https://invidio.us/data_control">invidiou.us/data_control</a>
|
|
|
|
<br />
|
|
|
|
Click on any of the export options.
|
|
|
|
<br />
|
|
|
|
Select and import the file above.
|
|
|
|
</div>
|
|
|
|
<br />
|
|
|
|
<b>Importing Subscriptions from NewPipe</b>
|
|
|
|
<br />
|
|
|
|
<div>
|
|
|
|
Go to the Feed tab.
|
|
|
|
<br />
|
|
|
|
Click on the arrow on where it says "Subscriptions".
|
|
|
|
<br />
|
|
|
|
Save the file somewhere.
|
|
|
|
<br />
|
|
|
|
Select and import the file above.
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
subscriptions: [],
|
2021-08-28 07:57:16 +00:00
|
|
|
override: false,
|
2021-07-16 22:56:41 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
selectedSubscriptions() {
|
|
|
|
return this.subscriptions.length;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
activated() {
|
|
|
|
if (!this.authenticated) this.$router.push("/login");
|
2021-07-21 10:59:53 +00:00
|
|
|
document.title = "Import - Piped";
|
2021-07-16 22:56:41 +00:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
fileChange() {
|
|
|
|
this.$refs.fileSelector.files[0].text().then(text => {
|
|
|
|
this.subscriptions = [];
|
|
|
|
|
|
|
|
// Invidious
|
|
|
|
if (text.indexOf("opml") != -1) {
|
|
|
|
const parser = new DOMParser();
|
|
|
|
const xmlDoc = parser.parseFromString(text, "text/xml");
|
|
|
|
xmlDoc.querySelectorAll("outline[xmlUrl]").forEach(item => {
|
|
|
|
const url = item.getAttribute("xmlUrl");
|
|
|
|
const id = url.substr(-24);
|
|
|
|
this.subscriptions.push(id);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
// NewPipe
|
|
|
|
if (text.indexOf("app_version") != -1) {
|
|
|
|
const json = JSON.parse(text);
|
|
|
|
json.subscriptions
|
|
|
|
.filter(item => item.service_id == 0)
|
|
|
|
.forEach(item => {
|
|
|
|
const url = item.url;
|
|
|
|
const id = url.substr(-24);
|
|
|
|
this.subscriptions.push(id);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
// Invidious JSON
|
|
|
|
if (text.indexOf("thin_mode") != -1) {
|
|
|
|
const json = JSON.parse(text);
|
|
|
|
this.subscriptions = json.subscriptions;
|
|
|
|
}
|
2021-07-27 17:44:31 +00:00
|
|
|
// Google Takeout JSON
|
2021-07-16 22:56:41 +00:00
|
|
|
if (text.indexOf("contentDetails") != -1) {
|
|
|
|
const json = JSON.parse(text);
|
|
|
|
json.forEach(item => {
|
|
|
|
const id = item.snippet.resourceId.channelId;
|
|
|
|
this.subscriptions.push(id);
|
|
|
|
});
|
|
|
|
}
|
2021-07-27 17:44:31 +00:00
|
|
|
|
|
|
|
// Google Takeout CSV
|
2021-07-29 19:37:04 +00:00
|
|
|
if (text.indexOf("Channel Id,") != -1 || text.indexOf("Channel ID,") != -1) {
|
2021-07-27 17:44:31 +00:00
|
|
|
const lines = text.split("\n");
|
|
|
|
for (let i = 1; i < lines.length; i++) {
|
|
|
|
const line = lines[i];
|
|
|
|
const id = line.substr(0, line.indexOf(","));
|
|
|
|
if (id.length === 24) this.subscriptions.push(id);
|
|
|
|
}
|
|
|
|
}
|
2021-07-16 22:56:41 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
handleImport() {
|
2021-08-28 07:57:16 +00:00
|
|
|
this.fetchJson(
|
|
|
|
this.apiUrl() + "/import",
|
|
|
|
{
|
|
|
|
override: this.override,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
method: "POST",
|
|
|
|
headers: {
|
|
|
|
Authorization: this.getAuthToken(),
|
|
|
|
},
|
|
|
|
body: JSON.stringify(this.subscriptions),
|
2021-07-16 22:56:41 +00:00
|
|
|
},
|
2021-08-28 07:57:16 +00:00
|
|
|
).then(json => {
|
2021-07-16 22:56:41 +00:00
|
|
|
if (json.message === "ok") window.location = "/feed";
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|