6
6
package com .microsoft .services .sharepoint ;
7
7
8
8
import java .io .UnsupportedEncodingException ;
9
+ import java .net .URL ;
9
10
import java .util .HashMap ;
10
11
import java .util .List ;
11
12
import java .util .Map ;
@@ -597,6 +598,138 @@ public void onSuccess(JSONObject json) {
597
598
return result ;
598
599
}
599
600
601
+
602
+ public ListenableFuture <FileSystemItem > getFileSystemItemById (String uniqueId ) {
603
+ final SettableFuture files = SettableFuture .create ();
604
+ String getFilesUrl = this .getSiteUrl () + String .format ("_api/web/GetFileById(%s)" , new Object []{this .getUrlPath (uniqueId )});
605
+
606
+ try {
607
+ ListenableFuture t = this .executeRequestJson (getFilesUrl , "GET" );
608
+ Futures .addCallback (t , new FutureCallback <JSONObject >() {
609
+ public void onFailure (Throwable t ) {
610
+ files .setException (t );
611
+ }
612
+
613
+
614
+ public void onSuccess (JSONObject json ) {
615
+ try {
616
+ FileSystemItem e = new FileSystemItem ();
617
+ e .loadFromJson (json );
618
+ files .set (e );
619
+ } catch (Throwable var3 ) {
620
+ files .setException (var3 );
621
+ }
622
+
623
+ }
624
+ });
625
+ } catch (Throwable var6 ) {
626
+ files .setException (var6 );
627
+ }
628
+
629
+ return files ;
630
+ }
631
+
632
+
633
+ public ListenableFuture <SPListItem > getFileListItemByUrl (URL url ) {
634
+ if (url == null ) {
635
+ throw new IllegalArgumentException ("url cannot be null" );
636
+ }
637
+ int pos = url .getPath ().lastIndexOf ("/" );
638
+ String path = url .getPath ().substring (0 , pos );
639
+ String name = url .getPath ().substring (pos +1 );
640
+
641
+
642
+ // https://sphereon.sharepoint.com/_api/web/getfolderbyserverrelativeurl('%2FGedeelde%20%20documenten')/files/getbyurl('test%20-%20Copy%20(2).pdf')
643
+ final SettableFuture result = SettableFuture .create ();
644
+ String getUrl = getSiteUrl () + String .format ("_api/web/getfolderbyserverrelativeurl('%s')/files/getbyurl('%s')/listItemAllFields " , urlEncode (path ), urlEncode (name ));
645
+
646
+ try {
647
+ ListenableFuture t = this .executeRequestJson (getUrl , "GET" );
648
+ Futures .addCallback (t , new FutureCallback <JSONObject >() {
649
+ public void onFailure (Throwable t ) {
650
+ result .setException (t );
651
+ }
652
+
653
+
654
+ public void onSuccess (JSONObject json ) {
655
+ try {
656
+ SPListItem e = new SPListItem ();
657
+ e .loadFromJson (json );
658
+ result .set (e );
659
+ } catch (Throwable var3 ) {
660
+ result .setException (var3 );
661
+ }
662
+
663
+ }
664
+ });
665
+ } catch (Throwable var6 ) {
666
+ result .setException (var6 );
667
+ }
668
+ return result ;
669
+ }
670
+
671
+
672
+
673
+ public ListenableFuture <byte []> getFileById (String uniqueId ) {
674
+ if (isNotEmpty (uniqueId )) {
675
+ String getFileUrl = this .getSiteUrl () + String .format ("_api/web/GetFileById(%s)/$value" , new Object []{this .getUrlPath (uniqueId )});
676
+ return this .executeRequest (getFileUrl , "GET" );
677
+ } else {
678
+ throw new IllegalArgumentException ("Path cannot be null or empty" );
679
+ }
680
+ }
681
+
682
+
683
+ public ListenableFuture <Void > checkOutFileById (String uniqueId ) {
684
+ final SettableFuture result = SettableFuture .create ();
685
+ if (isNotEmpty (uniqueId )) {
686
+ String checkoutFileUrl = this .getSiteUrl () + String .format ("_api/web/GetFileById(%s)/checkout()" , this .getUrlPath (uniqueId ));
687
+ ListenableFuture request = this .executeRequestJsonWithDigest (checkoutFileUrl , "POST" , new HashMap (), null );
688
+ Futures .addCallback (request , new FutureCallback <JSONObject >() {
689
+ public void onFailure (Throwable t ) {
690
+ result .setException (t );
691
+ }
692
+
693
+
694
+ public void onSuccess (JSONObject json ) {
695
+ result .set (null );
696
+ }
697
+ });
698
+ } else {
699
+ throw new IllegalArgumentException ("File id cannot be null or empty" );
700
+ }
701
+ return result ;
702
+ }
703
+
704
+
705
+ public ListenableFuture <Void > checkInFileById (String uniqueId , CheckinType checkinType , String comment ) {
706
+ final SettableFuture result = SettableFuture .create ();
707
+ if (isNotEmpty (uniqueId )) {
708
+ String checkoutFileUrl = this .getSiteUrl () + String .format ("_api/web/GetFileById(%s)/checkin(comment='%s',checkintype=%d)" ,
709
+ this .getUrlPath (uniqueId ), urlEncode (comment ), checkinType .ordinal ());
710
+ ListenableFuture request = this .executeRequestJsonWithDigest (checkoutFileUrl , "POST" , new HashMap (), null );
711
+ Futures .addCallback (request , new FutureCallback <JSONObject >() {
712
+ public void onFailure (Throwable t ) {
713
+ result .setException (t );
714
+ }
715
+
716
+
717
+ public void onSuccess (JSONObject json ) {
718
+ result .set (null );
719
+ }
720
+ });
721
+ } else {
722
+ throw new IllegalArgumentException ("File id cannot be null or empty" );
723
+ }
724
+ return result ;
725
+ }
726
+
727
+
728
+ private static boolean isNotEmpty (String value ) {
729
+ return value != null && value .length () > 0 ;
730
+ }
731
+
732
+
600
733
/**
601
734
* Returns the URL component for a path
602
735
*/
@@ -613,4 +746,9 @@ private String getUrlPath(String path) {
613
746
}
614
747
return urlPath ;
615
748
}
749
+
750
+
751
+ public enum CheckinType {
752
+ MINOR_CHECKIN , MAJOR_CHECKIN , OVERWRITE_CHECKIN
753
+ }
616
754
}
0 commit comments