causefx / Organizr

HTPC/Homelab Services Organizer - Written in PHP
GNU General Public License v3.0
5.15k stars 290 forks source link

Small request with Sickrage homepage guide #872

Closed GroupMaster closed 6 years ago

GroupMaster commented 6 years ago
Organizr Version: V 1.8
Branch: Master
WebSever: Apache
Operating System: Debian

Problem Description:

No problems, just loving it. I do however have feature requests...

I would like to know if it would be possible to include at minimum season & episode numbers for shows on the schedule grid displayed on the homepage. I have had many times where back issues were downloaded and mistaken for the most recent episode due to how generic the info is.

Also, would it be possible to allow for transparent logins to an included wordpress site. A "sign into one, sign into all" sort of thing. I have found that using wordpress inside organizr allows me to not only include all the web interfaces but to include a very capable info site as well. Some features within require a valid login to use and only having to sign in once would be nifty.

Thank you for your time. C


Reproduction Steps:

Errors on screen? If so paste here:

causefx commented 6 years ago

Lemme look into this

Sent from my iPhone

On May 13, 2018, at 5:29 PM, The GroupMaster notifications@github.com wrote:

Organizr Version: V 1.8

Branch: Master

WebSever: Apache

Operating System: Debian

Problem Description:

No problems, just loving it. I do however have feature requests...

I would like to know if it would be possible to include at minimum season & episode numbers for shows on the schedule grid displayed on the homepage. I have had many times where back issues were downloaded and mistaken for the most recent episode due to how generic the info is.

Also, would it be possible to allow for transparent logins to an included wordpress site. A "sign into one, sign into all" sort of thing. I have found that using wordpress inside organizr allows me to not only include all the web interfaces but to include a very capable info site as well. Some features within require a valid login to use and only having to sign in once would be nifty.

Thank you for your time. C

Reproduction Steps:

Errors on screen? If so paste here:

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

causefx commented 6 years ago

So i have checked back thru the docs for sickbeard/Rages API. this is a limitation on their end as they dont really have a calendar-esq api endpoint... I have to use history.... with that being said, im not sure how we could tie in a minimum season number unless it was by show name which is not possible atm.

Here is a sample result of the api output from history:

{
    "data": [
        {
            "date": "2011-08-19 12:58", 
            "episode": 4, 
            "provider": "-1", 
            "quality": "SD TV", 
            "resource": "project.runway.s09e04.all.about.nina.hdtv.xvid-crimson.avi", 
            "resource_path": "C:\\Users\\sickbeard\\Documents\\downloads\\complete\\TV\\Project.Runway.S09E04.All.About.Nina.HDTV.XviD-CRiMSON", 
            "season": 9, 
            "show_name": "Project Runway", 
            "status": "Downloaded", 
            "tvdbid": 74285
        }, 
        {
            "date": "2011-08-19 12:25", 
            "episode": 4, 
            "provider": "NZBs.org", 
            "quality": "SD TV", 
            "resource": "Project.Runway.S09E04.All.About.Nina.HDTV.XviD-CRiMSON", 
            "resource_path": "", 
            "season": 9, 
            "show_name": "Project Runway", 
            "status": "Snatched", 
            "tvdbid": 74285
        }
    ], 
    "message": "", 
    "result": "success"
}
serfilian commented 6 years ago

Not sure if this is still relevant but Sickrage does actually have a calendar located at http://server:port/web_root/calendar (trailing slash would cause an error as documented here: https://github.com/SickRage/SickRage/issues/3879). Would it be possible to add that to organizr calendar?

causefx commented 6 years ago

I believe I added sickrage to v2 already

Sent from my iPhone

On Aug 27, 2018, at 12:41 PM, serfilian notifications@github.com wrote:

Not sure if this is still relevant but Sickrage does actually have a calendar located at http://server:port/web_root/calendar (trailing slash would cause an error as documented here: SickRage/SickRage#3879). Would it be possible to add that to organizr calendar?

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub, or mute the thread.

serfilian commented 6 years ago

Ah, ok. I 'm running V1. Guess I better upgrade then.