Read this in other languages: 한국어, Português,中国.
This repository will not be updated. The repository will be kept available in read-only mode.
BluePic is a photo and image sharing sample application that allows you to take photos and share them with other BluePic users. This sample application demonstrates how to leverage, in a mobile iOS 10 application, a Kitura-based server application written in Swift.
BluePic takes advantage of Swift in a typical iOS client setting, but also on the server-side using the new Swift web framework and HTTP Server, Kitura. An interesting feature of Bluepic, is the way it handles photos on the server. When an image is posted, it's data is recorded in Cloudant and the image binary is stored in Object Storage. From there, a Cloud Functions sequence is invoked causing weather data like temperature and current condition (e.g. sunny, cloudy, etc.) to be calculated based on the location an image was uploaded from. Watson Visual Recognition is also used in the Cloud Functions sequence to analyze the image and extract text tags based on the content of the image. A push notification is finally sent to the user, informing them their image has been processed and now includes weather and tag data.
The back-end components (i.e. Kitura-based server and Cloud Functions actions) and the iOS component of the BluePic app work with specific versions of the Swift binaries, see following table:
Component | Swift Version |
---|---|
Kitura-based server | 4.0.2 |
Cloud Functions actions | 3.1.1 |
iOS App | Xcode 9.1 default (Swift 4.0.2 ) |
You can download the development snapshots of the Swift binaries by following this link. Compatibility with other Swift versions is not guaranteed.
Optionally, if you'd like to run the BluePic Kitura-based server using Xcode, you should use Xcode 9.1 and configure it to use the default toolchain. For details on how to set up Xcode, see Building within Xcode. Please note that any other versions of Xcode are not guaranteed to work with the back-end code.
The following system level dependencies should be installed on macOS using Homebrew:
brew install curl
If you would like to use Linux as your development platform for the Kitura server component, see Compile and test your code on macOS and Linux for details on how to leverage Docker on your macOS system.
Execute the following command to clone the Git repository:
git clone https://github.com/IBM/BluePic.git
If you'd like to, you can spend a few minutes to get familiar with the folder structure of the repo as described in the About page.
Clicking on the button below deploys the BluePic application to IBM Cloud. The manifest.yml
file [included in the repo] is parsed to obtain the name of the application and to determine the Cloud Foundry services that should be instantiated. For further details on the structure of the manifest.yml
file, see the Cloud Foundry documentation. After clicking the button below, you will be able to name your application, keep in mind that your IBM Cloud application name needs to match the name value in your manifest.yml
. Therefore, you may have to change the name value in your manifest.yml
if there is a naming conflict in your IBM Cloud account.
Once deployment to IBM Cloud is completed, you should access the route assigned to your application using the web browser of your choice. You should see the Kitura welcome page!
Note that the IBM Cloud buildpack for Swift is used for the deployment of BluePic to IBM Cloud. This buildpack is currently installed in the following IBM Cloud regions: US South, United Kingdom, and Sydney.
You will need to install the following:
sh ./Cloud-Scripts/Deployment/cloud_foundry.sh
- For information on deploying to Kubernetes please read our docs
To populate your Cloudant database instance with sample data, you need to obtain the following credential values:
username
- The username for your Cloudant instance.password
- The password for your Cloudant instance.projectId
- The project ID for your Object Storage instance.
You can obtain the above credentials by accessing your application's page on IBM Cloud and clicking on the Show Credentials
twisty found on your Cloudant service and Object Storage service instances. Once you have these credentials, navigate to the Cloud-Scripts/cloudantNoSQLDB/
directory in the BluePic repo and execute the populator.sh
script as shown below:
./populator.sh --username=<cloudant username> --password=<cloudant password> --projectId=<object storage projectId>
To populate your Object Storage instance with sample data, you need to obtain the following credential values (region is optional):
userId
- The userId for your Object Storage instance.password
- The password for your Object Storage instance.projectId
- The project ID for your Object Storage instance.region
- Optionally, you can set the region for Object Storage to save your data in, eitherlondon
for London ordallas
for Dallas. If not set, region defaults todallas
.
You can obtain the above credentials by accessing your application's page on IBM Cloud and clicking on the Show Credentials
twisty found on your Object Storage instance. Once you have these credentials, navigate to the ./Cloud-Scripts/Object-Storage/
directory in the BluePic repo and execute the populator.sh
script as shown below:
./populator.sh --userId=<object storage userId> --password=<object storage password> --projectId=<object storage projectId> --region=<object storage region>
You should now update the credentials for each one of the services listed in the BluePic-Server/config/configuration.json
file. This will allow you to run the Kitura-based server locally for development and testing purposes. You will find placeholders in the configuration.json
file (e.g. <username>
, <projectId>
) for each of the credential values that should be provided.
Remember that you can obtain the credentials for each service listed in the configuration.json
file by accessing your application's page on IBM Cloud and clicking on the Show Credentials
twisty found on each of the service instances bound to the BluePic app.
You can take a look at the contents of the configuration.json
file by clicking here.
Go to the BluePic-iOS
directory and open the BluePic workspace with Xcode using open BluePic.xcworkspace
. Let's now update the cloud.plist
in the Xcode project (you can find this file in Configuration
folder of the Xcode project).
-
You should set the
isLocal
value toYES
if you'd like to use a locally running server; if you set the value toNO
, then you will be accessing the server instance running on IBM Cloud. -
To get the
appRouteRemote
value, you should go to your application's page on IBM Cloud. There, you will find aView App
button near the top right. Clicking on it should open up your app in a new tab, the url for this page is yourroute
which maps to theappRouteRemote
key in the plist. Make sure to include thehttp://
protocol in yourappRouteRemote
and to exclude a forward slash at the end of the url. -
Lastly, we need to get the value for
cloudAppRegion
, which can be one of three options currently:
REGION US SOUTH | REGION UK | REGION SYDNEY |
---|---|---|
.ng.bluemix.net |
.eu-gb.bluemix.net |
.au-syd.bluemix.net |
You can find your region in multiple ways. For instance, by just looking at the URL you use to access your application's page (or the IBM Cloud dashboard). Another way is to look at the configuration.json
file you modified earlier. If you look at the credentials under your AppID
service, there is a value called oauthServerUrl
which should contain one of the regions mentioned above. Once you insert your cloudAppRegion
value into the cloud.plist
, your app should be configured.
This section describes the steps to take in order to leverage Facebook authentication with App ID, Push Notifications, and Cloud Functions.
API endpoints in BluePic-Server are currently not protected due to dependency limitations, but they will be as soon as that functionality is available with the Kitura and App ID SDKs
In order to have the app authenticate with Facebook, you must create an application instance on Facebook's website.
-
Go to the
BluePic-iOS
directory and open the BluePic workspace with Xcode usingopen BluePic.xcworkspace
. -
Choose a bundle identifier for your app and update the Xcode project accordingly: Select the project navigator folder icon located in the top left of Xcode; then select the BluePic project at the top of the file structure and then select the BluePic target. Under the identity section, you should see a text field for the bundle identifier. Update this field with a bundle identifier of your choosing. (i.e. com.bluepic)
-
Go to Facebook's Quick Start for iOS page to create an application instance. Type
BluePic
as the name of your new Facebook app and click theCreate New Facebook App ID
button. Choose any Category for the application, and click theCreate App ID
button. -
On the screen that follows, note that you do not need to download the Facebook SDK. The App ID SDK (already included in the iOS project) has all the code needed to support Facebook authentication. In the
Configure your info.plist
section, copy theFacebookAppID
value and insert into theURL Schemes
andFacebookAppID
fields in yourinfo.plist
so that your plist looks similar to the image below. Theinfo.plist
file is found in theConfiguration
folder of the Xcode project.
-
Next, scroll to the bottom of the Facebook quick start page where it says
Supply us with your Bundle Identifier
and enter the app's bundle identifier you chose earlier in step 2. -
That's it for setting up the BluePic application instance on the Facebook Developer website. In the following section, we will link this Facebook application instance to your IBM Cloud App ID service.
- Go to your application's page on IBM Cloud and open your
App ID
service instance:
- On the page that follows, click the
Identity Providers
button on the side and you should see something like this:
- Flip the toggle switch to On for Facebook and click the edit button. Here, enter your Facebook application ID and secret from your Facebook app's page (see Create an application instance on Facebook section for further details).
-
On this page, you will also see a "Redirect URL for Facebook for Developers", copy it because we need it in a minute. On your Facebook Developer app page, navigate to the Facebook login product. That URL is
https://developers.facebook.com/apps/<facebookAppId>/fb-login/
. Here, paste that link into the "Valid OAuth redirect URIs" field and click Save changes. Back on IBM Cloud, you can also click the Save button. -
One more thing that needs to be done for App ID to work properly is that you need add the
tenantId
for App ID into thecloud.plist
for BluePic-iOS. We get thetenantId
by viewing our credentials for the App ID service in IBM Cloud, all your services should be under the "Connections" tab of your app on IBM Cloud. Once there, click on the "View Credentials" or "Show Credentials" button for your App ID service and you should see thetenantId
pop up, among other values. Now, simply put that value into yourcloud.plist
corresponding with theappIdTenantId
key. -
Facebook authentication with IBM Cloud App ID is now completely set up!
To utilize push notification capabilities on IBM Cloud, you need to configure a notification provider. For BluePic, you should configure credentials for the Apple Push Notification Service (APNS). As part of this configuration step, you will need to use the bundle identifier you chose in the Create an application instance on Facebook section.
Luckily, IBM Cloud has instructions to walk you through the process of configuring APNS with your IBM Cloud Push service. Please note that you'd need to upload a .p12
certificate to IBM Cloud and enter the password for it, as described in the IBM Cloud instructions.
Additionally, the appGuid
for your Push service acts independently of the BluePic app so we will need to add that value to our cloud.plist
. Additionally, we need the clientSecret
value for the push service. We get both, the appGuid
and clientSecret
by viewing our credentials for the Push service in IBM Cloud, all your services should be under the "Connections" of your app. Once there, click on the "View Credentials" or "Show Credentials" button for your Push Notifications service and you should see the appGuid
pop up, among other values. Now, simply put that value into your cloud.plist
corresponding with the pushAppGUID
key. Next, you should see the clientSecret
value which you can use to populate the pushClientSecret
field in the cloud.plist
. This should ensure your device gets registered properly with the Push service.
Lastly, remember that push notifications will only show up on a physical iOS device. To ensure your app can run on a device and receive push notifications, make sure you followed the IBM Cloud instructions. At this point, open the BluePic.xcworkspace
in Xcode and navigate to the Capabilities
tab for the BluePic app target. Here, flip the switch for push notifications, like so:
Now, make sure your app is using the push enabled provisioning profile you created earlier in the IBM Cloud instructions. Then at this point, you can run the app on your device and be able to receive push notifications.
BluePic leverages Cloud Functions actions written in Swift for accessing the Watson Visual Recognition and Weather APIs. For instructions on how to configure Cloud Functions, see the following page. You will find there details on configuration and invocation of Cloud Functions commands.
After configuring the optional features, you should redeploy the BluePic app to IBM Cloud.
You can use the IBM Cloud CLI to do that, download it here. Once you have logged in to IBM Cloud using the command line, you can execute bx app push
from the root folder of this repo on your local file system. This will push the application code and configuration to IBM Cloud.
If you are using a Kubernetes Cluser and have already gone through the initial deployment process here
# Using defaults parameters from earlier setup instructions:
bx dev deploy --target=container --deploy-image-target=bluepic --ibm-cluster=BluePic-Cluster
If you don't have the iOS project already open, go to the BluePic-iOS
directory and open the BluePic workspace using open BluePic.xcworkspace
.
You can now build and run the iOS app in the simulator using the Xcode capabilities you are used to!
For IBM developers, see our Wiki for details on the steps to follow.
The easiest method for running the iOS app on a physical device is to change the bundle ID for BluePic to a unique value (if you haven't already). Afterwards, check the box for Automatically manage signing
located under the General
tab for the BluePic app target (in Xcode). After checking that box, you need to ensure the team for your personal Apple Developer account is selected from the dropdown. Assuming you have the Apple Developer Program team role of Agent
or Admin
, either a provisioning profile will be created for the BluePic app or a wildcard profile will be used (if exists), allowing you to run on a device.
Alternatively, you can manually configure code signing of the app by using a wildcard App ID to run the app on your device. If already created, simply select it in the provisioning profile dropdown in the Signing (Debug)
section. If not created, you can create one through the Apple Developer Portal. This link should be helpful in providing more info about wildcard App IDs.
You can build the BluePic-Server by going to the BluePic-Server
directory of the cloned repository and running swift build
. To start the Kitura-based server for the BluePic app on your local system, go to the BluePic-Server
directory of the cloned repository and run .build/debug/BluePicServer
. You should also update the cloud.plist
file in the Xcode project in order to have the iOS app connect to this local server. See the Update configuration for iOS app section for details.
BluePic was designed with a lot of useful features. To see further information and details on how to use the iOS app, check out our walkthrough on Using BluePic page.
To learn more about BluePic's folder structure, its architecture, and the Swift packages it depends on, see the About page.
- Transition to Server-Side Swift with BluePic
- Introducing Kitura 2.0
- Build a server-side Swift application using the Kitura command-line interface
This code pattern is licensed under the Apache Software License, Version 2. Separate third party code objects invoked within this code pattern are licensed by their respective providers pursuant to their own separate licenses. Contributions are subject to the Developer Certificate of Origin, Version 1.1 (DCO) and the Apache Software License, Version 2.
Apache Software License (ASL) FAQ
For a list of demo images used, view the Image Sources file.