| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| RtLabel |
|
| 1.0;1 | ||||
| RtLabel$AjcClosure1 |
|
| 1.0;1 | ||||
| RtLabel$AjcClosure3 |
|
| 1.0;1 | ||||
| RtLabel$AjcClosure5 |
|
| 1.0;1 | ||||
| RtLabel$AjcClosure7 |
|
| 1.0;1 | ||||
| RtLabel$AjcClosure9 |
|
| 1.0;1 |
| 1 | 0 | /** |
| 2 | * Copyright (c) 2013-2017, jcabi.com | |
| 3 | * All rights reserved. | |
| 4 | * | |
| 5 | * Redistribution and use in source and binary forms, with or without | |
| 6 | * modification, are permitted provided that the following conditions | |
| 7 | * are met: 1) Redistributions of source code must retain the above | |
| 8 | * copyright notice, this list of conditions and the following | |
| 9 | * disclaimer. 2) Redistributions in binary form must reproduce the above | |
| 10 | * copyright notice, this list of conditions and the following | |
| 11 | * disclaimer in the documentation and/or other materials provided | |
| 12 | * with the distribution. 3) Neither the name of the jcabi.com nor | |
| 13 | * the names of its contributors may be used to endorse or promote | |
| 14 | * products derived from this software without specific prior written | |
| 15 | * permission. | |
| 16 | * | |
| 17 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
| 18 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT | |
| 19 | * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND | |
| 20 | * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL | |
| 21 | * THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, | |
| 22 | * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | |
| 23 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | |
| 24 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
| 25 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | |
| 26 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
| 27 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | |
| 28 | * OF THE POSSIBILITY OF SUCH DAMAGE. | |
| 29 | */ | |
| 30 | package com.jcabi.github; | |
| 31 | ||
| 32 | import com.jcabi.aspects.Immutable; | |
| 33 | import com.jcabi.aspects.Loggable; | |
| 34 | import com.jcabi.http.Request; | |
| 35 | import java.io.IOException; | |
| 36 | import javax.json.JsonObject; | |
| 37 | import lombok.EqualsAndHashCode; | |
| 38 | ||
| 39 | /** | |
| 40 | * Github label. | |
| 41 | * | |
| 42 | * @author Yegor Bugayenko (yegor@tpc2.com) | |
| 43 | * @version $Id: 6af305f4753fea07f5c532c710f98617ead6ad36 $ | |
| 44 | * @since 0.6 | |
| 45 | * @checkstyle MultipleStringLiterals (500 lines) | |
| 46 | */ | |
| 47 | 0 | @Immutable |
| 48 | @Loggable(Loggable.DEBUG) | |
| 49 | 0 | @EqualsAndHashCode(of = { "request", "owner", "txt" }) |
| 50 | final class RtLabel implements Label { | |
| 51 | ||
| 52 | /** | |
| 53 | * RESTful request. | |
| 54 | */ | |
| 55 | private final transient Request request; | |
| 56 | ||
| 57 | /** | |
| 58 | * Repository we're in. | |
| 59 | */ | |
| 60 | private final transient Repo owner; | |
| 61 | ||
| 62 | /** | |
| 63 | * Name of the label. | |
| 64 | */ | |
| 65 | private final transient String txt; | |
| 66 | ||
| 67 | /** | |
| 68 | * Public ctor. | |
| 69 | * @param req Request | |
| 70 | * @param repo Repository | |
| 71 | * @param name Name of it | |
| 72 | */ | |
| 73 | 6 | RtLabel(final Request req, final Repo repo, final String name) { |
| 74 | 6 | final Coordinates coords = repo.coordinates(); |
| 75 | 6 | this.request = req.uri() |
| 76 | 6 | .path("/repos") |
| 77 | 6 | .path(coords.user()) |
| 78 | 6 | .path(coords.repo()) |
| 79 | 6 | .path("/labels") |
| 80 | 6 | .path(name) |
| 81 | 6 | .back(); |
| 82 | 6 | this.owner = repo; |
| 83 | 6 | this.txt = name; |
| 84 | 6 | } |
| 85 | ||
| 86 | @Override | |
| 87 | public String toString() { | |
| 88 | 0 | return this.request.uri().get().toString(); |
| 89 | } | |
| 90 | ||
| 91 | @Override | |
| 92 | public Repo repo() { | |
| 93 | 0 | return this.owner; |
| 94 | } | |
| 95 | ||
| 96 | @Override | |
| 97 | public String name() { | |
| 98 | 2 | return this.txt; |
| 99 | } | |
| 100 | ||
| 101 | @Override | |
| 102 | public JsonObject json() throws IOException { | |
| 103 | 6 | return new RtJson(this.request).fetch(); |
| 104 | } | |
| 105 | ||
| 106 | @Override | |
| 107 | public void patch(final JsonObject json) throws IOException { | |
| 108 | 2 | new RtJson(this.request).patch(json); |
| 109 | 1 | } |
| 110 | ||
| 111 | @Override | |
| 112 | public int compareTo( | |
| 113 | final Label label | |
| 114 | ) { | |
| 115 | 0 | return label.name().compareTo(label.name()); |
| 116 | } | |
| 117 | ||
| 118 | } |