Exemplo n.º 1
0
        private void LinkEdit_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            if (TemplateCombo.SelectedItem == null)
            {
                return;
            }

            ProfileTemplate template = (ProfileTemplate)TemplateCombo.SelectedItem;

            if (template.Inactive)
            {
                return;
            }

            // if ondisk, copy before editing
            if (template.OnDisk)
            {
                ProfileTemplate copy = new ProfileTemplate(false, false);
                copy.User = template.User + " (edited)";
                copy.User = copy.User.TrimStart(new char[] { ' ' });
                copy.Html = template.Html;

                template = copy;
            }

            EditTemplate edit = new EditTemplate(template, this);

            edit.ShowDialog(this);
        }
Exemplo n.º 2
0
        public EditTemplate(ProfileTemplate template, EditProfile form)
        {
            InitializeComponent();

            EditForm = form;
            Template = template;
        }
Exemplo n.º 3
0
        public EditTemplate(ProfileTemplate template, EditProfile form)
        {
            InitializeComponent();

            EditForm = form;
            Template = template;
        }
Exemplo n.º 4
0
        private ProfileTemplate GetTemplate(ulong id)
        {
            OpProfile profile = Profiles.GetProfile(id);

            if (profile == null)
            {
                return(null);
            }

            ProfileTemplate template = new ProfileTemplate(false, true);

            template.User     = Core.GetName(id);;
            template.FilePath = Profiles.GetFilePath(profile);
            template.FileKey  = profile.File.Header.FileKey;

            if (!profile.Loaded)
            {
                Profiles.LoadProfile(profile.UserID);
            }

            try
            {
                using (TaggedStream stream = new TaggedStream(template.FilePath, Core.GuiProtocol))
                    using (IVCryptoStream crypto = IVCryptoStream.Load(stream, template.FileKey))
                    {
                        int    buffSize  = 4096;
                        byte[] buffer    = new byte[4096];
                        long   bytesLeft = profile.EmbeddedStart;
                        while (bytesLeft > 0)
                        {
                            int readSize = (bytesLeft > (long)buffSize) ? buffSize : (int)bytesLeft;
                            int read     = crypto.Read(buffer, 0, readSize);
                            bytesLeft -= (long)read;
                        }

                        foreach (ProfileAttachment attach in profile.Attached)
                        {
                            if (attach.Name.StartsWith("template"))
                            {
                                byte[] html = new byte[attach.Size];
                                crypto.Read(html, 0, (int)attach.Size);

                                template.Html = UTF8Encoding.UTF8.GetString(html);
                                SHA1CryptoServiceProvider sha1 = new SHA1CryptoServiceProvider();
                                template.Hash = sha1.ComputeHash(html);

                                break;
                            }
                        }
                    }
            }
            catch
            {
                return(null);
            }

            return(template);
        }
Exemplo n.º 5
0
        private void ButtonOK_Click(object sender, EventArgs e)
        {
            if (TemplateCombo.SelectedItem == null)
            {
                Close();
                return;
            }

            ProfileTemplate template = (ProfileTemplate)TemplateCombo.SelectedItem;

            if (template.Inactive)
            {
                Close();
                return;
            }

            // remove text fields that are not in template
            List <string> removeKeys = new List <string>();

            foreach (string key in TextFields.Keys)
            {
                if (!key.StartsWith("MOTD") && !template.Html.Contains("<?text:" + key))
                {
                    removeKeys.Add(key);
                }
            }

            foreach (string key in removeKeys)
            {
                TextFields.Remove(key);
            }

            // remove files that are not in template
            removeKeys.Clear();

            foreach (string key in FileFields.Keys)
            {
                if (!template.Html.Contains("<?file:" + key))
                {
                    removeKeys.Add(key);
                }
            }

            foreach (string key in removeKeys)
            {
                FileFields.Remove(key);
            }

            // save profile will also update underlying interface
            Profiles.SaveLocal(template.Html, TextFields, FileFields);

            Close();
        }
