This repository was archived by the owner on Oct 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 868
Expand file tree
/
Copy pathPetData.java
More file actions
145 lines (130 loc) · 4.56 KB
/
PetData.java
File metadata and controls
145 lines (130 loc) · 4.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/**
* Copyright 2016 SmartBear Software
*
* 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 io.swagger.sample.data;
import io.swagger.sample.model.Category;
import io.swagger.sample.model.Pet;
import io.swagger.sample.model.Tag;
import java.util.List;
import java.util.ArrayList;
public class PetData {
static List<Pet> pets = new ArrayList<Pet>();
static List<Category> categories = new ArrayList<Category>();
static {
categories.add(createCategory(1, "Dogs"));
categories.add(createCategory(2, "Cats"));
categories.add(createCategory(3, "Rabbits"));
categories.add(createCategory(4, "Lions"));
pets.add(createPet(1, categories.get(1), "Cat 1", new String[] {
"url1", "url2" }, new String[] { "tag1", "tag2" }, "available"));
pets.add(createPet(2, categories.get(1), "Cat 2", new String[] {
"url1", "url2" }, new String[] { "tag2", "tag3" }, "available"));
pets.add(createPet(3, categories.get(1), "Cat 3", new String[] {
"url1", "url2" }, new String[] { "tag3", "tag4" }, "pending"));
pets.add(createPet(4, categories.get(0), "Dog 1", new String[] {
"url1", "url2" }, new String[] { "tag1", "tag2" }, "available"));
pets.add(createPet(5, categories.get(0), "Dog 2", new String[] {
"url1", "url2" }, new String[] { "tag2", "tag3" }, "sold"));
pets.add(createPet(6, categories.get(0), "Dog 3", new String[] {
"url1", "url2" }, new String[] { "tag3", "tag4" }, "pending"));
pets.add(createPet(7, categories.get(3), "Lion 1", new String[] {
"url1", "url2" }, new String[] { "tag1", "tag2" }, "available"));
pets.add(createPet(8, categories.get(3), "Lion 2", new String[] {
"url1", "url2" }, new String[] { "tag2", "tag3" }, "available"));
pets.add(createPet(9, categories.get(3), "Lion 3", new String[] {
"url1", "url2" }, new String[] { "tag3", "tag4" }, "available"));
pets.add(createPet(10, categories.get(2), "Rabbit 1", new String[] {
"url1", "url2" }, new String[] { "tag3", "tag4" }, "available"));
}
public Pet getPetById(long petId) {
for (Pet pet : pets) {
if (pet.getId() == petId) {
return pet;
}
}
return null;
}
public List<Pet> findPetByStatus(String status) {
String[] statues = status.split(",");
List<Pet> result = new java.util.ArrayList<Pet>();
for (Pet pet : pets) {
for (String s : statues) {
if (s.equals(pet.getStatus())) {
result.add(pet);
}
}
}
return result;
}
public List<Pet> findPetByTags(String tags) {
String[] tagList = tags.split(",");
List<Pet> result = new java.util.ArrayList<Pet>();
for (Pet pet : pets) {
if (null != pet.getTags()) {
for (Tag tag : pet.getTags()) {
for (String tagListString : tagList) {
if (tagListString.equals(tag.getName()))
result.add(pet);
}
}
}
}
return result;
}
public void addPet(Pet pet) {
if (pets.size() > 0) {
for (int i = pets.size() - 1; i >= 0; i--) {
if (pets.get(i).getId() == pet.getId()) {
pets.remove(i);
}
}
}
pets.add(pet);
}
static Pet createPet(long id, Category cat, String name, String[] urls,
String[] tags, String status) {
Pet pet = new Pet();
pet.setId(id);
pet.setCategory(cat);
pet.setName(name);
if (null != urls) {
List<String> urlObjs = new ArrayList<String>();
for (String urlString : urls) {
urlObjs.add(urlString);
}
pet.setPhotoUrls(urlObjs);
}
List<Tag> tagObjs = new java.util.ArrayList<Tag>();
int i = 0;
if (null != tags) {
for (String tagString : tags) {
i = i + 1;
Tag tag = new Tag();
tag.setId(i);
tag.setName(tagString);
tagObjs.add(tag);
}
}
pet.setTags(tagObjs);
pet.setStatus(status);
return pet;
}
static Category createCategory(long id, String name) {
Category category = new Category();
category.setId(id);
category.setName(name);
return category;
}
}