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 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169
|
syntax = "proto3";
package gitaly;
import "lint.proto";
import "shared.proto";
option go_package = "gitlab.com/gitlab-org/gitaly/v16/proto/go/gitalypb";
// RepositoryService is a service providing RPCs accessing repositories as a whole.
service RepositoryService {
// This comment is left unintentionally blank.
rpc RepositoryExists(RepositoryExistsRequest) returns (RepositoryExistsResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// RepositorySize returns information on the complete on-disk repository size. If you need more
// detailed information about the size of various sub-structures you should instead use the
// RepositoryInfo RPC.
rpc RepositorySize(RepositorySizeRequest) returns (RepositorySizeResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// RepositoryInfo returns detailed information about a repository and its data structures.
rpc RepositoryInfo(RepositoryInfoRequest) returns (RepositoryInfoResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// ObjectFormat determines the object format that is being used by the repository.
rpc ObjectFormat(ObjectFormatRequest) returns (ObjectFormatResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// This comment is left unintentionally blank.
rpc ApplyGitattributes(ApplyGitattributesRequest) returns (ApplyGitattributesResponse) {
option (op_type) = {
op: MUTATOR
};
}
// FetchRemote fetches references from a remote repository into the local
// repository.
rpc FetchRemote(FetchRemoteRequest) returns (FetchRemoteResponse) {
option (op_type) = {
op: MUTATOR
};
}
// This comment is left unintentionally blank.
rpc CreateRepository(CreateRepositoryRequest) returns (CreateRepositoryResponse) {
option (op_type) = {
op: MUTATOR
};
}
// This comment is left unintentionally blank.
rpc GetArchive(GetArchiveRequest) returns (stream GetArchiveResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// This comment is left unintentionally blank.
rpc HasLocalBranches(HasLocalBranchesRequest) returns (HasLocalBranchesResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// FetchSourceBranch fetches a branch from a second (potentially remote)
// repository into the given repository.
rpc FetchSourceBranch(FetchSourceBranchRequest) returns (FetchSourceBranchResponse) {
option (op_type) = {
op: MUTATOR
};
}
// Fsck checks the repository for consistency via git-fsck(1). This can be used to check for
// repository corruption.
rpc Fsck(FsckRequest) returns (FsckResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// This comment is left unintentionally blank.
rpc WriteRef(WriteRefRequest) returns (WriteRefResponse) {
option (op_type) = {
op: MUTATOR
};
}
// This comment is left unintentionally blank.
rpc FindMergeBase(FindMergeBaseRequest) returns (FindMergeBaseResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// CreateFork creates a new repository from a specific source repository. This new repository will
// have the same branches and tags as the source repository. Internal references will not be
// recreated in the forked repository.
//
// All objects of the source repository will be duplicated, that is there are no space savings by
// creating the repository like this. The newly created repository does not join the object pool
// of the source repository, if there is any.
rpc CreateFork(CreateForkRequest) returns (CreateForkResponse) {
option (op_type) = {
op: MUTATOR
};
}
// This comment is left unintentionally blank.
rpc CreateRepositoryFromURL(CreateRepositoryFromURLRequest) returns (CreateRepositoryFromURLResponse) {
option (op_type) = {
op: MUTATOR
};
}
// CreateBundle creates a bundle from all refs
rpc CreateBundle(CreateBundleRequest) returns (stream CreateBundleResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// CreateBundleFromRefList creates a bundle from a stream of ref patterns.
// When the bundle would be empty the FailedPrecondition error code is returned.
rpc CreateBundleFromRefList(stream CreateBundleFromRefListRequest) returns (stream CreateBundleFromRefListResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// FetchBundle fetches references from a bundle into the local repository.
// Refs will be mirrored to the target repository with the refspec
// "+refs/*:refs/*" and refs that do not exist in the bundle will be removed.
rpc FetchBundle(stream FetchBundleRequest) returns (FetchBundleResponse) {
option (op_type) = {
op: MUTATOR
};
}
// This comment is left unintentionally blank.
rpc CreateRepositoryFromBundle(stream CreateRepositoryFromBundleRequest) returns (CreateRepositoryFromBundleResponse) {
option (op_type) = {
op: MUTATOR
};
}
// GetConfig reads the target repository's gitconfig and streams its contents
// back. Returns a NotFound error in case no gitconfig was found.
rpc GetConfig(GetConfigRequest) returns (stream GetConfigResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// FindLicense looks in the given repository and attempts to detect all the
// details about the license used in the repository.
rpc FindLicense(FindLicenseRequest) returns (FindLicenseResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// This comment is left unintentionally blank.
rpc GetInfoAttributes(GetInfoAttributesRequest) returns (stream GetInfoAttributesResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// This comment is left unintentionally blank.
rpc CalculateChecksum(CalculateChecksumRequest) returns (CalculateChecksumResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// This comment is left unintentionally blank.
rpc GetSnapshot(GetSnapshotRequest) returns (stream GetSnapshotResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// This comment is left unintentionally blank.
rpc CreateRepositoryFromSnapshot(CreateRepositoryFromSnapshotRequest) returns (CreateRepositoryFromSnapshotResponse) {
option (op_type) = {
op: MUTATOR
};
}
// This comment is left unintentionally blank.
rpc GetRawChanges(GetRawChangesRequest) returns (stream GetRawChangesResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// This comment is left unintentionally blank.
rpc SearchFilesByContent(SearchFilesByContentRequest) returns (stream SearchFilesByContentResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// This comment is left unintentionally blank.
rpc SearchFilesByName(SearchFilesByNameRequest) returns (stream SearchFilesByNameResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// RestoreCustomHooks sets the git hooks for a repository. The hooks are sent
// in a tar archive containing a `custom_hooks` directory. This directory is
// ultimately extracted to the repository.
rpc RestoreCustomHooks(stream RestoreCustomHooksRequest) returns (RestoreCustomHooksResponse) {
option (op_type) = {
op: MUTATOR
};
option deprecated = true;
}
// SetCustomHooks sets the git hooks for a repository. The hooks are sent in a
// tar archive containing a `custom_hooks` directory. This directory is
// ultimately extracted to the repository.
rpc SetCustomHooks(stream SetCustomHooksRequest) returns (SetCustomHooksResponse) {
option (op_type) = {
op: MUTATOR
};
}
// BackupCustomHooks fetches the git hooks for a repository. The hooks are
// sent in a tar archive containing a `custom_hooks` directory. If no hooks
// are present in the repository, the response will have no data.
rpc BackupCustomHooks(BackupCustomHooksRequest) returns (stream BackupCustomHooksResponse) {
option (op_type) = {
op: ACCESSOR
};
option deprecated = true;
}
// GetCustomHooks fetches the git hooks for a repository. The hooks are sent
// in a tar archive containing a `custom_hooks` directory. If no hooks are
// present in the repository, the response will have no data.
rpc GetCustomHooks(GetCustomHooksRequest) returns (stream GetCustomHooksResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// This comment is left unintentionally blank.
rpc GetObjectDirectorySize(GetObjectDirectorySizeRequest) returns (GetObjectDirectorySizeResponse) {
option (op_type) = {
op: ACCESSOR
};
}
// RemoveRepository will move the repository to `+gitaly/tmp/<relative_path>_removed` and
// eventually remove it. This ensures that even on networked filesystems the
// data is actually removed even if there's someone still handling the data.
rpc RemoveRepository(RemoveRepositoryRequest) returns (RemoveRepositoryResponse) {
option (op_type) = {
op: MUTATOR
};
}
// This comment is left unintentionally blank.
rpc RenameRepository(RenameRepositoryRequest) returns (RenameRepositoryResponse) {
option (op_type) = {
op: MUTATOR
};
}
// This comment is left unintentionally blank.
rpc ReplicateRepository(ReplicateRepositoryRequest) returns (ReplicateRepositoryResponse) {
option (op_type) = {
op: MUTATOR
};
}
// OptimizeRepository performs all maintenance tasks in a repository to keep
// it in an efficient state. It cleans up stale data, repacks objects,
// updates auxiliary caches like commit-graphs and packs references. The
// optimizations performed are based on heuristics and will adapt to the
// repository's size. This RPC call is designed as a black-box such that
// Gitaly has complete control of the on-disk state of repositories.
rpc OptimizeRepository(OptimizeRepositoryRequest) returns (OptimizeRepositoryResponse) {
option (op_type) = {
op: MAINTENANCE
};
}
// PruneUnreachableObjects will prune all objects which aren't reachable from
// the repository's current set of references. Because pruning can only
// happen for objects which aren't packed, you are required to first run
// OptimizeRepository to explode any unreachable objects into loose objects.
//
// Furthermore, this RPC call has a grace period of 30 minutes: any
// unreachable loose objects must not have been accessed or modified in the
// last 30 minutes. This is a hard requirement to avoid repository corruption.
//
// To make proper use of this RPC you thus need to call OptimizeRepository,
// wait 30 minutes, and then call PruneUnreachableObjects.
rpc PruneUnreachableObjects(PruneUnreachableObjectsRequest) returns (PruneUnreachableObjectsResponse) {
option (op_type) = {
op: MAINTENANCE
};
}
// SetFullPath writes the "gitlab.fullpath" configuration into the
// repository's gitconfig. This is mainly to help debugging purposes in case
// an admin inspects the repository's gitconfig such that he can easily see
// what the repository name is.
rpc SetFullPath(SetFullPathRequest) returns (SetFullPathResponse) {
option deprecated = true;
option (op_type) = {
op: MUTATOR
};
}
// FullPath reads the "gitlab.fullpath" configuration from the repository's
// gitconfig. Returns an error in case the full path has not been configured.
rpc FullPath(FullPathRequest) returns (FullPathResponse) {
option deprecated = true;
option (op_type) = {
op: ACCESSOR
};
}
// RemoveAll deletes all repositories on a specified storage.
rpc RemoveAll(RemoveAllRequest) returns (RemoveAllResponse) {
option (intercepted_method) = true;
}
}
// This comment is left unintentionally blank.
message RepositoryExistsRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
}
// This comment is left unintentionally blank.
message RepositoryExistsResponse {
// This comment is left unintentionally blank.
bool exists = 1;
}
// RepositorySizeRequest is a request for the RepositorySize RPC.
message RepositorySizeRequest {
// Repository is the repository for which to determine the repository size.
Repository repository = 1 [(target_repository)=true];
}
// RepositorySizeResponse is a response for the RepositorySize RPC.
message RepositorySizeResponse {
// Size is the complete size of the on-disk repository in kilobytes. This will include all data
// structures and is similar to `du --summarize --bytes $REPO_PATH`.
int64 size = 1;
}
// RepositoryInfoRequest is a request for the RepositoryInfo RPC.
message RepositoryInfoRequest {
// Repository is the repository to query for information.
Repository repository = 1 [(target_repository)=true];
}
// RepositoryInfoResponse is a response for the RepositoryInfo RPC.
message RepositoryInfoResponse {
// ReferencesInfo hosts information about references.
message ReferencesInfo {
// LooseCount is the number of loose references that exist in the repository. These references
// are written whenever any reference either gets updated or created. Loose references have not
// yet been compressed into a packed format, which is an action that Gitaly performs regularly
// during repository maintenance.
//
// We do not provide the total size of loose references as it is a constant factor of the count
// anyway: `$count * $object_hash_length`.
uint64 loose_count = 1;
// PackedSize is the size of packed references in bytes. Packed references are a more efficient
// way to store loose references. Given that determining the exact amount of references stored
// in packed format would require us to process the complete contents we don't provide the size
// here. A very rough estimate would be: `$size / 100`.
uint64 packed_size = 2;
}
// ObjectsInfo hosts info about objects contained in a repository. It tries to bridge the gap
// between the actual on-disk state that is changing over time as Git introduces new ways to
// perform repository housekeeping and specific classifications of objects.
//
// One of the distinctions is between "recent" and "stale" objects. The set of recent objects
// contains these objects that have either been recently written/accessed or those which are
// reachable via any of the references. Stale objects on the other hand are those that are older
// than a certain grace period and which are not reachable via any reference. The exact details
// when the set of stale and recent objects is updated is an internal implementation detail of
// Gitaly and subject to change. It is safe to assume though that unreachable objects will
// eventually be marked stale when repository housekeeping runs on a repository.
message ObjectsInfo {
// Size is the total size of all objects in the repository in bytes. It makes no distinction
// between the way they are stored or whether they are pending deletion.
uint64 size = 1;
// RecentSize is the total size of all objects in bytes that are considered to be recent. Recent
// objects are likely reachable and will not be considered for deletion.
uint64 recent_size = 2;
// StaleSize is the total size of all objects in bytes that are considered to be stale. Stale
// objects are likely unreachable and will eventually be deleted after a grace period. Objects
// which are part of cruft packs are always considered to be stale.
uint64 stale_size = 3;
// KeepSize is the total size of all kept packfiles. Kept packfiles are packfiles that have a
// `.keep` file accompanying them. Packfiles marked with such a file will never be deleted by
// Git and will thus stay around forever, even if their objects are part of
// other packfiles already.
uint64 keep_size = 4;
}
// Size is the total size of all files part of the repository. It does not include the size of
// directories.
uint64 size = 1;
// References contains information about references.
ReferencesInfo references = 2;
// ObjectsInfo contains information about objects.
ObjectsInfo objects = 3;
}
// ObjectFormatRequest is a request for the ObjectFormat RPC.
message ObjectFormatRequest {
// Repository is the repository for which to determine the object format.
Repository repository = 1 [(target_repository)=true];
}
// ObjectFormatResponse is a response for the ObjectFormat RPC.
message ObjectFormatResponse {
// Format is the object format that the repository uses.
ObjectFormat format = 1;
}
// This comment is left unintentionally blank.
message ApplyGitattributesRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
// This comment is left unintentionally blank.
bytes revision = 2;
}
// This comment is left unintentionally blank.
message ApplyGitattributesResponse {
}
// This comment is left unintentionally blank.
message FetchBundleRequest {
// Repository into which the reference shall be fetched.
Repository repository = 1 [(target_repository)=true];
// Data is the bundle file stream.
bytes data = 2;
// UpdateHead will update HEAD if there is a HEAD reference listed in the bundle
bool update_head = 3;
}
// This comment is left unintentionally blank.
message FetchBundleResponse {
}
// This comment is left unintentionally blank.
message FetchRemoteRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
// force determines if references should be force-updated in case they have
// diverged.
bool force = 3;
// no_tags determines whether tags should be fetched.
bool no_tags = 4;
// timeout specifies a timeout for the fetch.
int32 timeout = 5;
// This comment is left unintentionally blank.
string ssh_key = 6;
// This comment is left unintentionally blank.
string known_hosts = 7;
reserved 8;
// no_prune will the fetch to not prune remote references which do not exist
// in the remote repository anymore.
bool no_prune = 9;
// remote_params specifies the remote repository which should be fetched
// from.
Remote remote_params = 10;
// If check_tags_changed is true, the FetchRemote RPC will check whether any
// tags were modified, returning the result in the tags_changed field of
// FetchRemoteResponse
bool check_tags_changed = 11;
reserved 2;
reserved "remote";
}
// This comment is left unintentionally blank.
message FetchRemoteResponse {
// If check_tags_changed was set in the FetchRemoteRequest, the FetchRemote
// RPC will return false when no tags were changed, and true if tags were
// changed or answer cannot be determined.
bool tags_changed = 1;
}
// This comment is left unintentionally blank.
message CreateRepositoryRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
// Provide a branch name to set as the default branch of a newly created
// repository. Note, this will be treated as the branch name and not a
// fully qualified reference.
bytes default_branch = 2;
// ObjectFormat is the object format the repository should be created with. Note that this is
// experimental and should not be used by callers yet. It is mostly intended for internal testing
// purposes in Gitaly right now.
ObjectFormat object_format = 3;
}
// This comment is left unintentionally blank.
message CreateRepositoryResponse {
}
// This comment is left unintentionally blank.
message GetArchiveRequest {
// This comment is left unintentionally blank.
enum Format {
// This comment is left unintentionally blank.
ZIP = 0; // protolint:disable:this ENUM_FIELD_NAMES_PREFIX ENUM_FIELD_NAMES_ZERO_VALUE_END_WITH
// This comment is left unintentionally blank.
TAR = 1; // protolint:disable:this ENUM_FIELD_NAMES_PREFIX
// This comment is left unintentionally blank.
TAR_GZ = 2; // protolint:disable:this ENUM_FIELD_NAMES_PREFIX
// This comment is left unintentionally blank.
TAR_BZ2 = 3; // protolint:disable:this ENUM_FIELD_NAMES_PREFIX
}
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
// This comment is left unintentionally blank.
string commit_id = 2;
// This comment is left unintentionally blank.
string prefix = 3;
// This comment is left unintentionally blank.
Format format = 4;
// This comment is left unintentionally blank.
bytes path = 5;
// This comment is left unintentionally blank.
repeated bytes exclude = 6; // protolint:disable:this REPEATED_FIELD_NAMES_PLURALIZED
// If `elide_path` is true and `path` refers to a subdirectory, that
// subdirectory will be elided from archive entries. For example, if `dir`
// contains `README.md`, with `elide_path = false` the corresponding entry
// will be `dir/README.md`; with `elide_path = true`, the entry will be
// `README.md`. `elide_path` has no effect if `path` refers to the repository
// root. `elide_path = true` is not supported if `path` refers to a file.
bool elide_path = 7;
// This comment is left unintentionally blank.
bool include_lfs_blobs = 8;
}
// This comment is left unintentionally blank.
message GetArchiveResponse {
// This comment is left unintentionally blank.
bytes data = 1;
}
// This comment is left unintentionally blank.
message HasLocalBranchesRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
}
// This comment is left unintentionally blank.
message HasLocalBranchesResponse {
// This comment is left unintentionally blank.
bool value = 1;
}
// This comment is left unintentionally blank.
message FetchSourceBranchRequest {
// Repository into which the reference shall be fetched. After a successful
// call, it should contain the target reference which points to the same
// commit as the source repository's source branch.
Repository repository = 1 [(target_repository)=true];
// Repository from which to fetch the source branch from.
Repository source_repository = 2;
// Name of the branch in the source repository which should be fetched.
bytes source_branch = 3;
// Name of the reference which shall be newly created in the target
// repository.
bytes target_ref = 4;
}
// This comment is left unintentionally blank.
message FetchSourceBranchResponse {
// True if the source branch was successfully fetched into the target
// repository, false if resolving the remote reference or fetching it failed.
bool result = 1;
}
// FsckRequest is a request for the Fsck RPC.
message FsckRequest {
// Repository is the repository that shall be checked for consistency.
Repository repository = 1 [(target_repository)=true];
}
// FsckResponse is a response for the Fsck RPC.
message FsckResponse {
// Error contains both stdout and stderr of git-fsck(1) in case it returned an error.
bytes error = 1;
}
// This comment is left unintentionally blank.
message WriteRefRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
// This comment is left unintentionally blank.
bytes ref = 2;
// This comment is left unintentionally blank.
bytes revision = 3;
// This comment is left unintentionally blank.
bytes old_revision = 4;
// This comment is left unintentionally blank.
bool force = 5;
// This used to be a boolean indicating whether or not to shell out or use
// the rugged implementation
reserved 6;
}
// This comment is left unintentionally blank.
message WriteRefResponse {
// This used to contain an error message. Since we're shelling out
// all exceptions are wrapped in GRPC errors.
reserved 1;
}
// This comment is left unintentionally blank.
message FindMergeBaseRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
// We use a repeated field because rugged supports finding a base
// for more than 2 revisions, so if we needed that in the future we don't
// need to change the protocol.
repeated bytes revisions = 2;
}
// This comment is left unintentionally blank.
message FindMergeBaseResponse {
// This comment is left unintentionally blank.
string base = 1;
}
// CreateForkRequest is a request for the CreateFork RPC.
message CreateForkRequest {
// Repository is the repository that shall be created.
Repository repository = 1 [(target_repository)=true];
// SourceRepository is the repository that shall be forked.
//
// Note that the source repository is intentionally not marked as an additional repository that is
// to be rewritten by Praefect. This is because Gitaly will use the source repository to perform a
// gRPC call, which must use the original non-rewritten repository.
Repository source_repository = 2;
}
// CreateForkResponse is a response for the CreateFork RPC.
message CreateForkResponse {
}
// This comment is left unintentionally blank.
message CreateRepositoryFromURLRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
// This comment is left unintentionally blank.
string url = 2;
// http_authorization_header is the HTTP header which can be added to
// the request in order to authenticate against the repository.
string http_authorization_header = 4;
// Mirror defines whether to clone with `--mirror` flag or `--bare`. The default
// value `false` will cause us to use `--bare`, which results in a clone that
// contains only branches (`refs/heads/`) and tags (`refs/tags/`) of the remote
// repository. If set to `true`, create a complete mirror-clone which maps all
// remote references into the local repository.
bool mirror = 5;
// ResolvedAddress holds the resolved IP address of the remote_url. This is
// used to avoid DNS rebinding by mapping the url to the resolved address.
// Only IPv4 dotted decimal ("192.0.2.1"), IPv6 ("2001:db8::68"), or IPv4-mapped
// IPv6 ("::ffff:192.0.2.1") forms are supported.
// Works with HTTP/HTTPS/Git/SSH protocols.
// Optional.
string resolved_address = 6;
// HttpHost has been removed in favor of ResolvedAddress.
reserved 3;
reserved "http_host";
}
// This comment is left unintentionally blank.
message CreateRepositoryFromURLResponse {
}
// This comment is left unintentionally blank.
message CreateBundleRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
}
// This comment is left unintentionally blank.
message CreateBundleResponse {
// This comment is left unintentionally blank.
bytes data = 1;
}
// This comment is left unintentionally blank.
message CreateBundleFromRefListRequest {
// Repository is the repository that the bundle is created from.
Repository repository = 1 [(target_repository)=true];
// Patterns contains all patterns which shall be bundled. Patterns should be
// in the format accepted by git-rev-list(1). Patterns which don't match any
// reference will be silently ignored.
repeated bytes patterns = 2;
}
// This comment is left unintentionally blank.
message CreateBundleFromRefListResponse {
// This comment is left unintentionally blank.
bytes data = 1;
}
// GetConfigRequest is a request for the GetConfig RPC.
message GetConfigRequest {
// Repository is the repository from which the configuration should be read
// from.
Repository repository = 1 [(target_repository)=true];
}
// GetConfigResponse is a response for the GetConfig RPC.
message GetConfigResponse {
// Data contains contents of the gitconfig.
bytes data = 1;
}
// This comment is left unintentionally blank.
message RestoreCustomHooksRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
// This comment is left unintentionally blank.
bytes data = 2;
}
// This comment is left unintentionally blank.
message SetCustomHooksRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
// This comment is left unintentionally blank.
bytes data = 2;
}
// This comment is left unintentionally blank.
message RestoreCustomHooksResponse {
}
// This comment is left unintentionally blank.
message SetCustomHooksResponse {
}
// This comment is left unintentionally blank.
message BackupCustomHooksRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
}
// This comment is left unintentionally blank.
message GetCustomHooksRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
}
// This comment is left unintentionally blank.
message BackupCustomHooksResponse {
// This comment is left unintentionally blank.
bytes data = 1;
}
// This comment is left unintentionally blank.
message GetCustomHooksResponse {
// This comment is left unintentionally blank.
bytes data = 1;
}
// This comment is left unintentionally blank.
message CreateRepositoryFromBundleRequest {
// Only available on the first message
Repository repository = 1 [(target_repository)=true];
// This comment is left unintentionally blank.
bytes data = 2;
}
// This comment is left unintentionally blank.
message CreateRepositoryFromBundleResponse {
}
// FindLicenseRequest asks to detect the license for the given repository.
message FindLicenseRequest {
// Repository is repository where to detect the license.
Repository repository = 1 [(target_repository)=true];
}
// FindLicenseResponse contains the result of detecting the license used in the repository.
// If there is nothing that looks like a license file, the empty response is returned.
// If there is something that looks like a license, but that license can't be found in the
// list of known licenses, we return a pre-defined response with "Other" license.
message FindLicenseResponse {
// LicenseShortName is the license unique SPDX identifier or a short name.
// It is always returned lower-cased.
string license_short_name = 1;
// LicenseName is the license full name.
string license_name = 2;
// LicenseUrl is a URL to the license on the internet.
string license_url = 3;
// LicensePath is a path to the file that contains the text of the license.
// When a LICENSE file is found containing the filename of another file,
// that filename will be returned, for example "mit.txt".
string license_path = 4;
// LicenseNickname is a shortened full name for better readability.
// It exists only for a small set of licenses and an empty value is returned in most cases.
string license_nickname = 5;
}
// This comment is left unintentionally blank.
message GetInfoAttributesRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
}
// This comment is left unintentionally blank.
message GetInfoAttributesResponse {
// This comment is left unintentionally blank.
bytes attributes = 1;
}
// This comment is left unintentionally blank.
message CalculateChecksumRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
}
// This comment is left unintentionally blank.
message CalculateChecksumResponse {
// This comment is left unintentionally blank.
string checksum = 1;
}
// This comment is left unintentionally blank.
message GetSnapshotRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
}
// This comment is left unintentionally blank.
message GetSnapshotResponse {
// This comment is left unintentionally blank.
bytes data = 1;
}
// This comment is left unintentionally blank.
message CreateRepositoryFromSnapshotRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
// This comment is left unintentionally blank.
string http_url = 2;
// This comment is left unintentionally blank.
string http_auth = 3;
// ResolvedAddress holds the resolved IP address of the remote_url. This is
// used to avoid DNS rebinding by mapping the url to the resolved address.
// Only IPv4 dotted decimal ("192.0.2.1"), IPv6 ("2001:db8::68"), or IPv4-mapped
// IPv6 ("::ffff:192.0.2.1") forms are supported.
// Works with HTTP/HTTPS protocols.
// Optional.
string resolved_address = 5;
// HttpHost has been removed in favor of ResolvedAddress.
reserved 4;
reserved "http_host";
}
// This comment is left unintentionally blank.
message CreateRepositoryFromSnapshotResponse {
}
// This comment is left unintentionally blank.
message GetRawChangesRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
// This comment is left unintentionally blank.
string from_revision = 2;
// This comment is left unintentionally blank.
string to_revision = 3;
}
// This comment is left unintentionally blank.
message GetRawChangesResponse {
// This comment is left unintentionally blank.
message RawChange {
// This comment is left unintentionally blank.
enum Operation {
// This comment is left unintentionally blank.
UNKNOWN = 0; // protolint:disable:this ENUM_FIELD_NAMES_PREFIX ENUM_FIELD_NAMES_ZERO_VALUE_END_WITH
// This comment is left unintentionally blank.
ADDED = 1; // protolint:disable:this ENUM_FIELD_NAMES_PREFIX
// This comment is left unintentionally blank.
COPIED = 2; // protolint:disable:this ENUM_FIELD_NAMES_PREFIX
// This comment is left unintentionally blank.
DELETED = 3; // protolint:disable:this ENUM_FIELD_NAMES_PREFIX
// This comment is left unintentionally blank.
MODIFIED = 4; // protolint:disable:this ENUM_FIELD_NAMES_PREFIX
// This comment is left unintentionally blank.
RENAMED = 5; // protolint:disable:this ENUM_FIELD_NAMES_PREFIX
// This comment is left unintentionally blank.
TYPE_CHANGED = 6; // protolint:disable:this ENUM_FIELD_NAMES_PREFIX
}
// This comment is left unintentionally blank.
string blob_id = 1;
// This comment is left unintentionally blank.
int64 size= 2;
// This used to be a string that is now represented by the field 9 as byte array.
reserved 3;
reserved "new_path";
// This used to be a string that is now represented by the field 10 as byte array.
reserved 4;
reserved "old_path";
// This comment is left unintentionally blank.
Operation operation= 5;
// This comment is left unintentionally blank.
string raw_operation = 6;
// This comment is left unintentionally blank.
int32 old_mode = 7;
// This comment is left unintentionally blank.
int32 new_mode = 8;
// the following fields, 9 and 10, will eventually replace 3 and 4
bytes new_path_bytes = 9;
// This comment is left unintentionally blank.
bytes old_path_bytes = 10;
}
// This comment is left unintentionally blank.
repeated RawChange raw_changes = 1;
}
// This comment is left unintentionally blank.
message SearchFilesByNameRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
// This comment is left unintentionally blank.
string query = 2;
// This comment is left unintentionally blank.
bytes ref = 3;
// If `filter` is specified and non-empty, it will be parsed as a regular
// expression and used to filter the result set before it is transmitted. It is
// parsed using Go's `regexp` package, which is closely related to PCRE,
// excluding backreferences, atomic/possesive operators, and some other
// features. It has a maximum length of 1000 bytes.
string filter = 4;
// Limit the number of returned files. Gitaly does not enforce a limit by default.
// Clients should always set a value for this field. limit = 0 means unlimited files.
uint32 limit = 5;
// `offset` says to skip that many files before beginning to return files.
// offset = 0 means starting to return files from beginning.
uint32 offset = 6;
}
// This comment is left unintentionally blank.
message SearchFilesByNameResponse {
// Files contains the paths of files that have been found to match the query.
repeated bytes files = 1;
}
// This comment is left unintentionally blank.
message SearchFilesByContentRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
// This comment is left unintentionally blank.
string query = 2;
// This comment is left unintentionally blank.
bytes ref = 3;
// This comment is left unintentionally blank.
bool chunked_response = 4;
}
// This comment is left unintentionally blank.
message SearchFilesByContentResponse {
// This comment is left unintentionally blank.
repeated bytes matches = 1;
// This comment is left unintentionally blank.
bytes match_data = 2;
// This comment is left unintentionally blank.
bool end_of_match = 3;
}
// Remote represents a git remote repository.
message Remote {
// url is the URL of the remote repository.
string url = 1;
// http_authorization_header is the HTTP header which should be added to
// the request in order to authenticate against the repository.
string http_authorization_header = 3;
// mirror_refmaps contains the refspecs which shall be fetched. Some special
// refspecs are accepted:
//
// - "all_refs" gets translated to "+refs/*:refs/*", which mirrors all
// references of the source repository.
// - "heads" gets translated to "+refs/heads/*:refs/heads/*", which mirrors
// all branches of the source repository.
// - "tags" gets translated to "+refs/tags/*:refs/tags/*", which mirrors all
// tags of the source repository.
//
// If no refspecs are given, this defaults to "all_refs".
repeated string mirror_refmaps = 4;
// ResolvedAddress holds the resolved IP address of the remote_url. This is
// used to avoid DNS rebinding by mapping the url to the resolved address.
// Only IPv4 dotted decimal ("192.0.2.1"), IPv6 ("2001:db8::68"), or IPv4-mapped
// IPv6 ("::ffff:192.0.2.1") forms are supported.
// Works with HTTP/HTTPS/Git/SSH protocols.
// Optional.
string resolved_address = 6;
// Previously, it was possible to specify a remote name. This was quite a
// dangerous field to set though: the name was simply used to create an ad-hoc
// remote which got deleted afterwards again. So unexpectedly, the remote
// isn't retained. And second, if the user chose the name of an existing
// remote, then it would've been deleted after the call. So in effect, the
// field was at best confusing and useless and at worst actively harmful.
reserved 2;
reserved "name";
// HttpHost has been removed in favor of ResolvedAddress.
reserved 5;
reserved "http_host";
}
// This comment is left unintentionally blank.
message GetObjectDirectorySizeRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
}
// This comment is left unintentionally blank.
message GetObjectDirectorySizeResponse {
// Object directory size in kilobytes
int64 size = 1;
}
// This comment is left unintentionally blank.
message RemoveRepositoryRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
}
// This comment is left unintentionally blank.
message RemoveRepositoryResponse {
}
// This comment is left unintentionally blank.
message RenameRepositoryRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
// This comment is left unintentionally blank.
string relative_path = 2;
}
// This comment is left unintentionally blank.
message RenameRepositoryResponse{
}
// This comment is left unintentionally blank.
message ReplicateRepositoryRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
// This comment is left unintentionally blank.
Repository source = 2;
}
// This comment is left unintentionally blank.
message ReplicateRepositoryResponse{
}
// OptimizeRepositoryRequest is a request for the OptimizeRepository RPC.
message OptimizeRepositoryRequest {
// Strategy determines how the repository shall be optimized.
enum Strategy {
// STRATEGY_UNSPECIFIED indicates that the strategy has not been explicitly set by the
// caller. The default will be STRATEGY_HEURISTICAL in that case.
STRATEGY_UNSPECIFIED = 0;
// STRATEGY_HEURISTICAL performs heuristical optimizations in the repository. The server will
// decide on a set of heuristics which parts need optimization and which ones don't to avoid
// performing unnecessary optimization tasks.
STRATEGY_HEURISTICAL = 1;
// STRATEGY_EAGER performs eager optimizations in the repository. The server will optimize all
// data structures regardless of whether they are well-optimized already.
STRATEGY_EAGER = 2;
}
// Repository is the repository that should be optimized.
Repository repository = 1 [(target_repository)=true];
// Strategy is the strategy that determines which parts of the repository shall be optimized.
Strategy strategy = 2;
}
// OptimizeRepositoryResponse is a response for the OptimizeRepository RPC.
message OptimizeRepositoryResponse {
}
// PruneUnreachableObjectsRequest is a request for the PruneUnreachableObjects
// RPC call.
message PruneUnreachableObjectsRequest {
// This comment is left unintentionally blank.
Repository repository = 1 [(target_repository)=true];
}
// PruneUnreachableObjectsResponse is a response for the
// PruneUnreachableObjects RPC call.
message PruneUnreachableObjectsResponse {
}
// SetFullPathRequest is a request for the SetFullPath RPC.
message SetFullPathRequest {
// Repository is the repository whose gitconfig should be written to.
Repository repository = 1 [(target_repository)=true];
// Path is the path that shall be written into the "gitlab.fullpath" config key.
string path = 2;
}
// SetFullPathResponse is a response fqor the SetFullPath RPC.
message SetFullPathResponse {
}
// FullPathRequest is a request for the FullPath RPC.
message FullPathRequest {
// Repository is the repository whose gitconfig should be read.
Repository repository = 1 [(target_repository)=true];
}
// SetFullPathResponse is a response for the SetFullPath RPC.
message FullPathResponse {
// Path read from the "gitlab.fullpath" config key.
string path = 1;
}
// RemoveAll is a request for the RemoveAll RPC.
message RemoveAllRequest {
// StorageName of the storage to have all repositories removed from.
string storage_name = 1;
}
// RemoveAllResponse is a response for the RemoveAll RPC.
message RemoveAllResponse {
}
|