/**
 *  Licensed to the Apache Software Foundation (ASF) under one or more
 *  contributor license agreements.  See the NOTICE file distributed with
 *  this work for additional information regarding copyright ownership.
 *  The ASF licenses this file to You 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.wicketTutorial.restexample.resource;

import java.util.ArrayList;
import java.util.List;
import org.wicketTutorial.restexample.domain.PersonPojo;
import org.wicketstuff.rest.annotations.MethodMapping;
import org.wicketstuff.rest.annotations.parameters.RequestBody;
import org.wicketstuff.rest.annotations.parameters.ValidatorKey;
import org.wicketstuff.rest.contenthandling.json.objserialdeserial.GsonObjectSerialDeserial;
import org.wicketstuff.rest.contenthandling.json.webserialdeserial.JsonWebSerialDeserial;
import org.wicketstuff.rest.resource.AbstractRestResource;
import org.wicketstuff.restutils.http.HttpMethod;

public class PersonsRestResource extends AbstractRestResource<JsonWebSerialDeserial> {
    private static final long serialVersionUID = 1L;
    private final List<PersonPojo> persons = new ArrayList<>();

    public PersonsRestResource() {
    super(new JsonWebSerialDeserial(new GsonObjectSerialDeserial()));

        persons.add(new PersonPojo("Freddie Mercury", "fmercury@queen.com", "Eeehooo!"));
        persons.add(new PersonPojo("John Deacon", "jdeacon@queen.com", "bass"));
        persons.add(new PersonPojo("Brian May", "bmay@queen.com", "guitar"));
        persons.add(new PersonPojo("Roger Taylor", "rtaylor@queen.com", "drum"));
    }

    @MethodMapping("/persons")
    public List<PersonPojo> getAllPersons() {
        return persons;
    }

    @MethodMapping(value = "/persons/{personIndex}", httpMethod = HttpMethod.DELETE)
    public void deletePerson(int personIndex) {
        //mock method: do nothing.
    }

    @MethodMapping(value = "/persons", httpMethod = HttpMethod.POST)
    public PersonPojo createPerson(
            @ValidatorKey("personValidator") @RequestBody PersonPojo personPojo) {
        return personPojo;
    }

    @Override
    protected void onInitialize(JsonWebSerialDeserial objSerialDeserial) {
        super.onInitialize(objSerialDeserial);
        registerValidator("personValidator", new PersonPojoValidator());
    }
}