SocialHub Save

SocialHub is multi social media (SNS) client for Java and Objective-C (with J2ObjC)

Project README

SocialHub Build Status

SocialHub is a multi social network service's API library written in Java, and can be complied to Objective-C by J2ObjC. and we can also use it with Kotlin and Swift too.

List of Social Media (SNS)

Available

Most of all libraries are modified (remove complex dependency and unused functions) for compilation to Objective-C with J2ObjC.

Future Works

Difficult to Handle

Detail Documents

See Detail Documents

Code Sample

Authorization

Code sample to authorize account and get account information.

/* JAVA */
// 1. Make Authorized Account Object

// For Twitter
TwitterAuth auth = SocialHub.getTwitterAuth(CONSUMER_KEY, CONSUMER_SECRET);
Account account = auth.getAccountWithAccessToken(ACCESS_TOKEN, ACCESS_SECRET);

// For Mastodon
MastodonAuth auth = SocialHub.getMastodonAuth(HOST);
Account account = auth.getAccountWithAccessToken(ACCESS_TOKEN);


// 2. Request To SNS (all sns same interface)
User user = account.action().getUserMe();
System.out.println(user.getName());

Group Timeline

Code sample to get unified timeline comments from account group (two or more accounts).

/* JAVA */
// 1. Make Account Group
AccountGroup accounts = new AccountGroup();
accounts.addAccount((Account)twitterAccount);
accounts.addAccount((Account)mastodonAccount);

// 2. Get Home New Timeline
CommentGroup comments = accounts.action().getHomeTimeLine();

// 3. Get Past Timeline
CommentGroup pasts = comments.action().getPastComments();

if you want more samples, please see detail documents and test code.

J2ObjC

J2ObjC is project aim to compile Java code to Objective-C code. SocialHub is adapted with J2ObjC compilation So, you can use SocialHub as an Objective-C library (also use in Swift) in MacOS or iOS application development. Travis CI compiles SocialHub and make SocialHub CocoaPods Repository. It's an easy way to use this repository rather than compiling yourself.

Compile to Objective-C

To compile SocialHub to Objective-C framework, do next instructions. It's only executable on MacOS environment (This file is script of followings.)

  1. Download latest J2ObjC builds and unzip

    See: https://github.com/google/j2objc/releases

  2. Set J2ObjC path in local.properties file

    j2objc.home=${PATH}
    
  3. Build Objective-C libraries

    Build commands is written in j2objc.sh file. so execute it or do next instructions. j2objc.gradle is gradle settings to make Objective-C library.

    ./gradlew -b j2objc.gradle clean :j2objcAssemble -x test
    
  4. Add dependency in your project

    After J2ObjC compile, cocoapod.spec will be created in ./build/j2objcOutputs folder, so you write SocialHub dependency in your CocoaPods project's Podfile like

    def j2objc_socialhub
        pod 'j2objc-SocialHub-debug', :configuration => ['Debug'], :path => '../shared/build/j2objcOutputs'
        pod 'j2objc-SocialHub-release', :configuration => ['Release'], :path => '../shared/build/j2objcOutputs'
    end
    
        ...
        NOTE: this line must be added manually for the relevant targets:
        j2objc_socialhub
        ...
    
  5. Use SocialHub in Swift

    Make bridging header, and write as following.

    #include "SocialHubHeader.h"
    

Application

  • iOS: SocialHub
    • This library is converted to Objective-C and used in Swift.

Author

Twitter: @uakihir0
GitHub: uakihir0

License

MIT

Open Source Agenda is not affiliated with "SocialHub" Project. README Source: uakihir0/SocialHub
Stars
52
Open Issues
0
Last Commit
3 months ago
Repository
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating