All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.social.facebook.api.impl.json.UserMixin Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2015 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.springframework.social.facebook.api.impl.json;

import java.io.IOException;
import java.util.Date;
import java.util.List;
import java.util.Locale;

import org.springframework.social.facebook.api.AgeRange;
import org.springframework.social.facebook.api.CoverPhoto;
import org.springframework.social.facebook.api.EducationExperience;
import org.springframework.social.facebook.api.Experience;
import org.springframework.social.facebook.api.Location;
import org.springframework.social.facebook.api.PaymentPricePoints;
import org.springframework.social.facebook.api.Reference;
import org.springframework.social.facebook.api.User;
import org.springframework.social.facebook.api.VideoUploadLimits;
import org.springframework.social.facebook.api.WorkEntry;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;

/**
 * Annotated mixin to add Jackson annotations to {@link User}. 
 * @author Craig Walls
 */
@JsonIgnoreProperties(ignoreUnknown = true)
abstract class UserMixin extends FacebookObjectMixin {

	@JsonProperty("id")
	String id;
	
	@JsonProperty("about")
	String about;
	
	@JsonProperty("address")
	Location address;
	
	@JsonProperty("name")
	String name;
	
	@JsonProperty("name_format")
	String nameFormat;
	
	@JsonProperty("first_name")
	String firstName;
	
	@JsonProperty("last_name")
	String lastName;
	
	@JsonProperty("cover")
	CoverPhoto cover;
	
	@JsonProperty("gender")
	String gender;
	
	@JsonProperty("installed")
	boolean installed;
	
	@JsonProperty("install_type")
	String installType;
	
	@JsonProperty("locale")
	Locale locale;
	
	@JsonProperty("middle_name")
	String middleName;

	@JsonProperty("work")
	List work;
	
	@JsonProperty("education")
	List education;
	
	@JsonProperty("email")
	String email;
	
	@JsonProperty("link")
	String link;
	
	@JsonProperty("third_party_id")
	String thirdPartyId;
	
	@JsonProperty("timezone")
	Float timezone;
	
	@JsonProperty("updated_time")
	Date updatedTime;
	
	@JsonProperty("verified")
	Boolean verified; 
	
	@JsonProperty("bio")
	String bio;
	
	@JsonProperty("birthday")
	String birthday;
	
	@JsonProperty("location")
	Reference location;
	
	@JsonProperty("hometown")
	Reference hometown;
	
	@JsonProperty("interested_in")
	List interestedIn;
	
	@JsonProperty("inspirational_people")
	List inspirationalPeople;

	@JsonProperty("is_verified")
	boolean isIdentityVerified;
	
	@JsonProperty("languages")
	List languages;
	
	@JsonProperty("meeting_for")
	List meetingFor;
	
	@JsonProperty("favorite_teams")
	List favoriteTeams;
	
	@JsonProperty("favorite_athletes")
	List favoriteAthletes;

	@JsonProperty("religion")
	String religion;

	@JsonProperty("payment_pricepoints")
	PaymentPricePoints paymentPricePoints;
	
	@JsonProperty("political")
	String political;
	
	@JsonProperty("quotes")
	String quotes;
	
	@JsonProperty("relationship_status")
	String relationshipStatus;
	
	@JsonProperty("significant_other")
	Reference significantOther;
	
	@JsonProperty("sports")
	List sports;
	
	@JsonProperty("test_group")
	int testGroup;
	
	@JsonProperty("video_upload_limits")
	VideoUploadLimits videoUploadLimits;
	
	@JsonProperty("viewer_can_send_gift")
	boolean viewerCanSendGift;
	
	@JsonProperty("website")
	String website;
	
	@JsonProperty("age_range")
	@JsonDeserialize(using=AgeRangeDeserializer.class)
	AgeRange ageRange;

	private static class AgeRangeDeserializer extends JsonDeserializer {
		@Override
		public AgeRange deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException {
			JsonNode ageRangeNode = jp.readValueAs(JsonNode.class);
			JsonNode minNode = (JsonNode) ageRangeNode.get("min");
			JsonNode maxNode = (JsonNode) ageRangeNode.get("max");
			Integer min = minNode != null ? minNode.asInt() : null;
			Integer max = maxNode != null ? maxNode.asInt() : null;
			return AgeRange.fromMinMax(min, max);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy