package io.micronaut.http.simple.cookies;
import io.micronaut.http.cookie.Cookie;
import io.micronaut.http.cookie.SameSite;
import edu.umd.cs.findbugs.annotations.NonNull;
import java.util.Objects;
import java.util.Optional;
public class SimpleCookie implements Cookie {
private final String name;
private String value;
private String domain;
private String path;
private boolean httpOnly;
private boolean secure;
private long maxAge;
private SameSite sameSite;
public SimpleCookie(String name, String value) {
this.name = name;
this.value = value;
}
@Override
public @NonNull String getName() {
return name;
}
@Override
public @NonNull String getValue() {
return value;
}
@Override
public String getDomain() {
return domain;
}
@Override
public String getPath() {
return path;
}
@Override
public boolean isHttpOnly() {
return httpOnly;
}
@Override
public boolean isSecure() {
return secure;
}
@Override
public long getMaxAge() {
return maxAge;
}
@Override
public Optional<SameSite> getSameSite() {
return Optional.ofNullable(sameSite);
}
@Override
public @NonNull Cookie sameSite(SameSite sameSite) {
this.sameSite = sameSite;
return this;
}
@Override
public @NonNull Cookie maxAge(long maxAge) {
this.maxAge = maxAge;
return this;
}
@Override
public @NonNull Cookie value(@NonNull String value) {
this.value = value;
return this;
}
@Override
public @NonNull Cookie domain(String domain) {
this.domain = domain;
return this;
}
@Override
public @NonNull Cookie path(String path) {
this.path = path;
return this;
}
@Override
public @NonNull Cookie secure(boolean secure) {
this.secure = secure;
return this;
}
@Override
public @NonNull Cookie httpOnly(boolean httpOnly) {
this.httpOnly = httpOnly;
return this;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof Cookie)) {
return false;
}
Cookie that = (Cookie) o;
if (!getName().equals(that.getName())) {
return false;
}
if (getPath() == null) {
if (that.getPath() != null) {
return false;
}
} else if (that.getPath() == null) {
return false;
} else if (!getPath().equals(that.getPath())) {
return false;
}
if (getDomain() == null) {
return that.getDomain() == null;
} else {
return getDomain().equalsIgnoreCase(that.getDomain());
}
}
@Override
public int compareTo(Cookie c) {
int v = getName().compareTo(c.getName());
if (v != 0) {
return v;
}
if (getPath() == null) {
if (c.getPath() != null) {
return -1;
}
} else if (c.getPath() == null) {
return 1;
} else {
v = getPath().compareTo(c.getPath());
if (v != 0) {
return v;
}
}
if (getDomain() == null) {
if (c.getDomain() != null) {
return -1;
}
} else if (c.getDomain() == null) {
return 1;
} else {
v = getDomain().compareToIgnoreCase(c.getDomain());
return v;
}
return 0;
}
@Override
public int hashCode() {
return Objects.hash(name, domain, path);
}
@Override
public String toString() {
StringBuilder buf = new StringBuilder()
.append(getName())
.append('=')
.append(getValue());
if (getDomain() != null) {
buf.append(", domain=")
.append(getDomain());
}
if (getPath() != null) {
buf.append(", path=")
.append(getPath());
}
if (getMaxAge() >= 0) {
buf.append(", maxAge=")
.append(getMaxAge())
.append('s');
}
if (isSecure()) {
buf.append(", secure");
}
if (isHttpOnly()) {
buf.append(", HTTPOnly");
}
if (getSameSite().isPresent()) {
buf.append(", SameSite=").append(getSameSite().get());
}
return buf.toString();
}
}