X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fhttp%2Fpages%2Flocalidentitiespage.cpp;h=f84362e41bcea10547a9aff1a60c8e0a090fecbd;hb=5c0453c8697cfaa843dd7f799e5404733ee56e13;hp=95649d75dd10c6dd51aec35f3a7c9ce56665bad2;hpb=df316253862dc50e8e5a790d9634ef90be37badb;p=fms.git diff --git a/src/http/pages/localidentitiespage.cpp b/src/http/pages/localidentitiespage.cpp index 95649d7..f84362e 100644 --- a/src/http/pages/localidentitiespage.cpp +++ b/src/http/pages/localidentitiespage.cpp @@ -41,15 +41,17 @@ const std::string LocalIdentitiesPage::GeneratePage(const std::string &method, c std::vector singleuse; std::vector publishtrustlist; std::vector publishboardlist; + std::vector publishfreesite; CreateArgArray(queryvars,"chkidentityid",ids); CreateArgArray(queryvars,"singleuse",singleuse); CreateArgArray(queryvars,"publishtrustlist",publishtrustlist); CreateArgArray(queryvars,"publishboardlist",publishboardlist); + CreateArgArray(queryvars,"publishfreesite",publishfreesite); if((*queryvars.find("formaction")).second=="update") { - SQLite3DB::Statement update=m_db->Prepare("UPDATE tblLocalIdentity SET SingleUse=?, PublishTrustList=?, PublishBoardList=? WHERE LocalIdentityID=?;"); + SQLite3DB::Statement update=m_db->Prepare("UPDATE tblLocalIdentity SET SingleUse=?, PublishTrustList=?, PublishBoardList=?, PublishFreesite=? WHERE LocalIdentityID=?;"); for(int i=0; iPrepare("SELECT Name,PublicKey,PrivateKey,SingleUse,PublishTrustList,PublishBoardList FROM tblLocalIdentity WHERE PublicKey IS NOT NULL AND PrivateKey IS NOT NULL;"); + SQLite3DB::Statement exp=m_db->Prepare("SELECT Name,PublicKey,PrivateKey,SingleUse,PublishTrustList,PublishBoardList,PublishFreesite FROM tblLocalIdentity WHERE PublicKey IS NOT NULL AND PrivateKey IS NOT NULL;"); exp.Step(); while(exp.RowReturned()) { @@ -92,6 +95,7 @@ const std::string LocalIdentitiesPage::GeneratePage(const std::string &method, c bool singleuse=false; bool publishtrustlist=false; bool publishboardlist=false; + bool publishfreesite=false; exp.ResultText(0,name); exp.ResultText(1,publickey); @@ -111,8 +115,13 @@ const std::string LocalIdentitiesPage::GeneratePage(const std::string &method, c { publishboardlist=true; } + exp.ResultText(6,tempval); + if(tempval=="true") + { + publishfreesite=true; + } - xml.AddIdentity(name,publickey,privatekey,singleuse,publishtrustlist,publishboardlist); + xml.AddIdentity(name,publickey,privatekey,singleuse,publishtrustlist,publishboardlist,publishfreesite); exp.Step(); } @@ -125,7 +134,7 @@ const std::string LocalIdentitiesPage::GeneratePage(const std::string &method, c IdentityExportXML xml; if(xml.ParseXML((*queryvars.find("file")).second)) { - SQLite3DB::Statement imp=m_db->Prepare("INSERT INTO tblLocalIdentity(Name,PublicKey,PrivateKey,SingleUse,PublishTrustList,PublishBoardList) VALUES(?,?,?,?,?,?);"); + SQLite3DB::Statement imp=m_db->Prepare("INSERT INTO tblLocalIdentity(Name,PublicKey,PrivateKey,SingleUse,PublishTrustList,PublishBoardList,PublishFreesite) VALUES(?,?,?,?,?,?,?);"); for(int i=0; i"; - content+=""; - content+=""; +// content+=""; +// content+=""; + content+="
NameSingle UsePublish Trust ListPublish Board ListAnnounced? *
"; - SQLite3DB::Statement st=m_db->Prepare("SELECT LocalIdentityID,tblLocalIdentity.Name,tblLocalIdentity.PublicKey,tbLLocalIdentity.PublishTrustList,tblLocalIdentity.SingleUse,tblLocalIdentity.PublishBoardList,tblIdentity.IdentityID FROM tblLocalIdentity LEFT JOIN tblIdentity ON tblLocalIdentity.PublicKey=tblIdentity.PublicKey ORDER BY tblLocalIdentity.Name;"); + SQLite3DB::Statement st=m_db->Prepare("SELECT LocalIdentityID,tblLocalIdentity.Name,tblLocalIdentity.PublicKey,tbLLocalIdentity.PublishTrustList,tblLocalIdentity.SingleUse,tblLocalIdentity.PublishBoardList,tblIdentity.IdentityID,tblLocalIdentity.PublishFreesite FROM tblLocalIdentity LEFT JOIN tblIdentity ON tblLocalIdentity.PublicKey=tblIdentity.PublicKey ORDER BY tblLocalIdentity.Name;"); st.Step(); count=0; @@ -203,6 +221,7 @@ const std::string LocalIdentitiesPage::GeneratePage(const std::string &method, c std::string singleuse=""; std::string keypart=""; std::string publishboardlist=""; + std::string publishfreesite=""; st.ResultText(0,id); st.ResultText(1,name); @@ -210,6 +229,7 @@ const std::string LocalIdentitiesPage::GeneratePage(const std::string &method, c st.ResultText(3,publishtrustlist); st.ResultText(4,singleuse); st.ResultText(5,publishboardlist); + st.ResultText(7,publishfreesite); if(publickey.size()>8) { @@ -217,11 +237,12 @@ const std::string LocalIdentitiesPage::GeneratePage(const std::string &method, c } content+=""; - content+=""; - content+=""; +// content+=""; + content+=""; content+=""; content+=""; content+=""; + content+=""; if(st.ResultNull(6)) { content+=""; @@ -230,14 +251,17 @@ const std::string LocalIdentitiesPage::GeneratePage(const std::string &method, c { content+=""; } + content+=""; + content+=""; content+=""; st.Step(); count++; } - content+=""; +// content+=""; content+="
NameSingle UsePublish Trust ListPublish Board ListPublish FreesiteAnnounced? *
"+SanitizeOutput(name+keypart)+"..."+SanitizeOutput(name+keypart)+"..."+CreateTrueFalseDropDown("singleuse["+countstr+"]",singleuse)+""+CreateTrueFalseDropDown("publishtrustlist["+countstr+"]",publishtrustlist)+""+CreateTrueFalseDropDown("publishboardlist["+countstr+"]",publishboardlist)+""+CreateTrueFalseDropDown("publishfreesite["+countstr+"]",publishfreesite)+"NoYes
"; - content+="

* An identity is considered successfully announced when you have downloaded a trust list from someone that contains the identity.

"; + content+="

* An identity is considered successfully announced when you have downloaded a trust list from someone that contains the identity.

"; + content+="

Single Use Identities will automatically be deleted 7 days after creation.

"; return "HTTP/1.1 200 OK\r\nContent-Type: text/html\r\n\r\n"+StringFunctions::Replace(m_template,"[CONTENT]",content); }