Exemple #1
0
        /// <summary>
        /// checks if all required parameters are present, and if so, creates a user
        /// </summary>
        /// <param name="email"></param>
        /// <param name="password"></param>
        /// <param name="firstName"></param>
        /// <param name="lastName"></param>
        /// <param name="gender"></param>
        /// <param name="homeTown"></param>
        /// <param name="birthday"></param>
        /// <param name="country"></param>
        /// <param name="language"></param>
        /// <param name="timezone"></param>
        /// <param name="profile"></param>
        /// <param name="image"></param>
        /// <param name="imageThumbnail"></param>
        /// <param name="imagePreview"></param>
        /// <param name="createdByFullName"></param>
        /// <param name="updatedByFullName"></param>
        /// <param name="error"></param>
        /// <returns></returns>
        public static UserModel CreateUserModel(string email, string password, string firstName, string lastName,
            string gender, string homeTown, string birthday, int? country, int? language, int? timezone, string profile,
            string image, string imageThumbnail, string imagePreview, string createdByFullName, string updatedByFullName, out string error)
        {
            error = null;
            //let's check that all necessary parameters have values
            if (string.IsNullOrEmpty(email) && string.IsNullOrEmpty(password) && string.IsNullOrEmpty(gender) &&
                !country.HasValue && !language.HasValue && !timezone.HasValue)
                error = "body-required";
            //now let's check individual parameters
            else if (string.IsNullOrEmpty(email))
                error = "email-attribute-required";
            else if(!Regex.IsMatch(email,@"\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*", RegexOptions.IgnoreCase))
                error = "email-does-not-match-regex";
            else if (string.IsNullOrEmpty(password))
                error = "password-attribute-required";
            else if (string.IsNullOrEmpty(gender))
                error = "gender-attribute-required";
            else if (!country.HasValue)
                error = "country-attibute-required";
            else if (!language.HasValue)
                error = "language-attibute-required";
            else if (!timezone.HasValue)
                error = "timezone-attibute-required";

            //now exclusively for images
            else if (!   (string.IsNullOrEmpty(image) && string.IsNullOrEmpty(imageThumbnail) &&
                string.IsNullOrEmpty(imagePreview)))
            {
                if (string.IsNullOrEmpty(image))
                    error = "image-attribute-required";
                else if (string.IsNullOrEmpty(imageThumbnail))
                    error = "image-thumbnail-attribute-required";
                else if (string.IsNullOrEmpty(imagePreview))
                    error = "image-preview-attribute-required";
            }

            //now explicitlty for the birthday
            DateTime? Birthday = null;
            if(!string.IsNullOrEmpty(birthday))
            {
                try
                {
                    Birthday = Assistant.ConvertToDateTime(birthday);
                }
                catch(Exception ex)
                {
                    error = "birthday-attribute-invalid";
                }

            }

            if (!string.IsNullOrEmpty(error))
                return null;

            UserModel user = new UserModel
            {
                created = DateTime.Now,
                updated = DateTime.Now,

                firstName = string.IsNullOrEmpty(firstName)?null:firstName,
                lastName = string.IsNullOrEmpty(lastName)?null:lastName,
                gender = string.IsNullOrEmpty(gender)?null:gender,
                homeTown = string.IsNullOrEmpty(homeTown)?null:homeTown,
                birthday = Birthday,

                country = country.Value,
                language = language.Value,
                timezone = timezone.Value,

                profile = string.IsNullOrEmpty(profile)?null:profile,
                image = string.IsNullOrEmpty(image)?null:image,
                imageThumbnail = string.IsNullOrEmpty(imageThumbnail)?null:imageThumbnail,
                imagePreview = string.IsNullOrEmpty(imagePreview)?null:imagePreview,

                email = email,
                password = password,

                CreatedByFullName = createdByFullName,
                LastUpdatedByFullName = updatedByFullName,
            };

            return user;
        }
Exemple #2
0
        /// <summary>
        /// GET /users/{id}.
        /// retrieves the profile of an individual User. "id" is User.id or User.email. authentication is required, but any authenticated user can access any profile in the system
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
        public ActionResult Users(string id)
        {
            #region initial steps
            Response.ContentType = Assistant.JsonMimeType;
            if (!CheckAuthentication(UserRole.Any))
            {
                Response.StatusCode = (int)HttpStatusCode.Unauthorized;
                return Json(Assistant.ErrorUnauthorized,JsonRequestBehavior.AllowGet);
            }
            #endregion

            JsonResult jr;
            int? ui = PrepareForUserMinimal(id, out jr);
            if (!ui.HasValue)
                return jr;
            int userId = ui.Value;

            SedogoUser user;
            //id is the user's id
            try
            {
                user = new SedogoUser(fullName, userId);
            }
            catch (Exception ex)
            {
                if (ex.TargetSite.Name.Contains("ReadUserDetails"))
                {
                    //reading attempt failed - it is likely that the user was not found
                    Response.StatusCode = (int)HttpStatusCode.NotFound;
                    return Json(Assistant.ErrorNotFound, JsonRequestBehavior.AllowGet);
                }
                throw;
            }

            //check if any object contains user details
            var suser = new UserModel {
                id = userId,
                created= user.createdDate,
                updated = user.lastUpdatedDate,
                firstName = user.firstName,
                lastName = user.lastName,
                gender=user.gender,
                image = user.profilePicFilename,
                imageThumbnail = user.profilePicThumbnail,
                imagePreview = user.profilePicPreview,
                profile = user.profileText,
                homeTown = user.homeTown,
                birthday = (user.birthday.Ticks>0)?user.birthday:(DateTime?)null,
                country = user.countryID,
                timezone = user.timezoneID,
                language = user.languageID
            };

            return Json(suser.GetDetails(), JsonRequestBehavior.AllowGet);
        }
Exemple #3
0
        /// <summary>
        /// Creates a business object for user
        /// </summary>
        /// <param name="user">a basic set of user's properties</param>
        /// <returns></returns>
        public static Sedogo.BusinessObjects.SedogoUser CreateUserBO(UserModel user)
        {
            Sedogo.BusinessObjects.SedogoUser dbUser = new Sedogo.BusinessObjects.SedogoUser(user.CreatedByFullName);
            if(!string.IsNullOrEmpty(user.firstName)) dbUser.firstName = user.firstName;
            if(!string.IsNullOrEmpty(user.lastName)) dbUser.lastName = user.lastName;
            dbUser.gender = user.gender;
            if (user.birthday.HasValue) dbUser.birthday = user.birthday.Value;

            dbUser.languageID = user.language;
            dbUser.countryID = user.country;
            dbUser.timezoneID = user.timezone;

            dbUser.emailAddress = user.email;

            if(!string.IsNullOrEmpty(user.profile)) dbUser.profileText = user.profile;
            if(!string.IsNullOrEmpty(user.image)) dbUser.profilePicFilename = user.image;
            if(!string.IsNullOrEmpty(user.imageThumbnail)) dbUser.profilePicThumbnail = user.imageThumbnail;
            if(!string.IsNullOrEmpty(user.imagePreview)) dbUser.profilePicPreview = user.imagePreview;

            if (!string.IsNullOrEmpty(user.homeTown)) dbUser.homeTown = user.homeTown;

            return dbUser;
        }