Beispiel #1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        try
        {
            string routeName = Request.QueryString["Route"];

            if (!IsPostBack)
            {
                Route r = DBHelper.GetRoute(routeName);
                if (r != null)
                {
                    string gpxFile = PathFunctions.GetGpxPathFromRouteName(routeName);

                    parser = Helper.GetGpxParser(gpxFile);
                    if (parser != null)
                    {
                        parser.LoadPhothos();
                    }
                    Title = r.Title;
                }
            }
            bool editMode = Request.QueryString["EditMode"] == "true";
            GenerateCustomOptions(editMode);
            ChooseRoute.Visible = editMode;
            if (editMode && FileUploadGpx.HasFile)
            {
                try
                {
                    GpxParser p = new GpxParser();
                    p.Parse(FileUploadGpx.FileContent);
                    if (p.Tracks.Count == 0)
                    {
                        return;
                    }

                    parser = p;
                }
                catch
                {
                }
            }

            if (parser == null)
            {
                parser = GpxParser.FromSession(routeName);
            }
            else
            {
                parser.ToSession(routeName);
            }
        }
        finally
        {
            MapContainer.Visible = parser != null;
        }
    }
Beispiel #2
0
    public void GenerateMarkers()
    {
        Response.Write("<script type=\"text/javascript\">\r\n");
        Response.Write("function addMarkers(){\r\n");
        foreach (Route r in Routes)
        {
            string url = r.GetRouteUrl(editMode);

            string gpxFile = PathFunctions.GetGpxPathFromRouteName(r.Name);

            GpxParser parser = Helper.GetGpxParser(gpxFile);
            if (parser == null)
            {
                continue;
            }

            //TrackPoint p = parser.Tracks[0].Segments[0].Points[0];
            GenericPoint p           = parser.MediumPoint;
            string       color       = r.Draft ? "red" : "blue";
            string       title       = r.Title.Replace("'", "\\'") + (r.Draft ? " (bozza)" : "");
            string       name        = r.Name;
            string       description = string.Format("<iframe scrolling=\"no\" frameborder=\"no\" src=\"/RouteData.aspx?name={0}\"/>", r.Name);
            string       icon        = r.Draft ? "/Images/draft_marker.png" : "";
            string       imageFolder = PathFunctions.GetImagePathFromGpx(gpxFile);
            string       imageFile   = Path.Combine(imageFolder, string.IsNullOrEmpty(r.Image) ? "" : r.Image);
            if (!File.Exists(imageFile))
            {
                string[] files = Directory.GetFiles(imageFolder, "*.jpg");
                if (files.Length > 0)
                {
                    imageFile = files[0];
                }
                else
                {
                    imageFile = "";
                }
            }
            string thumbFile = imageFile.Length == 0 ? "" : PathFunctions.GetThumbFile(imageFile);
            string photo     = thumbFile.Length == 0 ? "" : PathFunctions.GetUrlFromPath(thumbFile, false).Replace("'", "\\'");
            Response.Write(string.Format(
                               "GV_Draw_Marker({{ lat: {0}, lon: {1}, name: '{2}', desc: '{3}', color: '{4}', icon: '{5}', photo: '{6}', url: '{7}', route_name:'{8}', draw_track: true }});\r\n",
                               p.lat.ToString(System.Globalization.CultureInfo.InvariantCulture),
                               p.lon.ToString(System.Globalization.CultureInfo.InvariantCulture),
                               title,
                               description,
                               color,
                               icon,
                               photo,
                               url,
                               name));
        }


        Response.Write("}\r\n");
        Response.Write("</script>\r\n");
    }
