Skip to content

Commit c715c1d

Browse files
committed
Missing Trakt Scrobbing support
1 parent 59b8737 commit c715c1d

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

JMMContracts/IJMMServerKodi.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ public interface IJMMServerKodi
4747

4848
[OperationContract]
4949
[WebGet(UriTemplate = "Vote/{userid}/{seriesid}/{votevalue}/{votetype}", ResponseFormat = WebMessageFormat.Xml, BodyStyle = WebMessageBodyStyle.Bare)]
50-
void VoteAnime(string userid, string seriesid, string votevalue, string votetype);
50+
System.IO.Stream VoteAnime(string userid, string seriesid, string votevalue, string votetype);
5151

5252
[OperationContract]
53-
[WebGet(UriTemplate = "traktscrobble/{slug_traktid}/{type}/{progress}/{status}", ResponseFormat = WebMessageFormat.Xml, BodyStyle = WebMessageBodyStyle.Bare)]
54-
void TraktScrobble(string slug, string traktid, string type, string progress, string status);
53+
[WebGet(UriTemplate = "TraktScrobble/{animeId}/{type}/{progress}/{status}", ResponseFormat = WebMessageFormat.Xml, BodyStyle = WebMessageBodyStyle.Bare)]
54+
System.IO.Stream TraktScrobble(string animeId, string type, string progress, string status);
5555
}
5656
}

JMMContracts/KodiContracts.cs

+11-9
Original file line numberDiff line numberDiff line change
@@ -224,12 +224,6 @@ public class Video
224224
[XmlAttribute("extraType")]
225225
public string ExtraType { get; set; }
226226

227-
[XmlAttribute("tvdb")]
228-
public string TvDB { get; set; }
229-
230-
[XmlAttribute("trakt")]
231-
public string Trakt { get; set; }
232-
233227
//experiment
234228
[XmlElement("Characters")]
235229
public List<Characters> CharactersList { get; set; }
@@ -462,7 +456,7 @@ public class Stream
462456
}
463457

464458
[XmlType("User")]
465-
public class PlexContract_User
459+
public class KodiContract_User
466460
{
467461
[XmlAttribute("id")]
468462
public string id { get; set; }
@@ -472,10 +466,10 @@ public class PlexContract_User
472466
}
473467

474468
[XmlType("Users")]
475-
public class PlexContract_Users
469+
public class KodiContract_Users
476470
{
477471
[XmlElement("User")]
478-
public List<PlexContract_User> Users { get; set; }
472+
public List<KodiContract_User> Users { get; set; }
479473
}
480474

481475
[XmlType("Extras")]
@@ -544,6 +538,14 @@ public class Character
544538
}
545539
//experimentEND
546540

541+
//better respond than void with blank page
542+
[XmlType("Respond")]
543+
public class Respond
544+
{
545+
[XmlAttribute("Respond")]
546+
public int code { get; set; }
547+
}
548+
547549
public enum JMMType
548550
{
549551
GroupFilter,

0 commit comments

Comments
 (0)