mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-11-04 03:17:00 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			166 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			166 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <modals-modal v-model="show" name="rss-feed-modal" :width="600" :height="'unset'" :processing="processing">
 | 
						|
    <template #outer>
 | 
						|
      <div class="absolute top-0 left-0 p-5 w-2/3 overflow-hidden">
 | 
						|
        <p class="font-book text-3xl text-white truncate">{{ title }}</p>
 | 
						|
      </div>
 | 
						|
    </template>
 | 
						|
    <div ref="wrapper" class="px-8 py-6 w-full text-sm rounded-lg bg-bg shadow-lg border border-black-300 relative overflow-hidden">
 | 
						|
      <div v-if="currentFeedUrl" class="w-full">
 | 
						|
        <p class="text-lg font-semibold mb-4">Podcast RSS Feed is Open</p>
 | 
						|
 | 
						|
        <div class="w-full relative">
 | 
						|
          <ui-text-input v-model="currentFeedUrl" readonly />
 | 
						|
 | 
						|
          <span class="material-icons absolute right-2 bottom-2 p-0.5 text-base transition-transform duration-100 text-gray-300 hover:text-white transform hover:scale-125 cursor-pointer" @click="copyToClipboard(currentFeedUrl)">content_copy</span>
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
      <div v-else class="w-full">
 | 
						|
        <p class="text-lg font-semibold mb-4">Open RSS Feed</p>
 | 
						|
 | 
						|
        <div class="w-full relative mb-2">
 | 
						|
          <ui-text-input-with-label v-model="newFeedSlug" label="RSS Feed Slug" />
 | 
						|
          <p class="text-xs text-gray-400 py-0.5 px-1">Feed will be {{ demoFeedUrl }}</p>
 | 
						|
        </div>
 | 
						|
 | 
						|
        <p v-if="isHttp" class="w-full pt-2 text-warning text-xs">Warning: Most podcast apps will require the RSS feed URL is using HTTPS</p>
 | 
						|
        <p v-if="hasEpisodesWithoutPubDate" class="w-full pt-2 text-warning text-xs">Warning: 1 or more of your episodes do not have a Pub Date. Some podcast apps require this.</p>
 | 
						|
      </div>
 | 
						|
      <div v-show="userIsAdminOrUp" class="flex items-center pt-6">
 | 
						|
        <div class="flex-grow" />
 | 
						|
        <ui-btn v-if="currentFeedUrl" color="error" small @click="closeFeed">Close RSS Feed</ui-btn>
 | 
						|
        <ui-btn v-else color="success" small @click="openFeed">Open RSS Feed</ui-btn>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
  </modals-modal>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    value: Boolean,
 | 
						|
    libraryItem: {
 | 
						|
      type: Object,
 | 
						|
      default: () => null
 | 
						|
    },
 | 
						|
    feedUrl: String
 | 
						|
  },
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      processing: false,
 | 
						|
      newFeedSlug: null,
 | 
						|
      currentFeedUrl: null
 | 
						|
    }
 | 
						|
  },
 | 
						|
  watch: {
 | 
						|
    show: {
 | 
						|
      immediate: true,
 | 
						|
      handler(newVal) {
 | 
						|
        if (newVal) {
 | 
						|
          this.init()
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    show: {
 | 
						|
      get() {
 | 
						|
        return this.value
 | 
						|
      },
 | 
						|
      set(val) {
 | 
						|
        this.$emit('input', val)
 | 
						|
      }
 | 
						|
    },
 | 
						|
    libraryItemId() {
 | 
						|
      return this.libraryItem.id
 | 
						|
    },
 | 
						|
    media() {
 | 
						|
      return this.libraryItem.media || {}
 | 
						|
    },
 | 
						|
    mediaMetadata() {
 | 
						|
      return this.media.metadata || {}
 | 
						|
    },
 | 
						|
    title() {
 | 
						|
      return this.mediaMetadata.title
 | 
						|
    },
 | 
						|
    userIsAdminOrUp() {
 | 
						|
      return this.$store.getters['user/getIsAdminOrUp']
 | 
						|
    },
 | 
						|
    demoFeedUrl() {
 | 
						|
      return `${window.origin}/feed/${this.newFeedSlug}`
 | 
						|
    },
 | 
						|
    isHttp() {
 | 
						|
      return window.origin.startsWith('http://')
 | 
						|
    },
 | 
						|
    episodes() {
 | 
						|
      return this.media.episodes || []
 | 
						|
    },
 | 
						|
    hasEpisodesWithoutPubDate() {
 | 
						|
      return this.episodes.some((ep) => !ep.pubDate)
 | 
						|
    }
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    openFeed() {
 | 
						|
      if (!this.newFeedSlug) {
 | 
						|
        this.$toast.error('Must set a feed slug')
 | 
						|
        return
 | 
						|
      }
 | 
						|
 | 
						|
      var sanitized = this.$sanitizeSlug(this.newFeedSlug)
 | 
						|
      if (this.newFeedSlug !== sanitized) {
 | 
						|
        this.newFeedSlug = sanitized
 | 
						|
        this.$toast.warning('Slug had to be modified - Run again')
 | 
						|
        return
 | 
						|
      }
 | 
						|
 | 
						|
      const payload = {
 | 
						|
        serverAddress: window.origin,
 | 
						|
        slug: this.newFeedSlug
 | 
						|
      }
 | 
						|
      if (this.$isDev) payload.serverAddress = 'http://localhost:3333'
 | 
						|
 | 
						|
      console.log('Payload', payload)
 | 
						|
      this.$axios
 | 
						|
        .$post(`/api/items/${this.libraryItemId}/open-feed`, payload)
 | 
						|
        .then((data) => {
 | 
						|
          if (data.success) {
 | 
						|
            console.log('Opened RSS Feed', data)
 | 
						|
            this.currentFeedUrl = data.feedUrl
 | 
						|
          } else {
 | 
						|
            const errorMsg = data.error || 'Unknown error'
 | 
						|
            this.$toast.error(errorMsg)
 | 
						|
          }
 | 
						|
        })
 | 
						|
        .catch((error) => {
 | 
						|
          console.error('Failed to open RSS Feed', error)
 | 
						|
          this.$toast.error()
 | 
						|
        })
 | 
						|
    },
 | 
						|
    copyToClipboard(str) {
 | 
						|
      this.$copyToClipboard(str, this)
 | 
						|
    },
 | 
						|
    closeFeed() {
 | 
						|
      this.processing = true
 | 
						|
      this.$axios
 | 
						|
        .$post(`/api/items/${this.libraryItem.id}/close-feed`)
 | 
						|
        .then(() => {
 | 
						|
          this.$toast.success('RSS Feed Closed')
 | 
						|
          this.show = false
 | 
						|
          this.processing = false
 | 
						|
        })
 | 
						|
        .catch((error) => {
 | 
						|
          console.error('Failed to close RSS feed', error)
 | 
						|
          this.processing = false
 | 
						|
          this.$toast.error()
 | 
						|
        })
 | 
						|
    },
 | 
						|
    init() {
 | 
						|
      if (!this.libraryItem) return
 | 
						|
      this.newFeedSlug = this.libraryItem.id
 | 
						|
      this.currentFeedUrl = this.feedUrl
 | 
						|
    }
 | 
						|
  },
 | 
						|
  mounted() {}
 | 
						|
}
 | 
						|
</script>
 |