Exemplo n.º 6
0
        private void LinkNew_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            ProfileTemplate newTemplate = new ProfileTemplate(false, false);

            newTemplate.User = "******";
            newTemplate.Html = "";

            if (NewCount > 0)
            {
                newTemplate.User += " " + NewCount.ToString();
            }
            NewCount++;

            EditTemplate edit = new EditTemplate(newTemplate, this);

            edit.ShowDialog(this);
        }
Exemplo n.º 7
0
        private void LinkPreview_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            if (TemplateCombo.SelectedItem == null)
            {
                return;
            }

            ProfileTemplate template = (ProfileTemplate)TemplateCombo.SelectedItem;

            if (template.Inactive)
            {
                return;
            }

            PreviewTemplate preview = new PreviewTemplate(template.Html, this);

            preview.ShowDialog(this);
        }
Exemplo n.º 8
0
        private void LinkNew_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            ProfileTemplate newTemplate = new ProfileTemplate(false, false);
            newTemplate.User = "******";
            newTemplate.Html = "";

            if (NewCount > 0)
                newTemplate.User += " " + NewCount.ToString();
            NewCount++;

            EditTemplate edit = new EditTemplate(newTemplate, this);
            edit.ShowDialog(this);
        }
Exemplo n.º 9
0
        private void LinkEdit_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            if (TemplateCombo.SelectedItem == null)
                return;

            ProfileTemplate template = (ProfileTemplate)TemplateCombo.SelectedItem;
            if (template.Inactive)
                return;

            // if ondisk, copy before editing
            if (template.OnDisk)
            {
                ProfileTemplate copy = new ProfileTemplate(false, false);
                copy.User = template.User + " (edited)";
                copy.User = copy.User.TrimStart(new char[] { ' ' });
                copy.Html = template.Html;

                template = copy;
            }

            EditTemplate edit = new EditTemplate(template, this);
            edit.ShowDialog(this);
        }
Exemplo n.º 10
0
        private ProfileTemplate GetTemplate(ulong id)
        {
            OpProfile profile = Profiles.GetProfile(id);

            if (profile == null)
                return null;

            ProfileTemplate template = new ProfileTemplate(false, true);

            template.User = Core.GetName(id); ;
            template.FilePath = Profiles.GetFilePath(profile);
            template.FileKey  = profile.File.Header.FileKey;

            if (!profile.Loaded)
                Profiles.LoadProfile(profile.UserID);

            try
            {
                using (TaggedStream stream = new TaggedStream(template.FilePath, Core.GuiProtocol))
                using (IVCryptoStream crypto = IVCryptoStream.Load(stream, template.FileKey))
                {
                    int buffSize = 4096;
                    byte[] buffer = new byte[4096];
                    long bytesLeft = profile.EmbeddedStart;
                    while (bytesLeft > 0)
                    {
                        int readSize = (bytesLeft > (long)buffSize) ? buffSize : (int)bytesLeft;
                        int read = crypto.Read(buffer, 0, readSize);
                        bytesLeft -= (long)read;
                    }

                    foreach (ProfileAttachment attach in profile.Attached)
                        if (attach.Name.StartsWith("template"))
                        {
                            byte[] html = new byte[attach.Size];
                            crypto.Read(html, 0, (int)attach.Size);

                            template.Html = UTF8Encoding.UTF8.GetString(html);
                            SHA1CryptoServiceProvider sha1 = new SHA1CryptoServiceProvider();
                            template.Hash = sha1.ComputeHash(html);

                            break;
                        }
                }
            }
            catch
            {
                return null;
            }

            return template;
        }