Beispiel #3
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (Page.IsPostBack)
        {
            return;
        }

        if (string.IsNullOrEmpty(RouteName))
        {
            RouteName = Path.GetFileName(Page.MapPath("."));
        }
        string    gpxFullPath = PathFunctions.GetGpxPathFromRouteName(RouteName);
        GpxParser parser      = Helper.GetGpxParser(gpxFullPath);

        if (parser == null)
        {
            return;
        }

        MapLink.NavigateUrl = string.Format("~/Routes/Map.aspx?Route={0}", RouteName);
        ProfileImage.Src    = Helper.GenerateProfileFile(gpxFullPath);

        int countryCode = 0;

        countryCode = parser.CountryCode;
        string zipPath = parser.ZippedFile;

        HyperLinkToGps.NavigateUrl = PathFunctions.GetUrlFromPath(zipPath, true);

        if (countryCode != 0)
        {
            MeteoFrame.Attributes["src"] = string.Format("http://www.ilmeteo.it/script/meteo.php?id=free&citta={0}", countryCode);
        }
        else
        {
            MeteoFrame.Visible = false;
        }

        FBLike.Attributes["src"] = string.Format(
            "http://www.facebook.com/widgets/like.php?href={0}",
            HttpUtility.UrlEncode(Page.Request.Url.ToString()));

        MTBUser user = LoginState.User;

        if (user == null)
        {
            Rank.SelectedIndex = -1;
        }
        else
        {
            Rank r = DBHelper.GetRank(user.Id, GetRoute().Id);
            Rank.SelectedIndex = r == null ? -1 : r.RankNumber - 1;
        }
    }
Beispiel #4
0
    protected void ButtonSave_Click(object sender, EventArgs e)
    {
        string routeName = RouteName.Value;

        try
        {
            if (string.IsNullOrEmpty(routeName))
            {
                return;
            }
            //non posso salvare una traccia che appartiene ad un alro utente
            //(se mai riesco a editarla)
            if (route != null && route.OwnerId != LoginState.User.Id)
            {
                return;
            }

            //calcolo l'immagine principale
            UploadedImages list = UploadedImages.FromSession(RouteName.Value);
            mainImage = "";
            foreach (MyRadioButton btn in buttons)
            {
                if (btn.Checked)
                {
                    mainImage = Path.GetFileName(btn.Image.File);
                    break;
                }
            }

            if (route == null)
            {
                route = new Route();
            }

            //assegno i dati al record
            route.Image   = mainImage;
            route.Name    = routeName;
            route.OwnerId = LoginState.User.Id;
            int c = 0;
            if (int.TryParse(TextBoxCiclyng.Text, out c))
            {
                route.Cycling = c;
            }
            route.Title       = TextBoxTitle.Text;
            route.Description = TextBoxDescription.Text;
            route.Difficulty  = TextBoxDifficulty.Text;

            //salvo il file gpx
            GpxParser parser = GpxParser.FromSession(routeName);
            if (parser != null)
            {
                string gpxFile = PathFunctions.GetGpxPathFromRouteName(routeName);
                string path    = Path.GetDirectoryName(gpxFile);
                if (!Directory.Exists(path))
                {
                    Directory.CreateDirectory(path);
                }

                parser.Save(gpxFile);
            }

            //salvo le immagini
            string imageFolder = PathFunctions.GetImagePathFromRouteName(routeName);
            if (!Directory.Exists(imageFolder))
            {
                Directory.CreateDirectory(imageFolder);
            }
            foreach (UploadedImage ui in list)
            {
                ui.SaveTo(imageFolder);
            }
            //elimino una eventuale cache
            Helper.ClearImageCache(imageFolder);
            //forzo la generazione dei thumbnails
            Helper.GetImageCache(imageFolder);

            bool published = CheckBoxPublished.Checked;
            route.Draft = !published;
            //salvo il record
            DBHelper.SaveRoute(route);

            if (published)
            {
                //mando una mail agli utenti registrati
                string msg = string.Format("Ciao biker!<br/>L'utente {0} ha inserito o modificato il percorso<br/><a target=\"route\" href=\"{1}\">{2}</a><br/>Scarica il tracciato e vieni a provarlo!<br/><br/>MTB Scout",
                                           LoginState.User.DisplayName,
                                           "http://www.mtbscout.it" + route.GetRouteUrl(false),
                                           route.Title
                                           );
                foreach (MTBUser u in DBHelper.Users)
                {
                    if (u.SendMail)
                    {
                        Helper.SendMail(u.EMail, null, null, "Inserimento/modifica percorso", msg, true);
                    }
                }
            }
            ScriptManager.RegisterStartupScript(this, GetType(), "MessageOK", "alert('Informazioni salvate correttamente.');", true);
        }
        catch (Exception ex)
        {
            Log.Add("Error saving route '{0}': '{1}'", routeName, ex.ToString());
            ScriptManager.RegisterStartupScript(this, GetType(), "Error", string.Format("alert('Errore durante il salvataggio: {0}.');", ex.Message.Replace("'", "\\'")), true);
        }
    }