Ejemplo n.º 1
0
        public static string GetChampName(int champId)
        {
            string      jsonraw;
            WebResponse response;
            var         uri = "https://global.api.pvp.net/api/lol/static-data/euw/v1.2/champion/" + champId + "?api_key=" +
                              Keyloader.GetRealKey();
            var connectionListener = WebRequest.Create(uri);

            connectionListener.ContentType = "application/json; charset=utf-8";
            try
            {
                response = connectionListener.GetResponse();
            }
            catch (WebException e)
            {
                MessageBox.Show(e.Message);
                MessageBox.Show(uri);
                response = null;
            }
            // ReSharper disable once AssignNullToNotNullAttribute
            using (var sr = new StreamReader(response.GetResponseStream()))
            {
                jsonraw = sr.ReadToEnd();
            }

            var tempjson = JsonConvert.DeserializeObject <Dictionary <string, string> >(jsonraw);

            return(tempjson["name"]);
        }
Ejemplo n.º 2
0
        private void Connect(object sender, RoutedEventArgs e)
        {
            var playerdivion = string.Empty;
            var cache        = new CacheManager();

            CacheManager.PrepareRoaming(); //Creates Local Files if necessary

            var username = UsernameTextbox.Text;

            if (RegionBox.SelectedItem == null)
            {
                MessageBox.Show("Please select a region");
                return;
            }

            var region = RegionBox.SelectedItem.ToString();
            var key    = ApiKey.Text == string.Empty ? Keyloader.GetRealKey() : ApiKey.Text;
            var db     = new SqlManager();

            if (!db.UserInDatabase(username, region))
            {
                var connection = new Riotconnect(username, region, key);
                if (connection.IsValid())
                {
                    db.InsertUserinDatabase(connection.GetUserId(), region, username, connection.GetUsername(),
                                            connection.GetSummonerLevel(), connection.GetProfileIcon());
                }
                else
                {
                    MessageBox.Show("Connection to the Riot Server failed. Please try again later");
                    db.CloseConnection();
                    return;
                }

                if (db.GetLevel(username, region) == 30)
                {
                    //only starts Ranked Call if Summoner is Level 30
                    var rankedConnection = new RankedHandler(db.GetUserId(username, region), region, key);
                    if (rankedConnection.IsValid())
                    {
                        db.UpdateRank(username, region, rankedConnection.GetRankedSoloTier(),
                                      rankedConnection.GetRankedSoloDivision(), rankedConnection.GetLeagueName(),
                                      rankedConnection.GetLpByUser(username), rankedConnection.GetMiniSeriesUserId(username));
                        var rawIdList = rankedConnection.GetLeagueIdList(rankedConnection.GetRankedSoloDivision(),
                                                                         region);
                        var idList = rawIdList.Split(',');
                        if (idList.Length <= 40)
                        {
                            var multi = new MultipleIdGrabber(rawIdList, region, key);
                            foreach (
                                var user in
                                multi.GetUserDtOs()
                                .Where(
                                    user =>
                                    user.Id != db.GetUserId(username, region) &&
                                    !db.UserInDatabase(user.Name, region)))
                            {
                                db.InsertUserinDatabase(user.Id, region, user.Name, user.Name, user.SummonerLevel,
                                                        user.ProfileIconId);
                                db.UpdateRank(user.Name.ToLower(), region, rankedConnection.GetRankedSoloTier(),
                                              rankedConnection.GetRankedSoloDivision(), rankedConnection.GetLeagueName(),
                                              rankedConnection.GetLpByUser(user.Name),
                                              rankedConnection.GetMiniSeriesUserId(user.Name));
                            }
                        }
                        else
                        {
                            var splitIdList = string.Empty;
                            var m           = 0;
                            var n           = 0;
                            foreach (var id in idList)
                            {
                                if (n < 40)
                                {
                                    splitIdList += id + ",";
                                    m++;
                                    n++;
                                }

                                if (n != 40 && m != idList.Length)
                                {
                                    continue;
                                }

                                var multi = new MultipleIdGrabber(splitIdList, region, key);
                                foreach (
                                    var user in
                                    multi.GetUserDtOs().Where(user => user.Id != db.GetUserId(username, region))
                                    )
                                {
                                    if (!db.UserInDatabase(user.Name, region))
                                    {
                                        db.InsertUserinDatabase(user.Id, region, user.Name, user.Name,
                                                                user.SummonerLevel, user.ProfileIconId);
                                        db.UpdateRank(user.Name.ToLower(), region,
                                                      rankedConnection.GetRankedSoloTier(),
                                                      rankedConnection.GetRankedSoloDivision(),
                                                      rankedConnection.GetLeagueName(),
                                                      rankedConnection.GetLpByUser(user.Name),
                                                      rankedConnection.GetMiniSeriesUserId(user.Name));
                                    }
                                }

                                n           = 0;
                                splitIdList = string.Empty;
                            }
                        }
                    }
                    else
                    {
                        MessageBox.Show("Connection to the Riot Server failed. Please try again later");
                        db.CloseConnection();
                        return;
                    }
                }
                else
                {
                    db.UpdateRank(username, region, "Unranked", null, null, null, null);
                }
            }
            //Sets Name
            UsernameLabel.Text = db.GetName(username, region);

            //Sets Profile Icon
            ProfileIcon.Source = cache.ProfileIcon(db.GetProfileIconId(username, region));

            //Sets Level
            LevelLabel.Text = "Level: " + db.GetLevel(username, region).ToString();

            //Sets Ranked
            Rankstatus.Text     = "Rank: " + db.GetSoloTier(username, region);
            Divisionstatus.Text = "Division: " + db.GetSoloDivision(username, region);
            var uriSource = "pack://application:,,,/RitoConnector;component/Resources/Leagues/" + db.GetSoloTier(username, region) + "_" + db.GetSoloDivision(username, region) + ".png";

            RankedImage.Source = new ImageSourceConverter().ConvertFromString(uriSource) as ImageSource;

            //WIP
            string rankjson;

            if (File.Exists(CacheManager.GetRessources() + db.GetUserId(username, region) + ".json"))
            {
                rankjson = CacheManager.GetJson(db.GetUserId(username, region).ToString());
            }
            else
            {
                MessageBox.Show("Added new user. Please restart to reload");
                Close();
                return;
            }

            var rankedStatus   = JsonConvert.DeserializeObject <RankedDto>(rankjson);
            var nameListLeague = new ObservableCollection <string>();

            foreach (var person in from rank in rankedStatus.RankedId
                     where rank.Queue == "RANKED_SOLO_5x5"
                     from person in rank.Entries
                     where username == person.PlayerOrTeamName
                     select person)
            {
                playerdivion = person.Division;
            }
            var test = (from rankedId in rankedStatus.RankedId
                        where rankedId.Queue == "RANKED_SOLO_5x5"
                        from user in rankedId.Entries
                        where user.Division == playerdivion
                        select user).ToDictionary(user => user.PlayerOrTeamName, user => user.LeaguePoints);
            var sortedDict = from entry in test orderby entry.Value descending select entry;

            foreach (var user in sortedDict)
            {
                if (user.Value == 100)
                {
                    var hotStreak = string.Empty;

                    var user1 = user;
                    foreach (var user2 in from rankedId in rankedStatus.RankedId
                             where rankedId.Queue == "RANKED_SOLO_5x5"
                             from user2 in rankedId.Entries
                             where user2.PlayerOrTeamName == user1.Key
                             select user2)
                    {
                        hotStreak = user2.MiniSeries.Progress;
                    }

                    nameListLeague.Add(user.Key + " " + user.Value + " LP | " +
                                       hotStreak.Replace("N", "_ ").Replace("L", "X").Replace("W", "✓"));
                }
                else
                {
                    nameListLeague.Add(user.Key + " " + user.Value + " LP");
                    //NEW: db.GetLeaguePoints(USERNAME, REGION);
                }
            }

            RankedLeague.ItemsSource = nameListLeague;
            // END WIP

            //Switches to Profile Tab
            Tabs.SelectedIndex = 1;

            var matches = new Matchhistory(db.GetUserId(username, region), region, key);

            if (matches.IsValid())
            {
                foreach (var match in matches.GetGames())
                {
                    _games.Add(match.GameId);
                    var itemBuild = string.Empty;
                    var items     = new int[7];
                    items[0] = match.Stats.Item0;
                    items[1] = match.Stats.Item1;
                    items[2] = match.Stats.Item2;
                    items[3] = match.Stats.Item3;
                    items[4] = match.Stats.Item4;
                    if (match.Stats.Item5 != null)
                    {
                        items[5] = match.Stats.Item5.Value;
                    }
                    else
                    {
                        items[5] = 0;
                    }

                    items[6]  = match.Stats.Item6;
                    itemBuild = items.Aggregate(itemBuild,
                                                (current, element) =>
                                                current +
                                                (" " + ItemConverter.GetItemName(element.ToString(), region, Keyloader.GetRealKey()) + " |"));
                    itemBuild = itemBuild.Remove(0, 1);
                    _matchInfo.Add(match.GameId,
                                   "Champion: " + ChampionTransform.GetChampName(match.ChampionId) + "\n" + "Gamemode: " +
                                   matches.GetGameType(match.GameId) + "\n" + "IP Earned: " + match.IpEarned + "\n" + itemBuild);
                }
                Matchhistorybox.ItemsSource = _games;
            }
            else
            {
                MessageBox.Show("An unknown Error has occured. Please try again later");
            }

            db.CloseConnection();
        }