Exemplo n.º 11
0
        private void RefreshTemplates()
        {
            Templates.Clear();

            // list chain of command first
            List <ulong> highers = Links.GetUplinkIDs(Core.UserID, 0);

            highers.Reverse();
            highers.Add(Links.LocalTrust.UserID);

            // list higher level users, indent also
            // dont repeat names using same template+
            int space = 0;

            foreach (ulong id in highers)
            {
                ProfileTemplate add = GetTemplate(id);

                if (add == null || add.Hash == null)
                {
                    continue;
                }

                foreach (ProfileTemplate template in TemplateCombo.Items)
                {
                    if (Utilities.MemCompare(add.Hash, template.Hash))
                    {
                        continue;
                    }
                }

                for (int i = 0; i < space; i++)
                {
                    add.User = "******" + add.User;
                }

                TemplateCombo.Items.Add(add);

                space += 4;
            }

            // sort rest alphabetically
            List <ProfileTemplate> templates = new List <ProfileTemplate>();

            // read profile header file
            Profiles.ProfileMap.LockReading(delegate()
            {
                foreach (ulong id in Profiles.ProfileMap.Keys)
                {
                    ProfileTemplate add = GetTemplate(id);

                    if (add == null || add.Hash == null)
                    {
                        continue;
                    }

                    bool dupe = false;

                    foreach (ProfileTemplate template in TemplateCombo.Items)
                    {
                        if (Utilities.MemCompare(add.Hash, template.Hash))
                        {
                            dupe = true;
                        }
                    }

                    foreach (ProfileTemplate template in templates)
                    {
                        if (Utilities.MemCompare(add.Hash, template.Hash))
                        {
                            dupe = true;
                        }
                    }

                    if (!dupe)
                    {
                        templates.Add(add);
                    }
                }
            });

            // add space between chain items and other items
            if (TemplateCombo.Items.Count > 0 && templates.Count > 0)
            {
                TemplateCombo.Items.Add(new ProfileTemplate(true, false));
            }

            templates.Sort();
            foreach (ProfileTemplate template in templates)
            {
                TemplateCombo.Items.Add(template);
            }

            // select local template
            ProfileTemplate local = GetTemplate(Core.UserID);

            if (local != null)
            {
                foreach (ProfileTemplate template in TemplateCombo.Items)
                {
                    if (Utilities.MemCompare(local.Hash, template.Hash))
                    {
                        TemplateCombo.SelectedItem = template;
                        break;
                    }
                }
            }
        }
Exemplo n.º 12
0
        public void TemplateCombo_SelectedIndexChanged(object sender, EventArgs e)
        {
            FieldsCombo.Items.Clear();
            ValueTextBox.Text = "";

            if (TemplateCombo.SelectedItem == null)
            {
                return;
            }

            ProfileTemplate template = (ProfileTemplate)TemplateCombo.SelectedItem;

            if (template.Inactive)
            {
                return;
            }

            List <TemplateTag> tags = new List <TemplateTag>();

            // extract tag names from html
            string html = template.Html;

            // replace fields
            while (html.Contains("<?"))
            {
                int start = html.IndexOf("<?");
                int end   = html.IndexOf("?>");

                if (end == -1)
                {
                    break;
                }

                string fulltag = html.Substring(start, end + 2 - start);
                string tag     = fulltag.Substring(2, fulltag.Length - 4);

                string[] parts = tag.Split(new char[] { ':' });

                if (parts.Length == 2)
                {
                    if (parts[0] == "text")
                    {
                        tags.Add(new TemplateTag(parts[1], ProfileFieldType.Text));
                    }
                    else if (parts[0] == "file")
                    {
                        tags.Add(new TemplateTag(parts[1], ProfileFieldType.File));
                    }
                }

                html = html.Replace(fulltag, "");
            }

            tags.Sort();

            bool motdAdded = false; // add just 1 to change

            foreach (TemplateTag tag in tags)
            {
                // if motd for this project, allow
                if (tag.Name.StartsWith("MOTD"))
                {
                    if (!motdAdded)
                    {
                        tag.Name  = "MOTD";
                        motdAdded = true;
                    }
                    else
                    {
                        continue;
                    }
                }

                FieldsCombo.Items.Add(tag);
            }

            if (FieldsCombo.Items.Count > 0)
            {
                FieldsCombo.SelectedItem = FieldsCombo.Items[0];
                FieldsCombo_SelectedIndexChanged(null, null);
            }
        }