1 /** 2 * Copyright (c) 2013-2023, 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 (yegor256@gmail.com) 43 * @version $Id: a22209a8cc6a7c1a96f00fda9353d25eae446e73 $ 44 * @since 0.6 45 * @checkstyle MultipleStringLiterals (500 lines) 46 */ 47 @Immutable 48 @Loggable(Loggable.DEBUG) 49 @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 RtLabel(final Request req, final Repo repo, final String name) { 74 final Coordinates coords = repo.coordinates(); 75 this.request = req.uri() 76 .path("/repos") 77 .path(coords.user()) 78 .path(coords.repo()) 79 .path("/labels") 80 .path(name) 81 .back(); 82 this.owner = repo; 83 this.txt = name; 84 } 85 86 @Override 87 public String toString() { 88 return this.request.uri().get().toString(); 89 } 90 91 @Override 92 public Repo repo() { 93 return this.owner; 94 } 95 96 @Override 97 public String name() { 98 return this.txt; 99 } 100 101 @Override 102 public JsonObject json() throws IOException { 103 return new RtJson(this.request).fetch(); 104 } 105 106 @Override 107 public void patch(final JsonObject json) throws IOException { 108 new RtJson(this.request).patch(json); 109 } 110 111 @Override 112 public int compareTo( 113 final Label label 114 ) { 115 return label.name().compareTo(label.name()); 116 } 117 118 }