Esempio n. 1
0
        /*
         * public static void LiquidateAllSanctuaries()
         * {
         *  string sql = "Select * from SanctuaryInvestments";
         *  DataTable dt = gData.GetDataTable(sql);
         *
         *  for (int i = 0; i < dt.Rows.Count; i++)
         *  {
         *      double nReq = Math.Round(GetDouble(dt.Rows[i]["Amount"]), 4);
         *      string sUserId = dt.Rows[i]["UserId"].ToString();
         *      IncrementAmountByFloat("SanctuaryInvestments", nReq * -1, sUserId);
         *      AdjBalance(nReq, sUserId, "Sanctuary Liquidation " + nReq.ToString());
         *  }
         * }
         */

        public static string GetSingleTweet(string id)
        {
            if (id == "")
            {
                return("N/A");
            }
            string     sql     = "Select * from Tweet left Join Users on Users.ID = Tweet.UserID where Tweet.id = @id";
            SqlCommand command = new SqlCommand(sql);

            command.Parameters.AddWithValue("@id", id);
            DataTable dt = gData.GetDataTable(command);

            if (dt.Rows.Count < 1)
            {
                return("");
            }
            SavedObject s         = RowToObject(dt.Rows[0]);
            string      sUserPic  = GetAvatar(s.Props.Picture);
            string      sUserName = NotNull(s.Props.UserName);

            if (sUserName == "")
            {
                sUserName = "******";
            }
            string sHTMLBody = ReplaceURLs(s.Props.Body);
            string sBody     = "<div style='min-height:300px'><span style=''>" + sHTMLBody + "</span></div>";
            string div       = "<table style='padding:10px;' width=73%><tr><td>User:<td>" + sUserPic + "</tr>"
                               + "<tr><td>User Name:<td>" + sUserName + "</tr>"
                               + "<tr><td>Added:<td>" + s.Props.Added.ToString() + "</td></tr>"
                               + "<tr><td>Subject:<td>" + s.Props.Subject + "</td></tr>"
                               + "<tr><td>&nbsp;</tr><tr><td width=8%>Body:<td style='border:1px solid lightgrey;min-height:300px' colspan=1 xbgcolor='grey' width=40%>" + sBody + "</td></tr></table>";

            return(div);
        }
Esempio n. 2
0
        public static string GetComments(string id, Page p)
        {
            // Shows the comments section for the object.  Also shows the replies to the comments.
            string     sql     = "Select * from Comments Inner Join Users on Users.ID = Comments.UserID  where comments.ParentID = @id order by comments.added";
            SqlCommand command = new SqlCommand(sql);

            command.Parameters.AddWithValue("@id", id);
            DataTable dt    = gData.GetDataTable(command);
            string    sHTML = "<div><h3>Comments:</h3><br>"
                              + "<table style='padding:10px;' width=73%>"
                              + "<tr><th width=14%>User<th width=10%>Added<th width=64%>Comment</tr>";

            for (int i = 0; i < dt.Rows.Count; i++)
            {
                SavedObject s = RowToObject(dt.Rows[i]);

                string sUserPic = DataOps.GetAvatar(s.Props.Picture);

                string sUserName = NotNull(s.Props.UserName);
                if (sUserName == "")
                {
                    sUserName = "******";
                }
                string sBody = ReplaceURLs(s.Props.Body);

                string div = "<tr><td>" + sUserPic + "<br>" + sUserName + "</br></td><td>" + s.Props.Added.ToString() + "</td><td style='border:1px solid lightgrey'><br>" + sBody
                             + "</td></tr>";
                sHTML += div;
            }
            sHTML += "</table><table width=100%><tr><th colspan=2><h2>Add a Comment:</h2></tr>";

            if (!gUser(p).LoggedIn)
            {
                sHTML += "<tr><td><font color=red>Sorry, you must be logged in to add a comment.</td></tr></table></div>";
                return(sHTML);
            }

            string sButtons = "<tr><td>Comment:</td><td><textarea id='txtComment' name='txtComment' rows=10  style='width: 70%;' cols=70></textarea><br><br><button id='btnSaveComment' name='btnSaveComment' value='Save'>Save Comment</button></tr>";

            sButtons += "</table></div>";

            sHTML += sButtons;
            return(sHTML);
        }
Esempio n. 3
0
        public static string GetTweetList(string sUserId, int days, bool fExcludeUser = false)
        {
            if (sUserId == "" || sUserId == null)
            {
                sUserId = "BAF8C6FE-E1B2-42FB-0000-4A8289A90CA2";  // system user
            }
            string sql = "Select * from Tweet left Join Users on Users.ID = Tweet.UserID left join TweetRead on TweetRead.ParentID=Tweet.ID and TweetRead.UserID = '"
                         + sUserId + "' where tweet.added > getdate()-" + days.ToString() + " order by Tweet.Added desc";
            DataTable dt   = gData.GetDataTable2(sql);
            string    html = "<table class=saved><tr><th>Read?<th width=20%>User</th><th width=20%>Added<th width=50%>Subject";

            if (fExcludeUser)
            {
                html = "<table class=saved><tr><th width=20%>User<th width=20%>Added<th width=50%>Subject";
            }
            for (int y = 0; y < dt.Rows.Count; y++)
            {
                SavedObject s         = RowToObject(dt.Rows[y]);
                string      sUserName = NotNull(s.Props.UserName);
                if (sUserName == "")
                {
                    sUserName = "******";
                }
                string sAnchor    = "<a href='https://foundation.biblepay.org/TweetView.aspx?id=" + s.Props.id.ToString() + "'>";
                string sReadTime  = dt.Rows[y]["ReadTime"].ToNonNullString();
                bool   fBold      = sReadTime == "" ? false : true;
                string sCheckmark = sReadTime != "" ? "<i class='fa fa-check'></i>&nbsp;" : "<i class='fa fa-envelope'></i>&nbsp;";

                string div = "<tr>";
                if (!fExcludeUser)
                {
                    div += GetTd2(dt.Rows[y], "ReadTime", sAnchor, sCheckmark, fBold);
                }

                div += "<td>" + DataOps.GetAvatar(s.Props.Picture) + "&nbsp;" + sUserName + "</td>";

                div += UICommon.GetTd2(dt.Rows[y], "Added", sAnchor, sCheckmark, fBold) + UICommon.GetTd2(dt.Rows[y], "subject", sAnchor, sCheckmark, fBold) + "</tr>";

                html += div + "\r\n";
            }
            html += "</table>";
            return(html);
        }