mirror of
				https://github.com/bspeice/UNCCGameDay
				synced 2025-11-04 02:10:35 -05:00 
			
		
		
		
	Get the rate lot function working correctly.
It's a bit funky - requests seem to hit the server about 90% of the time...
This commit is contained in:
		@ -2,6 +2,7 @@ package com.uncc.gameday.registration;
 | 
			
		||||
 | 
			
		||||
import java.util.List;
 | 
			
		||||
 | 
			
		||||
import retrofit.Callback;
 | 
			
		||||
import retrofit.http.*;
 | 
			
		||||
 | 
			
		||||
public interface GamedayService {
 | 
			
		||||
@ -12,7 +13,7 @@ public interface GamedayService {
 | 
			
		||||
	@GET("/lots/{lot}/")
 | 
			
		||||
	ParkingLot listLot(@Path("lot") String lot);
 | 
			
		||||
	
 | 
			
		||||
	@POST("/rating/")
 | 
			
		||||
	void rateLot(@Body RatingChoices rating, @Body ParkingChoices parking_lot);
 | 
			
		||||
	@POST("/rate/")
 | 
			
		||||
	void rateLot(@Body ParkingRating p, Callback<ParkingLot> lot);
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
package com.uncc.gameday.registration;
 | 
			
		||||
 | 
			
		||||
public class ParkingRating {
 | 
			
		||||
public class ParkingRating  {
 | 
			
		||||
	private ParkingChoices parking_lot;
 | 
			
		||||
	private RatingChoices rating;
 | 
			
		||||
	
 | 
			
		||||
 | 
			
		||||
@ -1,10 +1,10 @@
 | 
			
		||||
package com.uncc.gameday.registration;
 | 
			
		||||
 | 
			
		||||
public enum RatingChoices {
 | 
			
		||||
	EMPTY ("EMP"),
 | 
			
		||||
	SCATTERED ("SCT"),
 | 
			
		||||
	BUSY ("BSY"),
 | 
			
		||||
	FULL ("FLL");
 | 
			
		||||
	EMP ("EMPTY"),
 | 
			
		||||
	SCT ("SCATTERED"),
 | 
			
		||||
	BSY ("BUSY"),
 | 
			
		||||
	FLL ("FULL");
 | 
			
		||||
	
 | 
			
		||||
	String choice;
 | 
			
		||||
	RatingChoices(String choice) { this.choice = choice; }
 | 
			
		||||
 | 
			
		||||
@ -2,12 +2,11 @@ package com.uncc.gameday.registration;
 | 
			
		||||
 | 
			
		||||
import java.util.List;
 | 
			
		||||
 | 
			
		||||
import com.uncc.gameday.R;
 | 
			
		||||
 | 
			
		||||
import android.content.Context;
 | 
			
		||||
import android.util.Log;
 | 
			
		||||
import retrofit.RestAdapter;
 | 
			
		||||
import retrofit.RetrofitError;
 | 
			
		||||
import retrofit.RestAdapter.LogLevel;
 | 
			
		||||
import android.content.Context;
 | 
			
		||||
 | 
			
		||||
import com.uncc.gameday.R;
 | 
			
		||||
 | 
			
		||||
public class RegistrationClient {
 | 
			
		||||
	
 | 
			
		||||
@ -33,11 +32,14 @@ public class RegistrationClient {
 | 
			
		||||
	}
 | 
			
		||||
	
 | 
			
		||||
	public void rateLot(RatingChoices rating, ParkingChoices parkingLot) {
 | 
			
		||||
		gds.rateLot(rating, parkingLot);
 | 
			
		||||
		ParkingRating pRating = new ParkingRating();
 | 
			
		||||
		pRating.setParkingLot(parkingLot);
 | 
			
		||||
		pRating.setRating(rating);
 | 
			
		||||
		gds.rateLot(pRating, null);
 | 
			
		||||
	}
 | 
			
		||||
	
 | 
			
		||||
	public void rateLot(ParkingRating rating) {
 | 
			
		||||
		gds.rateLot(rating.getRating(), rating.getParkingLot());
 | 
			
		||||
		gds.rateLot(rating, null);
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user